/* =========================================================
   Aksara Digital Creative — style.css
   Design: Modern & Minimalist | Font: Plus Jakarta Sans
   ========================================================= */

/* ── Reset & Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:         #0057C8;
  --blue-dark:    #004AAD;
  --blue-light:   #E5EFFE;
  --accent:       #FF9F0A;
  --accent-dark:  #E88A00;
  --accent-light: #FFF4DC;
  --green:        #34C759;
  --amber:        #FF9F0A;
  --red:          #FF3B30;
  --purple:       #AF52DE;
  --gray-50:      #F5F5F7;
  --gray-100:     #E8E8ED;
  --gray-200:     #D2D2D7;
  --gray-300:     #BCBCC2;
  --gray-400:     #8E8E93;
  --gray-500:     #636366;
  --gray-600:     #48484A;
  --gray-700:     #3A3A3C;
  --gray-800:     #2C2C2E;
  --gray-900:     #1D1D1F;
  --font:       'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:     12px;
  --radius-lg:  20px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08),0 1px 2px rgba(0,0,0,.06);
  --shadow:     0 4px 6px rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.06);
  --shadow-md:  0 10px 25px rgba(0,0,0,.08),0 4px 6px rgba(0,0,0,.05);
  --shadow-lg:  0 20px 50px rgba(0,0,0,.1),0 8px 16px rgba(0,0,0,.06);
  --nav-h:      70px;
  --section-py: 96px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-900);
  background: #FAFAF8;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Scroll offset for anchor links ───────────────────── */
[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* ── Buttons ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,87,200,.25);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 4px 16px rgba(0,87,200,.35); transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  background: transparent;
  color: var(--gray-800);
  border: 1.5px solid var(--gray-200);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-light); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* ── Section tag pill ──────────────────────────────────── */
.section-tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: 999px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

/* ── Section generic ───────────────────────────────────── */
.section {
  padding: var(--section-py) 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: var(--gray-50);
  max-width: 100%;
  padding: var(--section-py) 24px;
}
.section-alt .inner-wrap { max-width: 1200px; margin: 0 auto; }
.section h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--gray-900); line-height: 1.18; margin-bottom: 14px; }
.section-alt h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 800; color: var(--gray-900); line-height: 1.18; margin-bottom: 14px; }
.section-desc { font-size: 17px; color: var(--gray-500); max-width: 560px; margin-bottom: 48px; }

/* ── Reveal animation ──────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

/* ── HEADER ────────────────────────────────────────────── */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
#siteHeader.scrolled {
  background: rgba(255,255,255,0.96);
  border-bottom-color: rgba(0,0,0,.07);
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
}

.nav-inner {
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 17px; font-weight: 800; color: var(--gray-900);
  flex-shrink: 0;
}
.logo-mark {
  width: 32px; height: 32px;
  background: var(--blue);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 5px;
}
.logo-mark.sm { width: 26px; height: 26px; padding: 4px; }
.logo-accent { color: var(--gray-500); font-weight: 600; }
.nav-links {
  display: flex; gap: 4px; margin-left: auto;
}
.nav-links a {
  padding: 7px 14px;
  font-size: 14px; font-weight: 600;
  color: var(--gray-600);
  border-radius: 8px;
  transition: all .15s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gray-900); background: rgba(0,0,0,.05); }
.nav-cta { flex-shrink: 0; background: var(--blue) !important; color: white !important; box-shadow: 0 2px 8px rgba(0,87,200,.2) !important; }
.nav-cta:hover { background: var(--blue-dark) !important; box-shadow: 0 4px 16px rgba(0,87,200,.3) !important; transform: translateY(-1px) !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  border-radius: 8px;
  margin-left: auto;
  transition: background .15s;
}
.hamburger:hover { background: rgba(0,0,0,.06); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--gray-800); border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }

.mm-inner {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 90vw);
  height: 100%;
  background: rgba(255,255,255,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0,0,0,.07);
  padding: calc(var(--nav-h) + 32px) 32px 40px;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -12px 0 60px rgba(0,0,0,.1);
}
.mobile-menu.open .mm-inner { transform: translateX(0); }

