/* ==========================================================================
   TASWIK — Digital Marketing Agency Landing
   Design tokens
   ========================================================================== */

:root{
  --bg:          #030303;
  --bg-alt:      #0A0A0A;
  --bg-elevated: #171717;
  --fg:          #F4F2ED;
  --fg-dim:      #A49E95;
  --fg-faint:    #777168;
  --border:      rgba(245,243,238,0.10);
  --border-strong: rgba(245,243,238,0.20);
  /* accent: violet. Change the three channel triplets to re-theme the whole page. */
  --accent-rgb:       182, 136, 254;
  --accent-dim-rgb:   137, 98, 197;
  --accent-light-rgb: 218, 204, 247;
  --accent:       rgb(var(--accent-rgb));
  --accent-dim:   rgb(var(--accent-dim-rgb));
  --accent-light: rgb(var(--accent-light-rgb));
  --accent-soft:  rgba(var(--accent-dim-rgb), 0.12);
  --ink:          #100C1A;   /* near-black used on light surfaces */

  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --container: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(72px, 11vw, 160px);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll{ overflow: hidden; height: 100%; }

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul{ margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4,p{ margin: 0; }

::selection{ background: var(--accent); color: #101010; }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section{ padding-block: var(--section-y); position: relative; }
.section-anchor{ position:absolute; top:0; left:0; width:1px; height:1px; pointer-events:none; }
.section--alt{ background: var(--bg-alt); }
.section-inner{ position: relative; z-index: 2; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.eyebrow::before{
  content: '';
  width: 22px;
  height: 1px;
  background: var(--accent);
}

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-head h2{ max-width: 640px; }
.section-head__desc{
  max-width: 380px;
  color: var(--fg-dim);
  font-size: 1rem;
}

h2.h-section{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3.375rem);
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin-top: 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: 0.01em;
  transition: transform 0.35s var(--ease), background 0.25s ease, color 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn svg{ width: 16px; height: 16px; transition: transform 0.35s var(--ease); }
.btn:hover svg{ transform: translate(3px,-3px); }
.btn:active{ transform: scale(0.97); }

.btn--primary{ background: var(--fg); color: #0b0b0a; }
.btn--primary:hover{ background: var(--accent); }

.btn--ghost{
  border: 1px solid var(--border-strong);
  color: var(--fg);
}
.btn--ghost:hover{ border-color: var(--accent); color: var(--accent); }

.btn--block{ width: 100%; justify-content: center; }

/* ---------------------------------- Loader --------------------------------- */

#loader{
  position: fixed;
  inset: 0;
  z-index: 999;
  background: #000;
  overflow: hidden;
  transition: opacity 0.7s ease;
}
#loader.is-leaving{ opacity: 0; pointer-events: none; }
#loader.is-leaving .intro-video{ filter: blur(8px); }
#loader .intro-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
  transition: filter 0.7s ease;
}
@media (max-aspect-ratio: 1/1){
  #loader .intro-video{ transform: scale(1.4); }
}
#loader .loader-count{
  position: absolute;
  left: 50%;
  bottom: clamp(30px, 7vh, 64px);
  transform: translateX(-50%);
  display: flex;
  align-items: flex-start;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  line-height: 1;
  color: var(--fg-faint);
}
#loader .loader-count sup{
  font-size: 0.75em;
  margin-left: 2px;
  color: var(--accent);
}
#loader .loader-bar{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: rgba(245,243,238,0.06);
}
#loader .loader-bar-fill{
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: var(--accent);
}

/* ------------------------------- Background ornaments ------------------------------- */

