/* =========================================================
   Digital Haat - Premium Landing Page Stylesheet
   Mobile-first | Accessible | prefers-reduced-motion aware
   ========================================================= */

/* ---------- 00. CODE PROTECTION — REMOVED FOR ACCESSIBILITY & SEO ----------
   Removed: user-select: none on * selector
   Reason: Screen readers, copy-paste usability, and SEO content signals require
   normal text selection behavior. Only form inputs default to selectable text
   per browser defaults — no override needed.
-------------------------------------------------------------- */

/* ---------- 01. Design Tokens ---------- */
:root {
  /* Brand palette */
  --primary: #0b2d89;
  --primary-dark: #061d5c;
  --primary-light: #1f43b5;
  --accent-red: #e31b23;
  --accent-red-soft: #ffe6e7;
  --accent-yellow: #ffd21c;
  --accent-orange: #ff9a3c;
  --wa-green: #25D366;
  --wa-green-dark: #1fa855;

  /* Neutrals */
  --white: #ffffff;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --text: #172033;
  --text-soft: #334155;
  --muted: #667085;
  --border: #e5e7eb;
  --border-soft: #f1f5f9;

  /* Service accent colors */
  --c-fb: #1877F2;
  --c-yt: #FF0000;
  --c-tk: #000000;
  --c-dm: #0b2d89;
  --c-web: #6366F1;
  --c-ecom: #e31b23;
  --c-design: #ff9a3c;
  --c-support: #059669;

  /* Typography */
  --font: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.0625rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
  --fs-3xl: clamp(1.75rem, 1.2rem + 2.5vw, 2.5rem);
  --fs-hero: clamp(2rem, 1rem + 5vw, 3.75rem);

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 28px;
  --r-full: 999px;

  /* Shadow */
  --sh-sm: 0 1px 2px rgba(15, 23, 42, .06), 0 1px 3px rgba(15, 23, 42, .08);
  --sh-md: 0 4px 10px rgba(15, 23, 42, .08), 0 2px 4px rgba(15, 23, 42, .05);
  --sh-lg: 0 12px 32px -10px rgba(11, 45, 137, .25), 0 6px 16px -4px rgba(15, 23, 42, .12);
  --sh-xl: 0 24px 60px -15px rgba(11, 45, 137, .35), 0 12px 30px -10px rgba(15, 23, 42, .18);
  --sh-glass: 0 10px 30px -10px rgba(11, 45, 137, .18);

  /* Spacing */
  --sp-section: clamp(4rem, 8vw, 7rem);
  --sp-section-lg: clamp(5rem, 10vw, 9rem);

  /* Transitions */
  --t-fast: 180ms cubic-bezier(.4,0,.2,1);
  --t-base: 280ms cubic-bezier(.4,0,.2,1);
  --t-slow: 520ms cubic-bezier(.25,1,.5,1);
}

/* Responsive typography for extra small devices */
@media (max-width: 374px) {
  :root {
    --fs-hero: clamp(1.75rem, 0.8rem + 4.5vw, 3rem);
    --fs-3xl: clamp(1.5rem, 1rem + 2vw, 2.2rem);
    --fs-2xl: clamp(1.25rem, 1rem + 1.2vw, 1.75rem);
    --sp-section: clamp(2.5rem, 6vw, 4rem);
  }
}

/* ---------- 02. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: 80px; }
body {
  font-family: var(--font);
  font-size: var(--fs-base);
  line-height: 1.6;
}

/* ---------- SEO-Safe Anti-Copy Protection ---------- */
/* Image drag protection (WebKit browsers) */
img {
  -webkit-user-drag: none;
}

/* Note: user-select: none is NOT applied globally to preserve:
   - SEO content accessibility
   - Screen reader compatibility
   - Form usability
   - Contact information copy ability
   Selective protection can be applied to specific decorative elements if needed */

/* ---------- Service Descriptions Styles ---------- */
.service-descriptions {
  margin-bottom: 3rem;
}

.service-description-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-desc-item {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: var(--t-base);
}

.service-desc-item:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-md);
}

