/* =========================================================
   WEBUTKAL — main stylesheet
   Palette: near-black, electric blue, white/off-white
   Type: Space Grotesk (display) + system sans (body) + system mono (labels)
   ========================================================= */

/* ---------- Design tokens ---------- */
:root{
  --ink:        #0a0a0f;   /* near-black text / dark sections */
  --ink-soft:   #14141c;
  --ink-2:      #1d1e29;
  --blue:       #2b52ff;   /* primary electric blue */
  --blue-dark:  #1638c9;
  --blue-light: #6f89ff;
  --blue-mist:  #eef1ff;   /* pale blue tint for surfaces */
  --white:      #ffffff;
  --off-white:  #f7f8fb;
  --line:       #e8e9f0;
  --line-soft:  #f0f1f5;
  --line-dark:  #26272f;
  --gray:       #5c5d68;
  --gray-light: #9798a3;

  --font-display: 'Space Grotesk', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;

  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --gap: 28px;

  --shadow-sm: 0 1px 2px rgba(10,10,15,.04), 0 1px 1px rgba(10,10,15,.03);
  --shadow-md: 0 12px 32px -16px rgba(10,10,15,.14);
  --shadow-lg: 0 32px 64px -24px rgba(10,10,15,.22);

  --ease: cubic-bezier(.22,.9,.35,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@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, h1, h2, h3, h4, p, figure, blockquote{ margin: 0; }
ul, ol{ margin: 0; padding: 0; list-style: none; }
img, svg{ display: block; max-width: 100%; height: auto; }
a{ color: inherit; text-decoration: none; }
button, input, textarea, select{ font: inherit; color: inherit; }
button{ cursor: pointer; }

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

h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 16px;
}
.eyebrow::before{
  content: "";
  width: 18px; height: 1px;
  background: var(--blue);
  flex: none;
}

.section{ padding: 128px 0; }
.section--tight{ padding: 84px 0; }
.section--dark{ background: var(--ink); color: var(--white); }
.section--tint{ background: var(--off-white); }

.section-head{
  max-width: 620px;
  margin-bottom: 64px;
}
.section-head h2{ font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 16px; }
.section-head p{ color: var(--gray); font-size: 16.5px; line-height: 1.65; }
.section--dark .section-head p{ color: #a3a5b5; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: -0.01em;
  border: 1.5px solid transparent;
  transition: transform .18s var(--ease), background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:active{ transform: translateY(1px); }
.btn-primary{ background: var(--ink); color: var(--white); }
.btn-primary:hover{ background: var(--blue); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; border-color: var(--line); color: var(--ink); }
.btn-ghost:hover{ border-color: var(--ink); }
.btn-outline{ background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-outline:hover{ background: var(--ink); color: var(--white); }
.btn-whatsapp{ background: transparent; border-color: var(--line); color: var(--ink); }
.btn-whatsapp:hover{ border-color: var(--ink); }
.btn-arrow{ transition: transform .18s var(--ease); }
.btn:hover .btn-arrow{ transform: translateX(3px); }

/* Dark-context button variants — apply inside any dark surface
   (a full section--dark OR a standalone dark card like .cta-banner) */
.section--dark .btn-primary,
.cta-banner .btn-primary{ background: var(--white); color: var(--ink); }
.section--dark .btn-primary:hover,
.cta-banner .btn-primary:hover{ background: var(--blue); color: var(--white); }

.section--dark .btn-ghost,
.cta-banner .btn-ghost{ border-color: #363748; color: var(--white); }
.section--dark .btn-ghost:hover,
.cta-banner .btn-ghost:hover{ border-color: var(--white); }

.section--dark .btn-outline,
.cta-banner .btn-outline{ border-color: var(--white); color: var(--white); }
.section--dark .btn-outline:hover,
.cta-banner .btn-outline:hover{ background: var(--white); color: var(--ink); }

.section--dark .btn-whatsapp,
.cta-banner .btn-whatsapp{ border-color: #363748; color: var(--white); }
.section--dark .btn-whatsapp:hover,
.cta-banner .btn-whatsapp:hover{ border-color: var(--white); }

/* ---------- Skip link (accessibility) ---------- */
.skip-link{
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--blue);
  color: var(--white);
  padding: 12px 18px;
  z-index: 10000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus{ left: 0; top: 0; }

/* visible focus states everywhere */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline: 2.5px solid var(--blue);
  outline-offset: 2px;
}

/* ---------- Site Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand{ display: flex; align-items: center; gap: 10px; }
.brand img{ height: 34px; width: auto; }
.brand span{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.brand span em{
  font-style: normal;
  color: var(--blue);
}

.primary-nav > ul{ display: flex; align-items: center; gap: 34px; }
.primary-nav a{
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.primary-nav > ul > li > a::after{
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .2s var(--ease);
}
.primary-nav > ul > li > a:hover::after,
.primary-nav a.current::after{ width: 100%; }

.header-actions{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span{
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .25s var(--ease), opacity .2s ease;
}
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity: 0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile nav drawer ---------- */
@media (max-width: 880px){
  .primary-nav{
    position: fixed;
    inset: 0 0 0 30%;
    top: 0;
    background: var(--white);
    padding: 90px 32px 32px;
    transform: translateX(100%);
    transition: transform .32s var(--ease);
    box-shadow: -20px 0 60px rgba(10,10,15,.15);
    z-index: 998;
  }
  .primary-nav.is-open{ transform: translateX(0); }
  .primary-nav ul{ flex-direction: column; align-items: flex-start; gap: 22px; }
  .primary-nav a{ font-size: 19px; }
  .nav-toggle{ display: flex; }
  .nav-scrim{
    position: fixed; inset: 0;
    background: rgba(10,10,15,.4);
    opacity: 0; pointer-events: none;
    transition: opacity .3s ease;
    z-index: 997;
  }
  .nav-scrim.is-open{ opacity: 1; pointer-events: auto; }
  .header-actions .btn-primary{ padding: 10px 16px; font-size: 14px; }
}

/* ---------- Hero ---------- */
.hero{
  position: relative;
  padding: 76px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(600px 300px at 85% -10%, var(--blue-mist), transparent 60%);
}
.hero-grid{
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1{
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 20px;
}
.hero h1 .hl{ color: var(--blue); }
.hero p.lead{
  font-size: 18px;
  color: var(--gray);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-ctas{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats{ display: flex; gap: 32px; flex-wrap: wrap; }
.hero-stats div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
}
.hero-stats div span{ font-size: 13.5px; color: var(--gray); }

/* Browser mockup / signature build animation */
.mock-browser{
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line);
  box-shadow: 0 30px 70px -20px rgba(10,10,20,.25);
  overflow: hidden;
}
.mock-bar{
  display: flex; align-items: center; gap: 8px;
  padding: 12px 14px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.mock-dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--line); }
.mock-url{
  flex: 1;
  margin-left: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  padding: 5px 12px;
  overflow: hidden;
  white-space: nowrap;
}
.mock-url .caret{
  display: inline-block;
  width: 1px; height: 12px;
  background: var(--blue);
  margin-left: 2px;
  vertical-align: middle;
  animation: blink 1s steps(1) infinite;
}
@keyframes blink{ 50%{ opacity: 0; } }

.mock-body{ padding: 22px; display: grid; gap: 10px; }
.mock-block{
  height: 14px;
  border-radius: 4px;
  background: var(--line);
  animation: build .9s var(--ease) both;
}
.mock-block.w-60{ width: 60%; }
.mock-block.w-40{ width: 40%; }
.mock-block.w-90{ width: 90%; }
.mock-block.tall{ height: 96px; border-radius: 8px; background: var(--blue-mist); margin: 6px 0; }
.mock-block.accent{ background: var(--blue); width: 120px; height: 34px; border-radius: 8px; margin-top: 6px; }
.mock-block:nth-child(1){ animation-delay: .05s; }
.mock-block:nth-child(2){ animation-delay: .15s; }
.mock-block:nth-child(3){ animation-delay: .25s; }
.mock-block:nth-child(4){ animation-delay: .35s; }
.mock-block:nth-child(5){ animation-delay: .45s; }
@keyframes build{
  from{ opacity: 0; transform: scaleX(0); transform-origin: left; }
  to{ opacity: 1; transform: scaleX(1); }
}

/* ---------- Logo / trust strip ---------- */
.trust-strip{
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 30px 0;
}
.trust-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-grid div strong{
  display: block;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--blue);
}
.trust-grid div span{ font-size: 13.5px; color: var(--gray); }

/* ---------- Process / steps (used for "How We Work") ---------- */
.process-list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-list.cols-3{ grid-template-columns: repeat(3, 1fr); }
.process-list::before{
  content: "";
  position: absolute;
  top: 23px; left: 4%; right: 4%;
  height: 1px;
  background: var(--line);
}
.process-list--dark::before{ background: var(--line-dark); }
.process-item{ position: relative; padding-right: 32px; }
.process-num{
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--ink);
  color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 14px;
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}
.process-list--dark .process-num{ background: var(--ink); border-color: var(--blue); color: var(--blue-light); }
.process-item h3{ font-size: 18px; margin-bottom: 10px; letter-spacing: -0.015em; }
.process-item p{ color: var(--gray); font-size: 14.5px; line-height: 1.65; }
.process-list--dark .process-item h3{ color: var(--white); }
.process-list--dark .process-item p{ color: #a3a5b5; }
.process-highlight{ color: var(--blue-light); font-weight: 700; }
.process-list:not(.process-list--dark) .process-highlight{ color: var(--blue); }

/* ---------- Service cards ---------- */
.grid-3{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.grid-2{ display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }

.card{
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  transition: border-color .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}
.card:hover{
  border-color: var(--ink);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.card-index{
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--blue);
  letter-spacing: .04em;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-soft);
}
.card h3{ font-size: 19px; margin-bottom: 12px; letter-spacing: -0.015em; }
.card p{ color: var(--gray); font-size: 14.5px; line-height: 1.65; margin-bottom: 18px; }
.card-link{ font-size: 13.5px; font-weight: 600; color: var(--ink); display: inline-flex; align-items: center; gap: 6px; border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.card-link:hover{ color: var(--blue); border-color: var(--blue); }

/* ---------- Performance / stats callout ---------- */
/* ---------- Portfolio ---------- */
.work-card{
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--off-white);
  transition: transform .2s var(--ease), box-shadow .2s ease;
}
.work-card:hover{ transform: translateY(-4px); box-shadow: 0 24px 50px -28px rgba(10,10,20,.3); }
.work-thumb{
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-dark) 100%);
  display: flex; align-items: flex-end; padding: 18px;
}
.work-thumb span{
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue-light);
  background: rgba(255,255,255,.08);
  padding: 4px 10px;
  border-radius: 20px;
}
.work-body{ padding: 20px 22px 24px; }
.work-body h3{ font-size: 17px; margin-bottom: 6px; }
.work-body p{ font-size: 13.5px; color: var(--gray); }