.ornament{ position: absolute; pointer-events: none; z-index: 0; opacity: 0.5; }
.ornament svg{ display:block; width:100%; height:100%; }
.noise-overlay{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------------------------------- Cursor --------------------------------- */
/* A four-point star (the ornament from the logo) that follows the pointer
   exactly, with a soft ring trailing behind it. Enabled from JS only for
   fine pointers, so touch devices and reduced-motion users keep the native one. */

.cursor:not(.is-active){ display: none; }
.cursor{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: visible;
  background: transparent;
  pointer-events: none;
  z-index: 2147483000; /* fallback for browsers without the popover top layer */
  opacity: 0;
  transition: opacity .25s ease;
}
.cursor.is-visible{ opacity: 1; }
.cursor.is-native{ opacity: 0; }
.cursor-star,
.cursor-ring{
  position: absolute;
  left: 0;
  top: 0;
  will-change: transform;
}
.cursor-star svg{
  display: block;
  width: 22px;
  height: 22px;
  margin: -11px 0 0 -11px;
  fill: var(--fg);
  filter: drop-shadow(0 0 5px rgba(var(--accent-rgb),0.45));
  transition: transform .4s var(--ease), fill .25s ease;
}
.cursor-ring span{
  display: block;
  width: 36px;
  height: 36px;
  margin: -18px 0 0 -18px;
  border: 1px solid rgba(244,242,237,0.42);
  border-radius: 50%;
  transition: transform .45s var(--ease), background .3s ease, border-color .3s ease;
}

.cursor.is-hover .cursor-star svg{ transform: rotate(45deg) scale(1.2); fill: var(--accent); }
.cursor.is-hover .cursor-ring span{
  transform: scale(1.75);
  border-color: rgba(var(--accent-rgb),0.8);
  background: rgba(var(--accent-rgb),0.1);
}
.cursor.is-down .cursor-star svg{ transform: scale(.7); }
.cursor.is-down .cursor-ring span{ transform: scale(.72); }
.cursor.is-hover.is-down .cursor-star svg{ transform: rotate(45deg) scale(.9); }
.cursor.is-hover.is-down .cursor-ring span{ transform: scale(1.45); }

/* white buttons: switch to dark so the pointer never disappears */
.cursor.is-on-light .cursor-star svg{ fill: var(--ink); filter: none; }
.cursor.is-on-light .cursor-ring span{ border-color: rgba(16,12,26,0.65); background: rgba(16,12,26,0.06); }

@media (pointer: fine) and (hover: hover){
  html.has-cursor,
  html.has-cursor *:not(input):not(textarea):not(select):not(option){ cursor: none !important; }
}

/* ---------------------------------- Header --------------------------------- */

.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 30px var(--gutter) 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, border-color 0.4s ease, padding 0.4s ease;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled{
  background: rgba(3,3,3,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
  padding-block: 14px;
}

.brand{ display: flex; align-items: center; gap: 12px; }
.brand-mark{
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  flex-shrink: 0;
}
.brand-mark img{ width: 100%; height: 100%; object-fit: cover; }
.brand-word{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  line-height: 1;
}
.brand-word small{
  display: block;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-top: 4px;
}

.main-nav{ display: flex; align-items: center; gap: clamp(24px, 2.6vw, 42px); }
.main-nav a{
  font-size: 0.9rem;
  color: var(--fg-dim);
  position: relative;
  padding-block: 4px;
  transition: color 0.25s ease;
}
.main-nav a::after{
  content:'';
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--accent);
  transition: right 0.3s var(--ease);
}
.main-nav a:hover{ color: var(--fg); }
.main-nav a:hover::after{ right: 0; }

.header-cta{ display: flex; align-items: center; gap: 18px; }
.header-cta .btn{
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0.9rem;
  color: #F4F2ED;
}
.header-cta::before{
  content:'';
  width: 86px;
  height: 1px;
  background: var(--accent-dim);
}
.header-cta .btn::after{
  content:'';
  width: 22px;
  height: 10px;
  display:inline-block;
  margin-left: 12px;
  /* arrow colour below is hard-coded (data URI): keep it equal to --accent */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22 10' fill='none' stroke='%23B688FE' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 5h19.5M16.5 1.2 20.5 5l-4 3.8'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform .3s var(--ease);
}
.header-cta .btn:hover{ color:var(--accent); }
.header-cta .btn:hover::after{ transform: translateX(4px); }

.nav-toggle{
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 8px;
}
.nav-toggle span{
  display: block;
  width: 16px; height: 1px;
  background: var(--fg);
  position: relative;
  transition: background 0.2s ease;
}
.nav-toggle span::before, .nav-toggle span::after{
  content: '';
  position: absolute;
  left: 0; width: 16px; height: 1px;
  background: var(--fg);
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav-toggle span::before{ top: -5px; }
.nav-toggle span::after{ top: 5px; }
.nav-toggle.is-active span{ background: transparent; }
.nav-toggle.is-active span::before{ top: 0; transform: rotate(45deg); }
.nav-toggle.is-active span::after{ top: 0; transform: rotate(-45deg); }

/* ---------------------------------- Hero --------------------------------- */

.hero{
  position: relative;
  min-height: 100svh;
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--accent-dim-rgb),0.13), transparent 26%),
    radial-gradient(circle at 52% 78%, rgba(var(--accent-rgb),0.08), transparent 26%),
    linear-gradient(180deg, #030303 0%, #050505 62%, #0A0A0A 100%);
  padding-top: clamp(108px, 12vh, 150px);
  padding-bottom: 120px;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,3,3,0.1), rgba(3,3,3,0.45)),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.018) 0 1px, transparent 1px 90px);
  opacity: 0.45;
  z-index: 0;
}
.hero::after{
  content:'';
  position:absolute;
  inset:auto 0 0 0;
  height:22%;
  background:
    linear-gradient(transparent, rgba(3,3,3,0.9)),
    radial-gradient(ellipse at 50% 100%, rgba(var(--accent-rgb),0.16), transparent 55%);
  z-index:2;
  pointer-events:none;
}
.hero-container{
  position: relative;
  z-index: 5;
  width: 100%;
  transform: translateX(-28px);
}
.hero-copy{
  max-width: min(42vw, 620px);
  position: relative;
}
.hero-eyebrow{
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
  font-family: var(--font-display);
  font-size: clamp(0.75rem, 1vw, 1rem);
  letter-spacing: 0.22em;
  color: var(--fg-dim);
}