.service-desc-item h3 {
  font-size: var(--fs-lg);
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.service-desc-item p {
  color: var(--text-soft);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ---------- Location Cards Styles ---------- */
.location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.location-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  transition: var(--t-base);
}

.location-card:hover {
  border-color: var(--primary);
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
}

.location-card h3 {
  font-size: var(--fs-xl);
  color: var(--primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.location-card p {
  color: var(--text-soft);
  font-size: var(--fs-base);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.location-services {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.location-services li {
  background: var(--primary-light);
  color: var(--white);
  padding: 0.4rem 0.8rem;
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
}

@media (max-width: 768px) {
  .location-grid {
    grid-template-columns: 1fr;
  }
  
  .service-description-grid {
    grid-template-columns: 1fr;
  }
}

body {
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; border: none; background: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1, h2, h3, h4 { line-height: 1.25; letter-spacing: -0.01em; color: var(--text); }
:focus-visible {
  outline: 2px solid var(--accent-yellow);
  outline-offset: 3px;
  border-radius: 6px;
}
::selection { background: var(--accent-yellow); color: var(--text); }
input::placeholder, textarea::placeholder { color: #94a3b8; }

/* ---------- 03. Utilities ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 480px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 768px) {
  .container { padding: 0 2rem; }
}

.section { padding: var(--sp-section) 0; position: relative; }
.section-alt { background: linear-gradient(180deg, var(--surface) 0%, #fff 100%); }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}
.section-head .eyebrow {
  display: inline-block;
  padding: .4rem 1rem;
  background: linear-gradient(135deg, rgba(255,210,28,.2), rgba(227,27,35,.12));
  border: 1px solid rgba(11,45,137,.1);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: var(--fs-sm);
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.section-head h2 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  margin-bottom: .85rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-head .lead {
  font-size: var(--fs-md);
  color: var(--muted);
}

/* ---------- Language Toggle ---------- */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background: rgba(11, 45, 137, 0.08);
  border-radius: 50px;
  border: 1px solid rgba(11, 45, 137, 0.15);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-soft);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.3rem 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 4px;
}

.lang-btn:hover {
  color: var(--primary-dark);
  background: rgba(11, 45, 137, 0.1);
}

.lang-btn.lang-active {
  color: var(--primary);
  font-weight: 700;
  background: rgba(11, 45, 137, 0.12);
}

.lang-divider {
  color: var(--muted);
  font-size: 0.75rem;
  opacity: 0.4;
}

.mobile-lang-toggle {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
  border-top: 1px solid var(--border);
}

.mobile-lang-toggle .lang-btn {
  font-size: 1rem;
  padding: 0.5rem 1rem;
}

@media (max-width: 1023px) {
  .mobile-lang-toggle {
    display: flex;
  }
  .language-toggle {
    display: none;
  }
}

/* ---------- 04. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1.4rem;
  font-weight: 700;
  font-size: var(--fs-sm);
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-base),
              background var(--t-base), color var(--t-base), border-color var(--t-base);
  white-space: nowrap;
  user-select: none;
  line-height: 1.2;
  -webkit-user-select: none;
  -moz-user-select: none;
}
.btn-sm { padding: .6rem 1.1rem; font-size: var(--fs-xs); }

/* Responsive button sizing for small screens */
@media (max-width: 374px) {
  .btn {
    padding: .75rem 1.1rem;
    font-size: 0.8rem;
  }
  .btn-sm {
    padding: .5rem .9rem;
    font-size: 0.7rem;
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  box-shadow: 0 10px 22px -10px rgba(11,45,137,.6);
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,210,28,.25), rgba(255,154,60,.15));
  opacity: 0;
  transition: opacity var(--t-base);
}
.btn-primary:hover, .btn-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(11,45,137,.75);
}
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-wa {
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(37,211,102,.55);
}
.btn-wa:hover, .btn-wa:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -10px rgba(37,211,102,.75);
}

.btn-outline {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
  padding: .65rem 1.1rem;
  font-size: var(--fs-sm);
  box-shadow: var(--sh-sm);
}
.btn-outline:hover, .btn-outline:focus-visible {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: var(--sh-lg);
}

/* ---------- 05. Header / Navbar ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: .8rem 0;
  transition: background var(--t-base), backdrop-filter var(--t-base),
              box-shadow var(--t-base);
}
.site-header.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 4px 20px -8px rgba(11,45,137,.15);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-weight: 800;
}
.brand-mark {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-md);
  overflow: hidden;
  filter: drop-shadow(0 4px 8px rgba(11,45,137,.3));
}
.brand-mark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-bn {
  font-size: 0.95rem;
  color: var(--primary-dark);
  font-weight: 800;
}
.brand-en {
  font-size: 0.6rem;
  color: var(--muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.site-header.scrolled .brand-bn { color: var(--primary-dark); }

.nav-links {
  display: none;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text-soft);
  border-radius: var(--r-full);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a:focus-visible {
  background: rgba(11,45,137,.06);
  color: var(--primary-dark);
}

.btn-nav-wa { padding: .65rem 1.05rem; font-size: var(--fs-sm); display: none; }
@media (min-width: 1024px) { .btn-nav-wa { display: inline-flex; } }

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  width: 42px; height: 42px;
  border-radius: var(--r-md);
  padding: 10px;
  gap: 5px;
  transition: background var(--t-fast);
}
@media (min-width: 1024px) { .hamburger { display: none; } }
.hamburger:hover { background: rgba(11,45,137,.06); }
.hamburger span {
  display: block;
  height: 2px; width: 100%;
  background: var(--primary-dark);
  border-radius: 2px;
  transform-origin: center;
  transition: transform var(--t-base), opacity var(--t-fast);
}
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px; right: 1rem; left: 1rem;
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 1.2rem;
  box-shadow: var(--sh-xl);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .2rem;
  transform: translateY(-8px) scale(.98);
  opacity: 0;
  pointer-events: none;
  transition: all var(--t-base);
  z-index: 49;
}
.mobile-menu.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  font-weight: 600;
  color: var(--text-soft);
  transition: background var(--t-fast), color var(--t-fast);
}
.mobile-menu a:hover { background: var(--surface); color: var(--primary); }
.mobile-wa {
  margin-top: .6rem;
  justify-content: center;
}

/* ---------- 06. Hero ---------- */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(1000px 500px at 100% -10%, rgba(255,210,28,.18), transparent 60%),
    radial-gradient(800px 500px at -10% 30%, rgba(227,27,35,.1), transparent 60%),
    linear-gradient(180deg, #f4f7ff 0%, #fbfdff 50%, #ffffff 100%);
}
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .55; }
.blob-1 { width: 420px; height: 420px; background: #ffd21c; top: -120px; right: -100px; opacity: .28; }
.blob-2 { width: 380px; height: 380px; background: #e31b23; bottom: -120px; left: -100px; opacity: .15; }
.blob-3 { width: 300px; height: 300px; background: #0b2d89; top: 35%; right: 25%; opacity: .06; }
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(11,45,137,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,45,137,.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 30%, transparent 80%);
  opacity: .8;
}

.hero-container {
  display: grid;
  gap: 3.5rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-container { grid-template-columns: 1.05fr 1fr; gap: 3rem; }
  .hero { padding-top: 9rem; padding-bottom: 6rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .45rem 1rem;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(11,45,137,.1);
  border-radius: var(--r-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--primary-dark);
  box-shadow: var(--sh-sm);
  margin-bottom: 1.4rem;
  backdrop-filter: blur(6px);
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 3px rgba(37,211,102,.2);
  animation: pulse 1.8s ease-in-out infinite;
}

.hero-title {
  font-size: var(--fs-hero);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--text);
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-red) 50%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: var(--fs-md);
  color: var(--text-soft);
  max-width: 580px;
  margin-bottom: 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 2.5rem;
}
.hero-cta .btn { flex: 1 1 auto; max-width: 280px; }

/* Responsive hero CTA for small screens */
@media (max-width: 480px) {
  .hero-cta {
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }
  .hero-cta .btn {
    flex: 1 1 100%;
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 1.1rem;
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(11,45,137,.08);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  max-width: 520px;
}
.stat { display: flex; flex-direction: column; line-height: 1.1; flex: 1; min-width: 80px; }
.stat-num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin-bottom: .2rem;
}
.stat-label { font-size: var(--fs-xs); color: var(--muted); font-weight: 600; }
.stat-divider {
  width: 1px; height: 36px;
  background: linear-gradient(180deg, transparent, var(--border), transparent);
}

/* Responsive hero stats for small screens */
@media (max-width: 480px) {
  .hero-stats {
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  .stat {
    min-width: 60px;
  }
  .stat-num {
    font-size: 1.2rem;
  }
  .stat-label {
    font-size: 0.7rem;
  }
  .stat-divider {
    height: 24px;
  }
}

/* Hero visual */
.hero-right { position: relative; }
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  aspect-ratio: 1 / 1;
}
@media (min-width: 768px) { .hero-visual { aspect-ratio: auto; height: 540px; } }

/* Hide complex visual elements on very small screens for performance */
@media (max-width: 374px) {
  .blob,
  .grid-overlay,
  .bubble,
  .consult-card {
    display: none;
  }
}

/* Laptop mockup */
.laptop-card {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 82%;
  animation: float-y 6s ease-in-out infinite;
  filter: drop-shadow(var(--sh-xl));
}
.laptop-top {
  background: linear-gradient(180deg, #fafafa 0%, #e6e8ef 100%);
  border: 1px solid #d3d6de;
  border-radius: 14px 14px 6px 6px;
  padding: 14px 12px 0;
  position: relative;
}
.camera-dot {
  width: 5px; height: 5px;
  background: #9aa1b0;
  border-radius: 50%;
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
}
.laptop-screen {
  background: linear-gradient(135deg, #0b2d89 0%, #061d5c 100%);
  border-radius: 8px 8px 0 0;
  padding: 10px;
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.laptop-screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 40%);
  pointer-events: none;
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 10px;
}
.s-dot { width: 7px; height: 7px; border-radius: 50%; }
.s-r { background: #ff5f57; } .s-y { background: #febc2e; } .s-g { background: #28c840; }
.url-bar {
  flex: 1;
  margin-left: 8px;
  height: 18px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  font-size: 7.5px;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  padding: 0 6px;
  font-family: ui-monospace, monospace;
}
.screen-body { padding: 2px 0; }
.sb-h {
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.sb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 14px;
}
.sb-card {
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  gap: 2px;
  font-weight: 700;
}
.sb-card span { font-size: 9.5px; }
.sb-card small { font-size: 6px; font-weight: 600; opacity: .95; }
.sb-c1 { background: linear-gradient(135deg, #1877F2, #0c5fc7); }
.sb-c2 { background: linear-gradient(135deg, #FF0000, #c70000); }
.sb-c3 { background: linear-gradient(135deg, #000, #333); }
.sb-c4 { background: linear-gradient(135deg, #6366F1, #4f46e5); }

.chart {
  position: relative;
  height: 82px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 10px 10px 6px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.bar {
  flex: 1;
  height: var(--h, 50%);
  background: linear-gradient(180deg, var(--accent-yellow), var(--accent-orange));
  border-radius: 2px 2px 1px 1px;
  opacity: .82;
}
.line-chart {
  position: absolute;
  left: 10px; right: 10px;
  top: 8px;
  height: 52px;
  width: auto;
}

.laptop-base {
  height: 8px;
  background: linear-gradient(180deg, #c9ccd5 0%, #b8bbc5 100%);
  border-radius: 0 0 14px 14px;
  margin: 0 8%;
  position: relative;
}
.laptop-base::after {
  content: "";
  position: absolute;
  left: 35%; right: 35%;
  top: 0; height: 3px;
  background: rgba(0,0,0,.1);
  border-radius: 0 0 6px 6px;
}

/* Floating bubbles */
.bubble {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem .85rem;
  background: #fff;
  border-radius: var(--r-full);
  box-shadow: var(--sh-lg);
  font-weight: 700;
  font-size: var(--fs-xs);
  color: var(--text);
  border: 1px solid var(--border);
}
.bubble-fb { top: 2%; left: 0%; animation: float-y 4.5s ease-in-out infinite; }
.bubble-yt { top: 12%; right: 0%; animation: float-y 5s ease-in-out infinite .5s; }
.bubble-tk { bottom: 22%; left: -2%; animation: float-y 5.5s ease-in-out infinite 1s; }
.bubble-cart { bottom: 4%; right: 4%; animation: float-y 4.8s ease-in-out infinite 1.5s; }

/* Consult card */
.consult-card {
  position: absolute;
  top: 35%;
  right: -4%;
  width: 220px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(227,27,35,.2);
  border-radius: var(--r-xl);
  padding: 0;
  box-shadow: var(--sh-xl);
  overflow: hidden;
  animation: float-x 7s ease-in-out infinite;
  transform: rotate(-2deg);
}
.consult-card img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.consult-icon {
  flex: none;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-red), #a80f15);
  border-radius: 10px;
  box-shadow: 0 8px 18px -6px rgba(227,27,35,.55);
}
.consult-top { font-size: .7rem; color: var(--muted); font-weight: 600; line-height: 1.2; }
.consult-price { font-size: .95rem; font-weight: 800; color: var(--text); margin: 2px 0; }
.consult-price strong { color: var(--accent-red); font-size: 1.1rem; }
.consult-sub { font-size: .65rem; color: var(--text-soft); line-height: 1.3; }

/* Offer row */
.offer-row {
  margin-top: 3rem;
  position: relative;
  z-index: 2;
}
.offer-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: linear-gradient(135deg, rgba(227,27,35,.04), rgba(255,210,28,.08));
  border: 1px solid rgba(227,27,35,.18);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-md);
}
.offer-ic {
  width: 44px; height: 44px;
  flex: none;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-red), var(--accent-orange));
  border-radius: var(--r-md);
  box-shadow: 0 10px 20px -8px rgba(227,27,35,.5);
}
.offer-main { font-size: var(--fs-md); font-weight: 700; color: var(--text); line-height: 1.35; flex: 1; min-width: 220px; }
.offer-price { color: var(--accent-red); }
.offer-sub { font-size: var(--fs-sm); color: var(--muted); }
@media (min-width: 768px) {
  .offer-card { padding: 1.25rem 1.75rem; }
}

/* ---------- 07. Trust strip ---------- */
.trust {
  padding: 2.5rem 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.trust::before, .trust::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,210,28,.12);
  filter: blur(60px);
}
.trust::before { top: -100px; left: -100px; }
.trust::after { bottom: -100px; right: -100px; background: rgba(227,27,35,.15); }

.trust-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .75rem 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  transition: background var(--t-fast), transform var(--t-fast);
}
.trust-item:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.trust-ic {
  width: 40px; height: 40px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: rgba(255,210,28,.18);
  color: var(--accent-yellow);
}
.trust-item h4 { font-size: var(--fs-sm); color: #fff; margin-bottom: .15rem; }
.trust-item p { font-size: var(--fs-xs); color: rgba(255,255,255,.7); line-height: 1.35; }
@media (max-width: 480px) {
  .trust-grid { grid-template-columns: 1fr; }
}

/* ---------- 07.5 Advertisement Section ---------- */
.advertisement-section {
  background: linear-gradient(135deg, rgba(11,45,137,.05) 0%, rgba(255,210,28,.05) 100%);
  padding: var(--sp-section) 0;
}
.ad-section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.ad-section-head h2 {
  font-size: var(--fs-lg);
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.ad-section-head p {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.ads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.ad-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: transform var(--t-normal), box-shadow var(--t-normal);
  background: var(--white);
}
.ad-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
}
.ad-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 480px) {
  .ads-grid { grid-template-columns: 1fr; gap: 1rem; }
  .ad-section-head h2 { font-size: var(--fs-md); }
}
@media (min-width: 768px) {
  .ads-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- 08. Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 1.1rem; }
}
@media (min-width: 768px) {
  .services-grid { gap: 1.5rem; }
}

.service-card {
  position: relative;
  padding: 1.75rem 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* Responsive padding for small screens */
@media (max-width: 480px) {
  .service-card {
    padding: 1.25rem 1.1rem 1rem;
  }
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow));
  transition: width var(--t-slow);
  border-radius: 3px 3px 0 0;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-5px);
  box-shadow: var(--sh-xl);
  border-color: transparent;
}
.service-card:hover::before { width: 100%; }

.card-num {
  position: absolute;
  top: 12px; right: 14px;
  font-size: .7rem;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: .05em;
  opacity: .55;
}

.service-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 10px 20px -10px currentColor;
  transition: transform var(--t-base);
}
.service-card:hover .service-ico { transform: scale(1.08) rotate(-2deg); }

.accent-fb { background: linear-gradient(135deg, var(--c-fb), #0f5ed4); color: var(--c-fb); }
.accent-yt { background: linear-gradient(135deg, var(--c-yt), #c70000); color: var(--c-yt); }
.accent-tk { background: linear-gradient(135deg, var(--c-tk), #2a2a2a); color: #000; }
.accent-dm { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: var(--primary); }
.accent-web { background: linear-gradient(135deg, var(--c-web), #4338ca); color: var(--c-web); }
.accent-ecom { background: linear-gradient(135deg, var(--c-ecom), #a80f15); color: var(--c-ecom); }
.accent-design { background: linear-gradient(135deg, var(--c-design), #e37a15); color: var(--c-design); }
.accent-support { background: linear-gradient(135deg, var(--c-support), #047857); color: var(--c-support); }

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  margin-bottom: 1.1rem;
  flex: 1;
  line-height: 1.65;
}
.accent-line {
  height: 2px;
  width: 40px;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow));
  border-radius: 2px;
  margin-bottom: 1.1rem;
  transition: width var(--t-base);
}
.service-card:hover .accent-line { width: 100%; }
.btn-select { align-self: flex-start; }

/* ---------- 09. Team Members ---------- */
.team-section { background: linear-gradient(180deg, #fff 0%, var(--surface) 100%); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; gap: 1.25rem; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}

.team-member-card {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  text-align: center;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 480px) {
  .team-member-card { padding: 1.5rem 1.2rem; }
}

.team-member-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow), var(--accent-red));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--t-slow);
}

.team-member-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: rgba(11, 45, 137, 0.15);
}

.team-member-card:hover::before { transform: scaleX(1); }

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: 0 10px 30px -10px rgba(11, 45, 137, 0.4);
  transition: transform var(--t-base);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.team-member-card:hover .team-avatar { transform: scale(1.08); }

.team-member-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.team-member-role {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.team-member-bio {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.team-member-contact {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  width: 100%;
}

.team-member-contact a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  transition: transform var(--t-fast), box-shadow var(--t-base);
  box-shadow: 0 4px 12px -4px rgba(11, 45, 137, 0.3);
}

.team-member-contact a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -6px rgba(11, 45, 137, 0.5);
}

/* ---------- 09.5. Projects Showcase ---------- */
.projects-section {
  background: linear-gradient(180deg, var(--surface) 0%, #fff 100%);
  position: relative;
  overflow: hidden;
}
.projects-section::before,
.projects-section::after {
  content: "";
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
  pointer-events: none;
}
.projects-section::before {
  background: var(--primary);
  top: -140px; right: -100px;
}
.projects-section::after {
  background: var(--accent-yellow);
  bottom: -140px; left: -100px;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 640px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.3rem;
  }
}
@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.6rem;
  }
  .projects-grid .project-card:first-child,
  .projects-grid .project-card:nth-child(2) {
    grid-column: span 1.5;
  }
  @supports not (grid-template-columns: repeat(3, minmax(0, 1fr))) {
    .projects-grid .project-card:first-child,
    .projects-grid .project-card:nth-child(2) {
      grid-column: span 1;
    }
  }
}
@media (min-width: 1280px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .projects-grid .project-card:first-child,
  .projects-grid .project-card:nth-child(2) {
    grid-column: span 1;
  }
}

.project-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  overflow: hidden;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}

@media (max-width: 480px) {
  .project-card { border-radius: var(--r-xl); }
}

.project-card:hover,
.project-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--sh-xl);
  border-color: rgba(11, 45, 137, 0.15);
}

/* Project media */
.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  width: 100%;
  background: var(--surface-2);
}

.project-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.project-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
  display: block;
}

.project-card:hover .project-img-wrap img {
  transform: scale(1.08);
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,45,137,0) 40%, rgba(11,45,137,.7) 100%);
  opacity: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  transition: opacity var(--t-base);
  pointer-events: none;
}
.project-card:hover .project-overlay,
.project-card:focus-within .project-overlay {
  opacity: 1;
  pointer-events: auto;
}

.project-view-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -8px rgba(11,45,137,.6);
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
  transform: translateY(8px);
}
.project-card:hover .project-view-btn {
  transform: translateY(0);
}
.project-view-btn:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Project badge with accent */
.project-badge {
  position: absolute;
  top: 14px; left: 14px;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .4rem .75rem;
  border-radius: var(--r-full);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.4);
  backdrop-filter: blur(4px);
}
.project-badge,
.project-badge.accent-fb,
.project-badge.accent-yt,
.project-badge.accent-tk,
.project-badge.accent-dm,
.project-badge.accent-web,
.project-badge.accent-ecom,
.project-badge.accent-design,
.project-badge.accent-support {
  color: #fff !important;
}
.project-badge span {
  font-size: .8rem;
  line-height: 1;
}
.project-badge small {
  font-size: .65rem;
  font-weight: 700;
  opacity: .95;
  line-height: 1;
  padding-left: .45rem;
  border-left: 1px solid rgba(255,255,255,.35);
}