.mm-nav { display: flex; flex-direction: column; gap: 4px; }
.mm-link {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 16px;
  font-size: 12px; font-weight: 700;
  color: var(--gray-700);
  border-radius: var(--radius);
  border-bottom: 1px solid var(--gray-100);
  transition: all .18s ease;
  letter-spacing: -.01em;
}
.mm-link:last-child { border-bottom: none; }
.mm-link:hover { color: var(--gray-900); background: rgba(0,0,0,.04); padding-left: 22px; }
.mm-num {
  font-size: 11px; font-weight: 600;
  color: var(--gray-400);
  letter-spacing: .08em;
  min-width: 24px;
  font-variant-numeric: tabular-nums;
}
.mm-footer { display: flex; flex-direction: column; gap: 14px; }
.mm-cta { width: 100%; justify-content: center; font-size: 15px; }
.mm-caption {
  font-size: 12px; color: var(--gray-400);
  text-align: center; line-height: 1.6;
}

/* ── HERO ──────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: #ffffff;
  display: flex; align-items: center; justify-content: center;
  gap: 60px;
  padding: calc(var(--nav-h) + 60px) 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg { display: none; }
.hero-circle { display: none; }
.c1 { display: none; }
.c2 { display: none; }

.hero-content { flex: 1; max-width: 560px; z-index: 1; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px; font-weight: 600;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(0,87,200,.15);
}
.pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #4ADE80;
  box-shadow: 0 0 0 3px rgba(74,222,128,.3);
  flex-shrink: 0;
}
.hero h1 {
  font-size: clamp(32px, 5.5vw, 58px);
  font-weight: 800;
  color: var(--gray-900);
  line-height: 1.1;
  margin-bottom: 22px;
}
.hero h1 mark {
  background: none;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  background-image: linear-gradient(90deg, var(--blue), #1778F2);
}
.hero-desc {
  font-size: 17px; line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 32px;
}
.hero-desc strong { color: var(--gray-900); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-actions .btn-outline { color: var(--gray-700); border-color: var(--gray-200); }
.hero-actions .btn-outline:hover { background: var(--gray-50); color: var(--gray-900); border-color: var(--gray-300); }

.hero-trust { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 20px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.trust-item span { font-size: 12px; color: var(--gray-500); margin-top: 3px; font-weight: 500; }
.trust-div { width: 1px; height: 28px; background: var(--gray-200); }

/* Browser mockup */
.hero-visual { flex: 1; max-width: 480px; z-index: 1; }
.mockup-browser {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.3), 0 0 0 1px rgba(255,255,255,.1);
}
.mb-topbar {
  background: var(--gray-100);
  padding: 10px 16px;
  display: flex; align-items: center; gap: 12px;
}
.mb-dots { display: flex; gap: 6px; }
.mb-dots span { width: 10px; height: 10px; border-radius: 50%; }
.mb-url {
  flex: 1; background: white; border-radius: 6px;
  padding: 5px 12px; font-size: 11px; color: var(--gray-400);
  text-align: center;
}
.mb-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.mb-hero-bar { height: 72px; background: linear-gradient(120deg,rgba(0,87,200,.12),rgba(0,87,200,.06)); border-radius: 10px; }
.mb-row { display: flex; gap: 8px; }
.mb-block { flex: 1; height: 32px; background: var(--gray-100); border-radius: 6px; }
.accent-block { background: rgba(0,87,200,.15); }
.mb-cards { display: flex; gap: 8px; }
.mb-card { flex: 1; height: 52px; background: var(--gray-100); border-radius: 8px; }
.accent-card { background: rgba(0,87,200,.12); }
.mb-lines { display: flex; flex-direction: column; gap: 6px; }
.mb-line { height: 8px; background: var(--gray-200); border-radius: 4px; }

/* Float badges */
.float-badge {
  position: absolute;
  display: flex; align-items: center; gap: 7px;
  background: white;
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 12px; font-weight: 700; color: var(--gray-800);
  box-shadow: var(--shadow-md);
  pointer-events: none;
}
.hero-visual { position: relative; }
.badge-1 { bottom: -16px; left: -20px; }
.badge-2 { top: 40px; right: -20px; }