.hero-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.6rem, 5.65vw, 6.4rem);
  line-height: 0.93;
  letter-spacing: 0;
  color: #F4F2ED;
  text-transform: uppercase;
  text-shadow: 0 10px 26px rgba(0,0,0,0.52), 0 0 1px rgba(255,255,255,0.42);
  max-width: 9.7ch;
}
.hero-title .line{ overflow: hidden; display: block; }
.hero-title .line > span{ display: inline-block; will-change: transform; }
.hero-title em{
  font-style: normal;
  color: #777168;
  text-shadow: 0 9px 22px rgba(0,0,0,0.7);
}

.hero-sub{
  margin-top: 34px;
  max-width: 46ch;
  font-size: clamp(1rem, 1.1vw, 1.18rem);
  line-height: 1.55;
  color: #F4F2ED;
  opacity: 0.9;
}

.hero-actions{
  margin-top: 44px;
  display: flex;
  align-items: center;
}
.hero-request-btn{
  min-width: 242px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 0 32px;
  color: #F4F2ED;
  background: rgba(8,8,8,0.68);
  border: 1px solid var(--accent-dim);
  border-radius: 100px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), 0 16px 36px rgba(0,0,0,0.34);
  font-family: var(--font-display);
  font-size: 0.95rem;
  transition: border-color .25s ease, color .25s ease, transform .35s var(--ease), box-shadow .35s var(--ease);
  cursor: pointer;
}
.hero-request-btn:hover{
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 18px 44px rgba(var(--accent-dim-rgb),0.2);
}
.hero-request-btn svg{ width: 24px; height: 24px; }