/* Project body */
.project-body {
  padding: 1.3rem 1.25rem 1.35rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .7rem;
  position: relative;
}
@media (max-width: 480px) {
  .project-body {
    padding: 1.1rem 1rem 1.15rem;
  }
}

.project-body::before {
  content: "";
  position: absolute;
  top: 0; left: 1.25rem; right: 1.25rem;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow), var(--accent-red));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.project-card:hover .project-body::before {
  transform: scaleX(1);
}

.project-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.35;
  margin-top: .3rem;
}

.project-desc {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
}

/* Tags */
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  margin-top: .15rem;
}
.project-tag {
  display: inline-flex;
  align-items: center;
  padding: .28rem .65rem;
  background: linear-gradient(135deg, rgba(11,45,137,.06), rgba(255,210,28,.1));
  border: 1px solid rgba(11,45,137,.1);
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--r-full);
  line-height: 1.2;
}

/* Actions */
.project-actions {
  margin-top: .15rem;
  display: flex;
}
.btn-project-contact {
  width: 100%;
  justify-content: center;
  gap: .4rem;
}

/* ---------- 10. Why choose us ---------- */
.why-container { position: relative; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(5, 1fr); gap: 1rem; }
  .why-grid .why-card:first-child { grid-column: span 2; }
  .why-grid .why-card:last-child { grid-column: span 2; }
}