/* ── SERVICES ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: white;
  border: 1.5px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow .2s, transform .2s, border-color .2s;
  box-shadow: var(--shadow-sm);
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-200); }
.svc-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.svc-card h3 { font-size: 17px; font-weight: 700; color: var(--gray-900); }
.svc-card p { font-size: 14.5px; color: var(--gray-500); line-height: 1.6; }
.svc-list { display: flex; flex-direction: column; gap: 6px; margin-top: 2px; }
.svc-list li {
  font-size: 13.5px; color: var(--gray-600);
  padding-left: 16px; position: relative;
}
.svc-list li::before {
  content: ''; position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue);
}
.svc-cta {
  background: linear-gradient(135deg, var(--blue-light), #EEF5FF);
  border-color: rgba(0,87,200,.15);
}

/* ── PORTFOLIO ─────────────────────────────────────────── */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  margin-bottom: 36px;
}
.portfolio-card {
  background: white; border-radius: var(--radius-lg);
  border: 1.5px solid var(--gray-100); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.portfolio-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pc-visual { padding: 20px 20px 12px; }
.pc-browser {
  background: white; border-radius: 8px;
  border: 1px solid rgba(0,0,0,.07);
  overflow: hidden;
}
.pc-bar {
  background: var(--gray-100); padding: 7px 10px;
  display: flex; gap: 5px; align-items: center;
}
.pc-bar span { width: 8px; height: 8px; border-radius: 50%; }
.pc-screen { padding: 10px; }
.pc-info { padding: 16px 20px 20px; }
.pc-tag { font-size: 12px; font-weight: 700; color: var(--acc, var(--blue)); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 6px; }
.pc-title { font-size: 16px; font-weight: 700; color: var(--gray-900); margin-bottom: 6px; }
.pc-info p { font-size: 13.5px; color: var(--gray-500); line-height: 1.55; }
.pc-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--acc, var(--blue));
  transition: gap .15s;
}
.pc-link:hover { text-decoration: underline; }

.portfolio-cta { text-align: center; }
.portfolio-cta p { font-size: 17px; color: var(--gray-600); margin-bottom: 16px; }

/* ── TENTANG ───────────────────────────────────────────── */
.about-wrap {
  display: grid; grid-template-columns: 1fr 420px; gap: 64px;
  align-items: center; max-width: 1200px; margin: 0 auto;
}
.about-left p { font-size: 16px; color: var(--gray-600); line-height: 1.7; margin-bottom: 16px; }
.about-left h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--gray-900); line-height: 1.18; margin-bottom: 18px; }
.about-values { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.av-item { display: flex; gap: 14px; align-items: flex-start; }
.av-icon { width: 38px; height: 38px; border-radius: 10px; display:flex; align-items:center; justify-content:center; flex-shrink: 0; }
.av-item strong { display: block; font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 2px; }
.av-item span { font-size: 13.5px; color: var(--gray-500); }

.about-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-card { border-radius: var(--radius-lg); padding: 22px; background: var(--gray-50); border: 1.5px solid var(--gray-100); }
.main-card { grid-column: 1/-1; }
.stat-card { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.stat-blue { background: var(--blue); border-color: var(--blue); }
.stat-blue .ac-num, .stat-blue .ac-label-sm { color: white !important; }
.ac-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: var(--gray-400); margin-bottom: 4px; }
.ac-city { font-size: 24px; font-weight: 800; color: var(--gray-900); }
.ac-sub { font-size: 13.5px; color: var(--gray-500); margin-top: 2px; }
.ac-num { font-size: 32px; font-weight: 800; color: var(--gray-900); line-height: 1; }
.ac-label-sm { font-size: 12px; color: var(--gray-500); margin-top: 4px; font-weight: 500; }

/* ── HARGA ─────────────────────────────────────────────── */
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-bottom: 20px; }
.pricing-card {
  background: white; border-radius: var(--radius-lg);
  border: 2px solid var(--gray-100);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.pricing-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.pricing-featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0,87,200,.08), var(--shadow-md);
  position: relative;
}
.pp-badge {
  font-size: 11.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .05em; color: var(--gray-400);
  margin-bottom: 14px;
}
.pp-badge-featured { color: var(--blue); }
.pp-name { font-size: 22px; font-weight: 800; color: var(--gray-900); margin-bottom: 12px; }
.pp-price { display: flex; flex-direction: column; gap: 2px; margin-bottom: 14px; }
.pp-from { font-size: 12px; color: var(--gray-400); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.pp-amount { font-size: 26px; font-weight: 800; color: var(--blue); line-height: 1; }
.pp-amount-sm { font-size: 20px; }
.pp-tagline { font-size: 13.5px; color: var(--gray-500); line-height: 1.55; margin-bottom: 22px; }
.pp-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pp-features li { display: flex; gap: 10px; font-size: 14px; color: var(--gray-700); align-items: flex-start; }
.pp-check { color: var(--gray-400); font-weight: 700; flex-shrink: 0; line-height: 1.4; }
.pp-check-blue { color: var(--blue) !important; }
.pricing-note { font-size: 13px; color: var(--gray-400); text-align: center; }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-wrap {
  display: grid; grid-template-columns: 360px 1fr; gap: 72px;
  align-items: flex-start; max-width: 1200px; margin: 0 auto;
}
.faq-left h2 { font-size: clamp(24px,3.5vw,36px); font-weight: 800; color: var(--gray-900); line-height: 1.18; margin-bottom: 14px; }
.faq-left p { font-size: 15px; color: var(--gray-500); margin-bottom: 24px; }

.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: border-color .15s;
}
.faq-item[open] { border-color: var(--blue); }
.faq-item summary {
  padding: 18px 20px;
  font-size: 15px; font-weight: 600; color: var(--gray-800);
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-size: 20px; font-weight: 400;
  color: var(--gray-400); transition: transform .2s;
  flex-shrink: 0; margin-left: 12px;
}
.faq-item[open] summary::after { transform: rotate(45deg); color: var(--blue); }
.faq-item summary:hover { color: var(--blue); }
.faq-ans {
  padding: 0 20px 18px;
  font-size: 14.5px; color: var(--gray-600); line-height: 1.7;
}