.hero-mark{
  position:absolute;
  right: 10.6%;
  top: 10%;
  width: min(43vw, 670px);
  aspect-ratio: 1;
  z-index: 2;
  opacity: .5;
  /* soft-focus backdrop: the blur keeps the artwork from competing with the headline */
  filter: grayscale(1) contrast(1.1) brightness(.72) blur(7px) drop-shadow(0 20px 46px rgba(0,0,0,.76));
}
.hero-mark::before{
  content:'';
  position:absolute;
  inset:-10%;
  border: 1px solid rgba(var(--accent-dim-rgb),0.48);
  border-radius: 50%;
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 18% 100%);
}
.hero-mark-emblem{
  width:100%;
  height:100%;
  object-fit: cover;
  border-radius: 50%;
  opacity:.72;
  mix-blend-mode: luminosity;
  animation: emblemSpin 170s linear infinite;
}
@keyframes emblemSpin{ to{ transform: rotate(360deg); } }
.hero-mark-word{
  position:absolute;
  left: 50%;
  top: 53%;
  width: 82%;
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: .78;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.8));
  z-index: 3;
}
.hero-mascot-wrap{
  position:absolute;
  left: 61%;
  bottom: 9.8%;
  width: min(22vw, 360px);
  height: min(39vw, 510px);
  margin-left: calc(min(22vw, 360px) / -2);
  z-index: 6;
  pointer-events:none;
  will-change: transform;
  animation: heroMascotFloat 6.4s ease-in-out infinite;
}
@keyframes heroMascotFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-11px) rotate(-0.6deg); }
}
.hero-word{
  position:absolute;
  left: 45%;
  bottom: 5%;
  transform: translateX(-50%);
  z-index: 0;
}
.hero-word{
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 6.5vw, 7.1rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #413754;
  text-shadow:
    0 -1px 0 rgba(var(--accent-rgb),0.24),
    0 8px 16px rgba(0,0,0,0.78),
    0 22px 40px rgba(0,0,0,0.8);
  white-space: nowrap;
}
.hero-word::after{
  content:'TASWIK';
  position:absolute;
  inset:0;
  transform: translate(7px, 7px);
  color:#0b0b0b;
  z-index:-1;
}
/* Mascot is hidden for now. Remove the `hero--no-mascot` class from the hero section to restore it. */
.hero--no-mascot .hero-mascot-wrap{ display: none; }
.hero-mascot{
  position:absolute;
  left: 50%;
  bottom: 0;
  width: 96%;
  transform: translateX(-50%) translate3d(var(--mascot-x, 0px), var(--mascot-y, 0px), 0) rotate(var(--mascot-r, 0deg));
  z-index: 2;
  filter: drop-shadow(0 0 22px rgba(var(--accent-rgb),0.18)) drop-shadow(0 22px 34px rgba(0,0,0,0.74));
  transition: transform .16s ease-out;
  will-change: transform;
}
.hero-line{
  position:absolute;
  height:1px;
  background:var(--accent-dim);
  z-index:3;
  opacity:.9;
  animation: lineGlow 4.6s ease-in-out infinite;
}
.hero-line--top{
  right: 17.2%;
  top: 6.4%;
  width: 86px;
}
@keyframes lineGlow{
  0%,100%{ opacity:.75; box-shadow: 0 0 0 rgba(var(--accent-rgb),0); }
  50%{ opacity:1; box-shadow: 0 0 10px rgba(var(--accent-rgb),.6); }
}
.hero-sphere{
  position:absolute;
  z-index:4;
  width: 46px;
  aspect-ratio:1;
  border-radius:50%;
  background: url('assets/hero/decorative-sphere.png?v=2') center / contain no-repeat;
  box-shadow: 0 18px 32px rgba(0,0,0,.45);
  filter: blur(3px);
  animation: slowFloat 9s var(--ease) infinite;
}
.hero-sphere--one{ left: 49%; top: 14.5%; width: 58px; }
.hero-sphere--two{ left: 30%; bottom: 34%; width: 38px; animation-delay:-2s; }
.hero-sphere--three{ right: 12%; bottom: 37%; width: 42px; animation-delay:-4s; }
@keyframes slowFloat{
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%{ transform: translateY(-14px) rotate(14deg); }
}

.hero-bottom{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 26px;
  padding-inline: var(--gutter);
  z-index: 3;
}
.hero-tagline{
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F4F2ED;
  line-height: 1.35;
  position:absolute;
  left: var(--gutter);
  bottom: 104px;
}
.hero-tagline::after,
.hero-side-note::after{
  content:'';
  display:block;
  width:32px;
  height:1px;
  margin-top:18px;
  background:var(--accent-dim);
}
.scroll-hint{
  position:absolute;
  left:50%;
  bottom: -24px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #F4F2ED;
  cursor:pointer;
  transition: color .25s ease;
}
.scroll-hint:hover{ color:var(--accent); }
.scroll-hint svg{ width: 24px; height: 58px; color:var(--accent); animation: scrollBounce 2.1s ease-in-out infinite; }
@keyframes scrollBounce{
  0%,100%{ transform: translateY(0); opacity:1; }
  50%{ transform: translateY(9px); opacity:.55; }
}
.hero-side-note{
  position:absolute;
  right: var(--gutter);
  bottom: 94px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
  color:#F4F2ED;
  font-family:var(--font-display);
  font-size:.66rem;
  letter-spacing:.2em;
  line-height:1.35;
  text-align:center;
}
.hero-side-note a{
  width:44px;
  height:44px;
  border:1px solid var(--accent);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  animation: badgePulse 3.6s ease-in-out infinite;
}
.hero-side-note a:hover{ transform: translateX(3px); box-shadow:0 0 18px rgba(var(--accent-rgb),.24); animation-play-state: paused; }
@keyframes badgePulse{
  0%,100%{ box-shadow: 0 0 0 rgba(var(--accent-rgb),0); }
  50%{ box-shadow: 0 0 14px rgba(var(--accent-rgb),.4); }
}
.hero-side-note svg{ width:20px; height:20px; }
.hero-social{
  position:absolute;
  bottom: 24px;
  display: flex;
  gap: 13px;
}
.hero-social--left{ left: var(--gutter); }
.hero-social--right{ right: var(--gutter); }
.hero-social a{
  width: 38px; height: 38px;
  border: 1px solid var(--accent-dim);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #F4F2ED;
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  line-height:1;
  cursor:pointer;
  transition: border-color .25s ease, color .25s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}