.why-card {
  padding: 1.5rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.why-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow), var(--accent-red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow);
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.why-card:hover::before { transform: scaleX(1); }

.why-ic {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(11,45,137,.1), rgba(255,210,28,.18));
  color: var(--primary);
  margin-bottom: 1rem;
}
.why-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.why-card p {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.65;
}

/* ---------- 10. Process ---------- */
.process-wrap {
  position: relative;
}
.process-line {
  display: none;
  position: absolute;
  left: 5%; right: 5%;
  top: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-yellow), var(--accent-red));
  border-radius: 2px;
  opacity: .35;
}
@media (min-width: 1024px) { .process-line { display: block; } }

.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
}
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }

.process-card {
  position: relative;
  padding: 1.5rem 1.4rem 1.4rem;
  background: linear-gradient(180deg, var(--white), var(--surface));
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.process-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.p-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  box-shadow: 0 10px 24px -10px rgba(11,45,137,.65);
  margin-bottom: 1rem;
  position: relative;
}
.p-num::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 16px;
  border: 1px dashed rgba(255,210,28,.5);
}
.process-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .45rem;
}
.process-card p {
  font-size: var(--fs-sm);
  color: var(--text-soft);
  line-height: 1.65;
}

/* ---------- 11. CTA Banner ---------- */
.cta-banner {
  position: relative;
  padding: var(--sp-section) 0;
  overflow: hidden;
  isolation: isolate;
}
.cta-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 60%, #041238 100%);
  z-index: -1;
  overflow: hidden;
}
.cta-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.cta-blob.c1 { width: 480px; height: 480px; background: rgba(255,210,28,.15); top: -180px; right: -120px; }
.cta-blob.c2 { width: 380px; height: 380px; background: rgba(227,27,35,.2); bottom: -160px; left: -140px; }
.cta-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
}