/* ── KONTAK ────────────────────────────────────────────── */
.contact-box {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 420px 1fr; gap: 60px;
  background: white; border-radius: 24px;
  padding: 52px;
  box-shadow: 0 4px 6px rgba(0,0,0,.05), 0 0 0 1px var(--gray-100);
}
.cb-left h2 { font-size: clamp(24px,3.2vw,36px); font-weight: 800; color: var(--gray-900); line-height: 1.18; margin-bottom: 14px; }
.cb-left p { font-size: 15px; color: var(--gray-500); line-height: 1.7; margin-bottom: 28px; }
.channels { display: flex; flex-direction: column; gap: 12px; }
.ch-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--gray-50); border-radius: var(--radius);
  border: 1.5px solid var(--gray-100);
  transition: all .15s;
}
a.ch-item:hover { border-color: var(--blue); background: var(--blue-light); }
.ch-icon { width: 36px; height: 36px; border-radius: 10px; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.ch-item strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); line-height: 1; margin-bottom: 2px; }
.ch-item span { font-size: 12.5px; color: var(--gray-500); }

/* Contact form */
.cb-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 7px; }
.fg label { font-size: 13.5px; font-weight: 600; color: var(--gray-700); }
.fg input, .fg select, .fg textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-family: var(--font); font-size: 15px; color: var(--gray-800);
  background: white; outline: none;
  transition: border-color .15s;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,87,200,.1); }
.fg textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12.5px; color: var(--gray-400); text-align: center; }

/* ── FOOTER ────────────────────────────────────────────── */
footer { background: var(--gray-900); color: rgba(255,255,255,.7); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 64px 24px 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
}
.footer-brand-col { max-width: 280px; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 700; color: white; margin-bottom: 14px; }
.footer-brand-col p { font-size: 13.5px; line-height: 1.7; color: rgba(255,255,255,.45); }
.footer-socials { display: flex; gap: 10px; margin-top: 18px; }
.social-icon {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: all .15s;
}
.social-icon:hover { background: var(--blue); color: white; }
.fn-title { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,.5); margin-bottom: 16px; }
.footer-nav-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-nav-col a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-nav-col a:hover { color: white; }
.footer-nav-col span { font-size: 13.5px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 20px 24px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.3);
}

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --section-py: 72px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .about-wrap { grid-template-columns: 1fr; gap: 40px; }
  .about-right { grid-template-columns: repeat(3,1fr); max-width: 100%; }
  .main-card { grid-column: auto; }
  .faq-wrap { grid-template-columns: 1fr; gap: 40px; }
  .contact-box { grid-template-columns: 1fr; gap: 40px; padding: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1/-1; max-width: 100%; }
  .hero { flex-direction: column; gap: 40px; padding-bottom: 60px; min-height: auto; padding-top: calc(var(--nav-h) + 48px); }
  .hero-content, .hero-visual { max-width: 100%; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .about-right { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  :root { --section-py: 56px; }
  .contact-box { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; }
  .badge-1, .badge-2 { display: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}