.hero-social a:hover{ border-color: var(--accent); color: var(--accent); transform: translateY(-3px); box-shadow:0 0 16px rgba(var(--accent-rgb),.2); }
.hero-social svg{ width: 14px; height: 14px; }

/* ---------------------------------- Marquee --------------------------------- */

.marquee-wrap{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding-block: 26px;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track{
  display: flex;
  width: max-content;
  animation: marquee 48s linear infinite;
}
.marquee-wrap:hover .marquee-track{ animation-play-state: paused; }
@media (prefers-reduced-motion: reduce){ .marquee-track{ animation: none; } }
.marquee-set{
  display: flex;
  align-items: center;
  gap: 72px;
  padding-right: 72px;
}
.marquee-count{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--accent);
  white-space: nowrap;
}
.marquee-set img{
  height: var(--h, 40px);
  width: auto;
  flex-shrink: 0;
  transition: transform .35s var(--ease);
}
.marquee-set img:hover{ transform: scale(1.08); }
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ---------------------------------- About / Stats --------------------------------- */

.about-grid{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-lead{
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
  line-height: 1.35;
  letter-spacing: -0.005em;
  color: var(--fg);
}
.about-lead .dim{ color: var(--fg-faint); }
.about-copy{
  margin-top: 26px;
  color: var(--fg-dim);
  max-width: 52ch;
}

.stat-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.stat-card{
  background: var(--bg);
  padding: 28px 24px;
}
.stat-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  letter-spacing: -0.02em;
  color: var(--fg);
}
.stat-num .unit{ color: var(--accent); font-size: 0.55em; }
.stat-label{
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--fg-faint);
  line-height: 1.5;
}

/* ---------------------------------- Services --------------------------------- */