.cta-inner {
  text-align: center;
  color: #fff;
  max-width: 820px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-size: var(--fs-3xl);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #fff 0%, var(--accent-yellow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cta-inner p {
  font-size: var(--fs-md);
  color: rgba(255,255,255,.8);
  margin-bottom: 2rem;
}

/* Responsive CTA inner for small screens */
@media (max-width: 480px) {
  .cta-inner h2 {
    margin-bottom: 0.75rem;
  }
  .cta-inner p {
    font-size: var(--fs-sm);
    margin-bottom: 1.5rem;
  }
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .9rem;
}
.cta-actions .btn {
  min-width: 220px;
}

/* Responsive CTA buttons for small screens */
@media (max-width: 480px) {
  .cta-actions {
    flex-direction: column;
    gap: 0.6rem;
  }
  .cta-actions .btn {
    width: 100%;
    min-width: unset;
    max-width: 100%;
    font-size: 0.85rem;
    padding: 0.75rem 1.1rem;
  }
}
.cta-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, var(--accent-orange) 100%);
  color: var(--primary-dark);
  box-shadow: 0 14px 34px -12px rgba(255,210,28,.7);
}
.cta-actions .btn-primary:hover {
  box-shadow: 0 20px 40px -12px rgba(255,210,28,.85);
}