/* ---------- Testimonial / CTA banner ---------- */
.cta-banner{
  background: var(--ink);
  color: var(--white);
  border-radius: 18px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before{
  content: "";
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(43,82,255,.35), transparent 70%);
  top: -220px; right: -160px;
}
.cta-banner h2{ font-size: clamp(26px, 4vw, 38px); margin-bottom: 16px; position: relative; }
.cta-banner p{ color: #b7b9c9; max-width: 520px; margin: 0 auto 32px; position: relative; }
.cta-banner .btn-row{ display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ---------- Forms ---------- */
.form-grid{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field{ display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-field.full{ grid-column: 1 / -1; }
.form-field label{ font-size: 13.5px; font-weight: 600; }
.form-field input,
.form-field textarea,
.form-field select{
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 13px 14px;
  font-size: 15px;
  background: var(--white);
  transition: border-color .18s ease;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus{ border-color: var(--blue); outline: none; }
.form-field textarea{ resize: vertical; min-height: 130px; }
.form-note{ font-size: 12.5px; color: var(--gray-light); margin-top: 6px; }
.form-msg{ padding: 14px 16px; border-radius: var(--radius-sm); font-size: 14.5px; margin-bottom: 22px; }
.form-msg.success{ background: #e9fbf0; color: #146c3a; border: 1px solid #b6ecc9; }
.form-msg.error{ background: #fdeceb; color: #a3271b; border: 1px solid #f5c2bd; }
.honeypot{ position: absolute; left: -9999px; opacity: 0; }

/* ---------- Pricing cards ---------- */
.pricing-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); align-items: stretch; max-width: 1080px; margin: 0 auto; }
.price-card{
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 36px;
  display: flex; flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, transform .2s var(--ease), box-shadow .2s ease;
}
.price-card:hover{ transform: translateY(-4px); border-color: var(--ink); box-shadow: var(--shadow-md); }
.price-card.is-featured{
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow-lg);
}
.price-card.is-featured:hover{ border-color: var(--blue); }
.price-badge{
  position: absolute; top: 40px; right: 36px;
  color: var(--blue-light);
  font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.price-card h3{ font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray); }
.price-card.is-featured h3{ color: #a3a5b5; }
.price-row{ display: flex; align-items: baseline; gap: 12px; margin: 18px 0 6px; }
.price-now{ font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.02em; }
.price-mrp{ font-size: 15px; color: var(--gray-light); text-decoration: line-through; }
.price-card.is-featured .price-mrp{ color: #6b6d7d; }
.price-renewal{ font-size: 13px; color: var(--gray-light); margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid var(--line-soft); }
.price-card.is-featured .price-renewal{ border-color: var(--line-dark); color: #7d7f8f; }
.price-features{ display: grid; gap: 15px; margin-bottom: 34px; flex: 1; }
.price-features li{ font-size: 14.5px; line-height: 1.5; color: var(--ink); padding-left: 20px; position: relative; }
.price-features li::before{
  content: "";
  position: absolute; left: 0; top: 8px;
  width: 10px; height: 1.5px;
  background: var(--ink);
}
.price-card.is-featured .price-features li{ color: #d8d9e5; }
.price-card.is-featured .price-features li::before{ background: var(--blue-light); }
.price-features li strong{ font-weight: 600; }
.price-card .btn{ justify-content: center; width: 100%; }
.price-card.is-featured .btn-ghost{ border-color: #363748; color: var(--white); }
.price-card.is-featured .btn-ghost:hover{ border-color: var(--white); }
.price-card.is-featured .btn-primary{ background: var(--white); color: var(--ink); }
.price-card.is-featured .btn-primary:hover{ background: var(--blue-light); color: var(--ink); }

/* ---------- Other services list ---------- */
.addon-list{ border-top: 1px solid var(--line); }
.addon-item{
  display: flex; justify-content: space-between; align-items: baseline; gap: 24px;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
}
.addon-item h4{ font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 4px; }
.addon-item p{ font-size: 13.5px; color: var(--gray); margin: 0; }
.addon-price{ font-family: var(--font-display); font-weight: 700; font-size: 18px; white-space: nowrap; }

/* ---------- Offer / feature list (Section 5, homepage) ---------- */
.offer-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.offer-chip{
  padding: 32px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: background .22s ease, border-color .22s ease, transform .22s var(--ease);
}
.offer-chip:hover{ background: var(--ink); border-color: var(--ink); transform: translateY(-3px); }
.offer-index{
  display: block;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .07em;
  color: var(--blue);
  margin-bottom: 18px;
  transition: color .22s ease;
}
.offer-chip p{ font-size: 16px; font-weight: 600; letter-spacing: -0.015em; margin: 0; transition: color .22s ease; }
.offer-chip:hover .offer-index{ color: var(--blue-light); }
.offer-chip:hover p{ color: var(--white); }

/* ---------- Stat callout (72 Hours) ---------- */
.stat-callout{ text-align: center; max-width: 760px; margin: 0 auto; }
.stat-callout h2{ font-size: clamp(26px,4.2vw,40px); margin-bottom: 16px; }
.stat-callout .hl{ color: var(--blue); }
.stat-callout p{ color: var(--gray); font-size: 17px; }

/* ---------- Legal pages ---------- */
.legal-page h2{ font-size: 21px; margin: 34px 0 12px; }
.legal-page h2:first-child{ margin-top: 0; }
.legal-page p{ font-size: 15.5px; color: #2b2c36; margin-bottom: 16px; }
.legal-page ul{ list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.legal-page ul li{ font-size: 15.5px; color: #2b2c36; margin-bottom: 8px; }
.legal-page hr{ border: none; border-top: 1px solid var(--line); margin: 30px 0; }

/* ---------- FAQ accordion ---------- */
.faq-item{ border-bottom: 1px solid var(--line); }
.faq-q{
  width: 100%; text-align: left; background: none; border: none;
  padding: 26px 0; display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-display); font-size: 17px; font-weight: 600; letter-spacing: -0.01em;
}
.faq-q .caret-ico{ width: 9px; height: 9px; border-right: 1.5px solid var(--gray); border-bottom: 1.5px solid var(--gray); transform: rotate(45deg); transition: transform .2s ease; flex: none; }
.faq-item.is-open .faq-q .caret-ico{ transform: rotate(225deg); }
.faq-a{ max-height: 0; overflow: hidden; transition: max-height .25s var(--ease); }
.faq-a p{ padding-bottom: 26px; color: var(--gray); font-size: 15px; line-height: 1.65; max-width: 700px; }

/* ---------- Contact info ---------- */
.contact-wrap{ display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.contact-info li{
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info h4{ font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--gray-light); margin-bottom: 8px; font-weight: 600; }
.contact-info p, .contact-info a{ font-size: 16px; color: var(--ink); font-weight: 500; }
.contact-info a:hover{ color: var(--blue); }

/* ---------- About page bits ---------- */
.value-list{ display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--gap); }
.value-item{ padding: 26px; border: 1px solid var(--line); border-radius: var(--radius); }
.value-item h3{ font-size: 17px; margin-bottom: 8px; }
.value-item p{ font-size: 14.5px; color: var(--gray); }

.split{ display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split img{ border-radius: var(--radius); }

/* ---------- Blog ---------- */
.post-card{ border-bottom: 1px solid var(--line); padding: 30px 0; display: grid; grid-template-columns: 140px 1fr; gap: 26px; }
.post-card time{ font-family: var(--font-mono); font-size: 12.5px; color: var(--gray-light); }
.post-card h2{ font-size: 21px; margin: 6px 0 10px; }
.post-card h2 a:hover{ color: var(--blue); }
.post-card p{ color: var(--gray); font-size: 14.5px; }
.single-post h1{ font-size: clamp(28px,4vw,40px); margin-bottom: 14px; }
.single-post .post-meta{ font-family: var(--font-mono); font-size: 13px; color: var(--gray-light); margin-bottom: 34px; }
.single-post .post-content{ max-width: 720px; }
.single-post .post-content p{ margin-bottom: 20px; font-size: 17px; color: #2b2c36; }
.single-post .post-content h2{ font-size: 24px; margin: 36px 0 14px; }
.single-post .post-content h3{ font-size: 19px; margin: 28px 0 12px; }
.single-post .post-content img{ border-radius: var(--radius); margin: 24px 0; }
.single-post .post-content ul{ list-style: disc; padding-left: 22px; margin-bottom: 20px; }
.single-post .post-content ul li{ margin-bottom: 8px; }
.single-post .post-content a{ color: var(--blue); text-decoration: underline; }

/* ---------- Footer ---------- */
.site-footer{ background: var(--ink); color: #cfd0dd; padding: 72px 0 28px; }
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .brand span{ color: var(--white); }
.footer-brand p{ font-size: 14px; color: #9698a6; margin: 16px 0 0; max-width: 300px; line-height: 1.6; }
.footer-col h4{ font-family: var(--font-display); font-size: 14px; color: var(--white); margin-bottom: 18px; letter-spacing: .02em; }
.footer-col li{ margin-bottom: 12px; }
.footer-col a{ font-size: 14.5px; color: #b7b9c9; }
.footer-col a:hover{ color: var(--white); }
.footer-bottom{
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #8688954;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom a{ color: #9698a6; }
.footer-bottom a:hover{ color: var(--white); }

/* ---------- Utilities ---------- */
.text-center{ text-align: center; }
.mt-0{ margin-top: 0; }
.page-hero{
  padding: 64px 0 56px;
  background: var(--off-white);
  border-bottom: 1px solid var(--line);
}
.page-hero .eyebrow{ margin-bottom: 12px; }
.page-hero h1{ font-size: clamp(30px, 4.5vw, 46px); max-width: 760px; }
.page-hero p{ color: var(--gray); font-size: 17px; max-width: 620px; margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px){
  .hero-grid{ grid-template-columns: 1fr; }
  .mock-browser{ max-width: 480px; margin: 0 auto; }
  .perf-wrap{ grid-template-columns: 1fr; text-align: center; }
  .perf-list{ text-align: left; }
  .split{ grid-template-columns: 1fr; }
  .contact-wrap{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .pricing-grid{ grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .process-list.cols-3{ grid-template-columns: 1fr; gap: 34px; }
  .process-list.cols-3::before{ display: none; }
  .offer-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px){
  .section{ padding: 72px 0; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .value-list{ grid-template-columns: 1fr; }
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
  .process-list{ grid-template-columns: 1fr; gap: 34px; }
  .process-list::before{ display: none; }
  .form-grid{ grid-template-columns: 1fr; }
  .cta-banner{ padding: 44px 26px; }
  .footer-grid{ grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom{ flex-direction: column; align-items: flex-start; }
  .post-card{ grid-template-columns: 1fr; }
  .work-body h3{ font-size: 16px; }
  .addon-list{ grid-template-columns: 1fr; }
  .offer-grid{ grid-template-columns: 1fr 1fr; }
  .hero-ctas .btn-whatsapp, .hero-ctas .btn-primary, .hero-ctas .btn-ghost{ width: 100%; }
}
@media (max-width: 480px){
  .hero{ padding: 48px 0 60px; }
  .hero-ctas{ flex-direction: column; align-items: stretch; }
  .hero-stats{ gap: 20px; }
  .btn{ justify-content: center; }
}