.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.service-card{
  background: var(--bg);
  padding: clamp(28px, 3vw, 40px);
  transition: background 0.4s var(--ease);
  position: relative;
}
.service-card:hover{ background: var(--bg-elevated); }
.service-icon{
  width: 40px; height: 40px;
  margin-bottom: 22px;
  color: var(--accent);
}
.service-icon svg{ width: 100%; height: 100%; }
.service-card h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
}
.service-card ul{
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.service-card li{
  font-size: 0.9rem;
  color: var(--fg-dim);
  padding-left: 16px;
  position: relative;
}
.service-card li::before{
  content:'';
  position: absolute;
  left: 0; top: 0.6em;
  width: 5px; height: 1px;
  background: var(--fg-faint);
}

/* ---------------------------------- Cases --------------------------------- */

.liquid-panel{
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.09), rgba(255,255,255,0.018) 42%, rgba(var(--accent-rgb),0.055)),
    rgba(14,14,13,0.72);
  backdrop-filter: blur(18px) saturate(1.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.24);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), 0 30px 100px rgba(0,0,0,0.35);
}
.liquid-panel::before{
  content:'';
  position:absolute;
  inset:-45% auto auto -15%;
  width:48%;
  aspect-ratio:1;
  border-radius:50%;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(var(--accent-rgb),0.08) 38%, transparent 68%);
  filter: blur(12px);
  transform: translate3d(var(--mx, 0px), var(--my, 0px), 0);
  transition: transform .35s var(--ease);
  pointer-events:none;
}
.cases-board{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 520px;
}
.case-logo-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  padding: 1px;
}
.case-logo{
  min-height: 128px;
  padding: 18px;
  background: rgba(7,7,7,0.72);
  color: var(--fg-faint);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1rem, 1.6vw, 1.45rem);
  letter-spacing: 0.04em;
  line-height: 1.08;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: color .25s ease, background .3s var(--ease), transform .3s var(--ease);
}
.case-logo img{
  position: relative;
  max-width: 72%;
  max-height: 64px;
  width: auto;
  height: auto;
  opacity: .55;
  filter: grayscale(1);
  transition: opacity .3s ease, filter .3s ease, transform .35s var(--ease);
}
.case-logo:hover img,
.case-logo.is-active img{ opacity: 1; filter: none; transform: scale(1.06); }
.case-tags:empty{ display: none; }
.case-logo:hover,
.case-logo.is-active{
  color: var(--fg);
  background: radial-gradient(circle at 50% 50%, rgba(var(--accent-rgb),0.13), rgba(7,7,7,0.78) 62%);
}
.case-detail{
  --detail-pad: clamp(30px, 4vw, 56px);
  padding: 0 var(--detail-pad) var(--detail-pad);
  min-height: 756px;
  display: flex;
  flex-direction: column;
  border-left: 1px solid var(--border);
  position: relative;
}
.case-detail-logo{
  position: relative;
  flex: 1 1 auto;
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(30px, 4vw, 52px) 0 24px;
  pointer-events: none;
}
.case-detail-logo::before{
  content: '';
  position: absolute;
  inset: 6% -6% 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,255,255,0.06), rgba(255,255,255,0) 68%);
}
.case-detail-logo img{
  position: relative;
  width: min(100%, 440px);
  max-height: 300px;
  height: auto;
  object-fit: contain;
}
.case-detail-wordmark{
  position: relative;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 0.95;
  letter-spacing: 0.01em;
  text-align: center;
  color: rgba(244,242,237,0.86);
}
.case-detail-wordmark[hidden],
.case-detail-logo img[hidden]{ display: none; }
.case-kicker{
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}
.case-detail h3{
  margin-top: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.case-detail p{
  margin-top: 22px;
  color: var(--fg-dim);
  max-width: 44ch;
}
.case-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-block: 28px 34px;
}
.case-tags span{
  border: 1px solid var(--border-strong);
  border-radius: 100px;
  padding: 8px 12px;
  color: var(--fg-dim);
  font-size: 0.78rem;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------------------------------- Process --------------------------------- */

.process-list{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.process-item{
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
}
.process-num{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--border-strong);
  line-height: 1;
}
@supports (-webkit-text-stroke: 1px red){
  .process-num{ color: transparent; -webkit-text-stroke: 1px var(--border-strong); }
}
.process-item h3{
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1875rem;
}
.process-item p{
  margin-top: 10px;
  font-size: 0.9rem;
  color: var(--fg-dim);
}

/* ---------------------------------- Why us --------------------------------- */

.why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.why-card{
  background: var(--bg);
  padding: 26px 22px;
}
.why-card .why-num{
  font-family: var(--font-display);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.why-card h4{
  margin-top: 14px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.why-card p{
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--fg-dim);
}

/* ---------------------------------- FAQ --------------------------------- */

.faq-list{ max-width: 820px; }
.faq-item{ border-bottom: 1px solid var(--border); }
.faq-q{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 4px;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.0625rem;
}
.faq-q .plus{
  width: 22px; height: 22px;
  position: relative;
  flex-shrink: 0;
}
.faq-q .plus::before, .faq-q .plus::after{
  content:'';
  position: absolute;
  background: var(--fg);
  transition: transform 0.35s var(--ease), opacity .3s ease;
}
.faq-q .plus::before{ left: 0; top: 50%; width: 100%; height: 1px; }
.faq-q .plus::after{ top: 0; left: 50%; width: 1px; height: 100%; }
.faq-item.is-open .plus::after{ transform: rotate(90deg); opacity: 0; }
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-a p{ padding: 0 4px 26px; color: var(--fg-dim); max-width: 68ch; font-size: 0.9375rem; }

/* ---------------------------------- Contact / CTA --------------------------------- */

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
}
.contact-info h2{ max-width: 13ch; }
.contact-copy{ margin-top: 22px; color: var(--fg-dim); max-width: 42ch; }
.contact-points{ margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
.contact-point{ display: flex; gap: 16px; align-items: flex-start; }
.contact-point .icon{
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-point .icon svg{ width: 16px; height: 16px; }
.contact-point .label{ font-size: 0.8125rem; color: var(--fg-faint); }
.contact-point .value{ font-family: var(--font-display); font-size: 1.0625rem; margin-top: 2px; }
.contact-point .value a{ white-space: nowrap; transition: color 0.25s ease; }
.contact-point .value a:hover{ color: var(--accent); }

.form-card{
  border: 1px solid var(--border);
  background: var(--bg-alt);
  padding: clamp(28px, 3vw, 40px);
}
.form-row{ margin-bottom: 20px; }
.form-row label{
  display: block;
  font-size: 0.8125rem;
  color: var(--fg-faint);
  margin-bottom: 10px;
}
.form-row input, .form-row select, .form-row textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-strong);
  padding: 10px 2px;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.25s ease;
}
.form-row textarea{ resize: vertical; min-height: 82px; }
.form-row select{
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 28px;
  text-overflow: ellipsis;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23a49e95' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m1 1.5 5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  background-size: 12px 8px;
}
.form-row select option{ background: var(--bg-elevated); color: var(--fg); }
.form-row input::placeholder{ color: var(--fg-faint); }
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  outline: none;
  border-bottom-color: var(--accent);
}
.form-consent{
  font-size: 0.75rem;
  color: var(--fg-faint);
  margin-top: 18px;
  line-height: 1.6;
}
.hp-field{
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status{
  min-height: 1.25em;
  margin-top: 14px;
  font-size: 0.8125rem;
  color: var(--fg-faint);
}
.form-card.is-loading button[type="submit"]{
  opacity: .72;
  pointer-events: none;
}
.form-card.is-error .form-status{ color: var(--accent-light); }
.form-card.is-sent .form-status{ color: var(--accent); }
.form-success{
  display: none;
  align-items: center;
  gap: 14px;
  padding: 18px 4px;
  color: var(--fg);
  font-size: 0.9375rem;
}
.form-success svg{ width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.form-card.is-sent .form-success{ display: flex; }

/* ---------------------------------- Footer --------------------------------- */

.site-footer{
  border-top: 1px solid var(--border);
  padding-block: 56px 32px;
}
.footer-top{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p{ margin-top: 16px; color: var(--fg-dim); font-size: 0.9375rem; max-width: 32ch; }
.footer-col h5{
  font-family: var(--font-display);
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 18px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 12px; }
.footer-col a{ font-size: 0.9375rem; color: var(--fg-dim); transition: color .2s ease; }
.footer-col a:hover{ color: var(--fg); }
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p{ font-size: 0.8125rem; color: var(--fg-faint); }
.footer-social{ display: flex; gap: 12px; }
.footer-social a{
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--fg-dim);
  transition: border-color .2s ease, color .2s ease;
}
.footer-social a:hover{ border-color: var(--accent); color: var(--accent); }
.footer-social svg{ width: 13px; height: 13px; }

/* ---------------------------------- Reveal utility --------------------------------- */
.reveal{ opacity: 0; }

/* ---------------------------------- Responsive --------------------------------- */

@media (max-width: 1080px){
  .site-header{ padding-top: 22px; }
  .brand-word{ font-size: 1.25rem; }
  .brand-mark{ width: 42px; height: 42px; }
  .main-nav{ gap: 20px; }
  .header-cta::before{ width: 48px; }
  .hero{ min-height: auto; padding-top: 148px; padding-bottom: 600px; }
  .hero-container{ transform: none; }
  .hero-copy{ max-width: 560px; }
  .hero-title{ font-size: clamp(3.15rem, 7.4vw, 4.85rem); max-width: 10.5ch; }
  .hero-side-note,
  .hero-line--top{ display:none; }
  .scroll-hint{ display:none; }
  .hero-mark{
    left: 50%; right: auto; top: auto; bottom: 60px;
    width: min(54vw, 440px);
    margin-left: calc(min(54vw, 440px) / -2);
    opacity: .38;
  }
  .hero-mascot-wrap{
    left: 50%; bottom: 64px;
    width: min(44vw, 380px);
    height: min(74vw, 480px);
    margin-left: calc(min(44vw, 380px) / -2);
  }
  .hero-sphere--one{ left: auto; right: 6%; top: 20%; }
  .hero-sphere--two{ display:none; }
  .about-grid{ grid-template-columns: 1fr; }
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .cases-board{ grid-template-columns: minmax(0, 1fr); min-height: 0; }
  .case-detail{ border-left: 0; border-top: 1px solid var(--border); min-height: 704px; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-list{ grid-template-columns: repeat(2, 1fr); }
  .contact-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .main-nav, .header-cta .btn--ghost, .header-cta::before{ display: none; }
  .nav-toggle{ display: flex; }
  .site-header{ padding: 16px var(--gutter); }
  .brand-mark{ width: 38px; height: 38px; }
  .brand-word{ font-size: 1.05rem; }
  .brand-word small{ font-size: .6rem; }
  .hero{
    min-height: 100svh;
    padding-top: 108px;
    padding-bottom: 360px;
  }
  .hero-container{ padding-inline: var(--gutter); transform: none; }
  .hero-copy{ max-width: 100%; }
  .hero-eyebrow{ margin-bottom: 18px; font-size: .72rem; letter-spacing: .16em; }
  /* longest word ("СТРАТЕГИЯ,") is ~6.3em wide, so 12.4vw always fits the 100vw - 2*gutter column */
  .hero-title{ font-size: clamp(2.1rem, 12.4vw, 3.6rem); line-height: 1; max-width: none; }
  .hero-sub{ margin-top: 24px; font-size: .95rem; line-height: 1.55; max-width: 30ch; }
  .hero-actions{ margin-top: 28px; }
  .hero-request-btn{ min-width: 210px; height: 52px; gap: 22px; }
  .hero-side-note,
  .hero-line--top,
  .hero-sphere--two,
  .hero-sphere--three{ display:none; }
  .hero-mark{ width: 360px; right: -150px; top: auto; bottom: 126px; opacity: .34; }
  .hero-mark::before{ inset:-5%; }
  /* without the mascot, centre the emblem so its TASWIK wordmark is not cut off at the edge */
  .hero--no-mascot .hero-mark{
    left: 50%; right: auto; bottom: 100px;
    width: min(92vw, 400px);
    margin-left: calc(min(92vw, 400px) / -2);
  }
  .hero-mascot-wrap{
    left: 50%;
    bottom: 72px;
    width: min(76vw, 300px);
    height: 350px;
  }
  .hero-word{ left: 50%; font-size: clamp(3.15rem, 17vw, 4.8rem); bottom: 4%; }
  .hero-mark-word{ width: 78%; opacity: .66; }
  .hero-mascot{ width: 86%; }
  .hero-sphere--one{ left: auto; right: 24px; top: 28%; width: 38px; opacity:.72; }
  .hero-tagline{ display:none; }
  .scroll-hint{ bottom: -8px; font-size: .56rem; letter-spacing:.16em; }
  .scroll-hint svg{ height: 44px; }
  .hero-social{ bottom: 22px; gap: 9px; }
  .hero-social a{ width: 34px; height: 34px; font-size: .68rem; }
  .hero-social--left{ left: var(--gutter); }
  .hero-social--right{ right: var(--gutter); }
  .services-grid, .why-grid, .process-list{ grid-template-columns: minmax(0, 1fr); }
  .case-logo-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .case-logo{ min-height: 96px; padding: 12px; }
  .case-logo:last-child{ grid-column: 1 / -1; min-height: 72px; }
  .case-detail{ min-height: 560px; }
  .stat-grid{ grid-template-columns: 1fr; }
  .footer-top{ grid-template-columns: 1fr; gap: 32px; }
  .section-head{ flex-direction: column; align-items: flex-start; }
}

/* Mobile nav overlay */
.mobile-nav{
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
}
.mobile-nav.is-open{ transform: translateY(0); }
.mobile-nav a{
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  padding-block: 14px;
  border-bottom: 1px solid var(--border);
}
.mobile-nav .btn{ margin-top: 32px; align-self: flex-start; }

/* ---------------------------------- Lead modal --------------------------------- */

.lead-modal{
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fg);
  width: min(440px, calc(100vw - 32px));
  max-width: none;
  max-height: none;
  overflow: visible;
}
.lead-modal::backdrop{
  background: rgba(3,3,3,0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.lead-modal[open]::backdrop{ animation: leadFade .3s ease; }
.lead-modal[open] .lead-modal-panel{ animation: leadIn .4s var(--ease); }
@keyframes leadFade{ from{ opacity: 0; } }
@keyframes leadIn{ from{ opacity: 0; transform: translateY(14px) scale(.98); } }

.lead-modal-panel{
  position: relative;
  padding: 44px 36px 34px;
  background: var(--bg-alt);
  border: 1px solid rgba(var(--accent-dim-rgb),0.55);
  box-shadow: 0 30px 80px rgba(0,0,0,0.65), inset 0 0 0 1px rgba(255,255,255,0.03);
}
.lead-modal-title{
  margin-bottom: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
}
.lead-modal-close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--fg-dim);
  transition: color .25s ease, border-color .25s ease;
}
.lead-modal-close svg{ width: 16px; height: 16px; }
.lead-modal-close:hover{ color: var(--fg); border-color: var(--accent); }

.lead-modal .form-status{ margin-top: 16px; }
.lead-modal .form-status:empty{ margin-top: 0; min-height: 0; }
.lead-modal.is-loading button[type="submit"]{ opacity: .72; pointer-events: none; }
.lead-modal.is-error .form-status{ color: var(--accent-light); }

.lead-modal-success{
  display: none;
  align-items: center;
  gap: 14px;
  padding: 26px 4px 12px;
  font-size: 1rem;
  line-height: 1.5;
}
.lead-modal-success svg{ width: 26px; height: 26px; color: var(--accent); flex-shrink: 0; }
.lead-modal.is-sent .lead-modal-title,
.lead-modal.is-sent form{ display: none; }
.lead-modal.is-sent .lead-modal-success{ display: flex; }

@media (max-width: 480px){
  .lead-modal-panel{ padding: 40px 22px 26px; }
  .lead-modal-title{ font-size: 1.4rem; margin-bottom: 24px; }
}