/* ---------- 12. FAQ ---------- */
.faq-container { position: relative; }
.faq-list {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  max-width: 880px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  overflow: hidden;
  transition: box-shadow var(--t-base), border-color var(--t-base);
}
.faq-item[open] {
  border-color: rgba(11,45,137,.25);
  box-shadow: var(--sh-lg);
}
.faq-item > summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--text);
  user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary span { flex: 1; line-height: 1.45; }
.faq-item > summary .chev {
  flex: none;
  color: var(--primary);
  transition: transform var(--t-base);
}
.faq-item[open] > summary .chev { transform: rotate(180deg); color: var(--accent-red); }

.faq-content {
  padding: 0 1.3rem 1.3rem;
  color: var(--text-soft);
  font-size: var(--fs-sm);
  line-height: 1.75;
  animation: slideDown .3s ease-out;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- 13. Contact / Form ---------- */
.contact-section {
  padding-bottom: calc(var(--sp-section) + 4rem);
}
.contact-wrap {
  display: grid;
  gap: 1.5rem;
  max-width: 1140px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-wrap { gap: 1.75rem; }
}
@media (min-width: 1024px) {
  .contact-wrap { grid-template-columns: 42% 58%; gap: 2rem; }
}

/* Info panel */
.contact-info {
  background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 2rem 1.5rem;
  border-radius: var(--r-2xl);
  position: relative;
  overflow: hidden;
  box-shadow: var(--sh-xl);
}
@media (max-width: 480px) {
  .contact-info { padding: 1.5rem 1.2rem; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contact-info { padding: 1.75rem 1.4rem; }
}
@media (min-width: 768px) {
  .contact-info { padding: 2.5rem 2rem; }
}
.contact-info::before, .contact-info::after {
  content: "";
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  filter: blur(70px);
}
.contact-info::before { background: rgba(255,210,28,.18); top: -80px; right: -60px; }
.contact-info::after  { background: rgba(227,27,35,.18); bottom: -80px; left: -60px; }

.contact-info > * { position: relative; z-index: 1; }

/* Google Map */
.contact-map {
  margin: 1.5rem 0;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
}
.contact-map iframe {
  display: block;
  width: 100%;
}
.contact-info h3 {
  font-size: var(--fs-xl);
  color: var(--accent-yellow);
  margin-bottom: .5rem;
}
.contact-lead {
  color: rgba(255,255,255,.8);
  margin-bottom: 1.75rem;
  font-size: var(--fs-sm);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 1.75rem;
}
.info-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
}
.info-ic {
  flex: none;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: rgba(255,210,28,.18);
  color: var(--accent-yellow);
}
.info-list strong {
  display: block;
  color: #fff;
  font-size: var(--fs-sm);
  margin-bottom: .1rem;
}
.info-list p, .info-list a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.info-link:hover { color: var(--accent-yellow); text-decoration: underline; }

.management {
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  margin-bottom: 1.5rem;
}
.management strong {
  display: block;
  color: var(--accent-yellow);
  font-size: var(--fs-xs);
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: .4rem;
}
.management ul {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.management li {
  color: rgba(255,255,255,.9);
  font-size: var(--fs-sm);
  font-weight: 600;
}

.info-wa-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem 1rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  border-radius: var(--r-lg);
  color: #fff;
  box-shadow: 0 16px 34px -14px rgba(37,211,102,.7);
  align-items: center;
}
.info-wa-card > svg { color: #fff; grid-row: span 2; }
.info-wa-card h4 { color: #fff; font-size: var(--fs-sm); }
.info-wa-card p { color: rgba(255,255,255,.9); font-size: var(--fs-xs); line-height: 1.4; }
.info-wa-card .btn {
  grid-column: 1 / -1;
  margin-top: .4rem;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.3);
  color: #fff;
  box-shadow: none;
}
.info-wa-card .btn:hover {
  background: var(--white);
  color: var(--wa-green-dark);
  transform: none;
  box-shadow: none;
}

/* Form panel */
.contact-form-card {
  background: var(--white);
  padding: 1.75rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  box-shadow: var(--sh-lg);
}
@media (max-width: 480px) {
  .contact-form-card { padding: 1.25rem 1rem; }
}
@media (min-width: 480px) and (max-width: 767px) {
  .contact-form-card { padding: 1.5rem 1.2rem; }
}
@media (min-width: 768px) {
  .contact-form-card { padding: 2.25rem 2rem; }
}

#orderForm { display: flex; flex-direction: column; gap: 1.1rem; }

.form-toast {
  display: none;
  align-items: center;
  gap: .6rem;
  padding: .8rem 1rem;
  border-radius: var(--r-md);
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: .2rem;
  animation: slideDown .25s ease-out;
}
.form-toast.show { display: inline-flex; }
.form-toast.success {
  background: rgba(37,211,102,.1);
  color: var(--wa-green-dark);
  border: 1px solid rgba(37,211,102,.25);
}
.form-toast.error {
  background: rgba(227,27,35,.08);
  color: var(--accent-red);
  border: 1px solid rgba(227,27,35,.2);
}

.field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.field label {
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--text);
}
.field .req { color: var(--accent-red); }
.field .opt { color: var(--muted); font-weight: 500; font-size: var(--fs-xs); margin-left: 2px; }

.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
  font-size: var(--fs-sm);
}
.field textarea { resize: vertical; min-height: 92px; font-family: inherit; }
.field input:hover, .field select:hover, .field textarea:hover {
  border-color: rgba(11,45,137,.25);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11,45,137,.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea {
  border-color: var(--accent-red);
  background: rgba(227,27,35,.03);
  box-shadow: 0 0 0 3px rgba(227,27,35,.1);
}

.error {
  display: none;
  color: var(--accent-red);
  font-size: var(--fs-xs);
  font-weight: 600;
}
.field.invalid .error { display: block; }

.btn-submit {
  width: 100%;
  padding: 1rem 1.4rem;
  font-size: var(--fs-md);
  background: linear-gradient(135deg, var(--wa-green) 0%, var(--wa-green-dark) 100%);
  color: #fff;
  box-shadow: 0 14px 34px -14px rgba(37,211,102,.7);
  margin-top: .4rem;
}
.btn-submit:hover, .btn-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(37,211,102,.85);
}

/* ---------- 14. Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--primary-dark) 0%, #04133b 100%);
  color: rgba(255,255,255,.85);
  padding-top: var(--sp-section);
  position: relative;
  overflow: hidden;
}
.site-footer::before, .site-footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .3;
}
.site-footer::before { width: 380px; height: 380px; background: var(--accent-yellow); top: -160px; right: -100px; opacity: .1; }
.site-footer::after  { width: 340px; height: 340px; background: var(--accent-red); bottom: -140px; left: -100px; opacity: .08; }

.footer-grid {
  display: grid;
  gap: 2.25rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
}

.brand-footer .brand-bn { color: var(--accent-yellow); }
.brand-footer .brand-en { color: rgba(255,255,255,.5); }
.tagline {
  font-size: var(--fs-md);
  font-weight: 700;
  color: var(--accent-yellow);
  margin: 1rem 0 .5rem;
}
.foot-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.footer-wa-btn { padding: .75rem 1.1rem; font-size: var(--fs-sm); }

.footer-col h4 {
  font-size: var(--fs-sm);
  color: var(--white);
  font-weight: 700;
  margin-bottom: 1.1rem;
  letter-spacing: .02em;
  position: relative;
  padding-bottom: .6rem;
}
.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-red));
  border-radius: 2px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}
.footer-col ul a {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast), padding-left var(--t-fast);
  display: inline-flex;
  align-items: center;
}
.footer-col ul a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  margin-right: 0;
  transition: width var(--t-fast), margin-right var(--t-fast);
  border-radius: 2px;
}
.footer-col ul a:hover, .footer-col ul a:focus-visible {
  color: var(--accent-yellow);
}
.footer-col ul a:hover::before {
  width: 14px;
  margin-right: .45rem;
}

.foot-contact li {
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  color: rgba(255,255,255,.7);
  font-size: var(--fs-sm);
  line-height: 1.55;
}
.foot-contact svg { flex: none; color: var(--accent-yellow); margin-top: 2px; }
.foot-contact a { color: rgba(255,255,255,.7); }
.foot-contact a:hover { color: var(--accent-yellow); text-decoration: underline; }

.foot-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.2rem 0;
  background: rgba(4,19,59,.4);
  position: relative;
  z-index: 1;
}
.foot-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: .75rem;
  text-align: center;
}
.foot-bottom p {
  font-size: var(--fs-xs);
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ---------- 15. Floating WhatsApp ---------- */
.floating-wa {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  width: 58px; height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--wa-green), var(--wa-green-dark));
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 14px 30px -8px rgba(37,211,102,.7);
  z-index: 45;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
  padding-bottom: env(safe-area-inset-bottom, 0);
}
.floating-wa:hover {
  transform: scale(1.08);
  box-shadow: 0 18px 40px -6px rgba(37,211,102,.85);
}
.wa-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.4);
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
.wa-tooltip {
  position: absolute;
  right: calc(100% + .8rem);
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: var(--text);
  font-size: var(--fs-xs);
  font-weight: 700;
  padding: .5rem .85rem;
  border-radius: var(--r-full);
  box-shadow: var(--sh-lg);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
  border: 1px solid var(--border);
}
.wa-tooltip::after {
  content: "";
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
}
.floating-wa:hover .wa-tooltip,
.floating-wa:focus-visible .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(-4px);
}
@media (min-width: 768px) {
  .floating-wa {
    right: 1.5rem;
    bottom: 1.5rem;
    width: 64px; height: 64px;
  }
}
@media (hover: none) {
  .wa-tooltip { display: none; }
}

/* ---------- 16. Reveal (IntersectionObserver) ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms cubic-bezier(.2,.7,.2,1),
              transform 720ms cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger for grid cards — delays added via script */
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none; opacity: 1; transform: none; }
  .hero-badge .dot { animation: none; }
  .wa-pulse { animation: none; }
  .bubble, .laptop-card, .consult-card { animation: none !important; }
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 17. Keyframes ---------- */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(37,211,102,.25); }
  50%      { box-shadow: 0 0 0 6px rgba(37,211,102,.08); }
}
@keyframes waPulse {
  0%   { transform: scale(.95); opacity: .8; }
  80%  { transform: scale(1.8);  opacity: 0; }
  100% { transform: scale(1.8);  opacity: 0; }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes float-x {
  0%, 100% { transform: translateX(0) rotate(-2deg); }
  50%      { transform: translateX(-10px) rotate(-3deg); }
}
/* bubble-fb is absolute, override transform origin */
.bubble-fb { animation-name: float-y-origin; }
.bubble-yt { animation-name: float-y-origin; }
.bubble-tk { animation-name: float-y-origin; }
.bubble-cart { animation-name: float-y-origin; }
@keyframes float-y-origin {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}

/* ---------- 18. Misc helpers ---------- */
@media (max-width: 640px) {
  .hero-stats { gap: .9rem; padding: .85rem 1rem; }
  .stat-num { font-size: 1.2rem; }
  .consult-card { width: 175px; padding: .75rem .85rem; }
  .consult-price strong { font-size: 1rem; }
}

@media (min-width: 1920px) {
  .container { max-width: 1320px; }
}
