/* =========================================================
   TechCare IT Support — Pure CSS (no frameworks)
   ========================================================= */

/* ---------- Variables ---------- */
:root {
  --emerald: #10b981;
  --emerald-dark: #059669;
  --teal: #14b8a6;
  --teal-dark: #0d9488;
  --green: #22c55e;
  --amber: #f59e0b;
  --orange: #f97316;
  --orange-dark: #d97706;

  --slate-950: #020617;
  --slate-900: #0f172a;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 30px rgba(15, 23, 42, 0.12);
  --shadow-emerald: 0 10px 25px rgba(16, 185, 129, 0.3);
  --shadow-amber: 0 10px 25px rgba(245, 158, 11, 0.35);

  --container: 1200px;
  --font: 'Poppins', Arial, sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
/* Make sure the HTML [hidden] attribute always wins over any display rule */
[hidden] { display: none !important; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font);
  color: var(--slate-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 100%; }

/* ---------- Helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.text-emerald { color: var(--emerald); }
.text-white { color: var(--white) !important; }
.text-light { color: var(--slate-300); }
.gradient-text {
  background: linear-gradient(to right, var(--emerald), var(--teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.ic { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
  white-space: nowrap;
  line-height: 1;
}
.btn .ic { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(to right, var(--emerald), var(--teal));
  color: var(--white);
  box-shadow: var(--shadow-emerald);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(16,185,129,.4); }
.btn-ghost {
  background: rgba(255,255,255,.06);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.btn-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 999px;
  background: linear-gradient(to right, var(--amber), var(--orange));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-amber);
  transition: transform 0.25s, box-shadow 0.25s;
}
.btn-call:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(245,158,11,.45); }
.btn-call .ic { width: 16px; height: 16px; }
.btn-white {
  background: var(--white);
  color: var(--emerald-dark);
  font-weight: 700;
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-outline-white {
  background: rgba(255,255,255,.1);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.4);
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.btn-outline-white:hover { background: rgba(255,255,255,.2); transform: translateY(-2px); }
.btn-light {
  background: rgba(255,255,255,.1);
  color: var(--white);
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
}
.btn-light:hover { background: rgba(255,255,255,.2); }
.btn-block { width: 100%; }
@media (min-width: 640px) { .btn-call { display: inline-flex; } }

/* ---------- Badges / Section heads ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--emerald); }
.badge-light { background: rgba(16,185,129,.1); color: #6ee7b7; border: 1px solid rgba(52,211,153,.3); }

.section-head { max-width: 640px; margin: 0 auto 3.5rem; text-align: center; }
.section-head h2, .why-content h2, .about-content h2 {
  margin-top: 1rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--slate-900);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
@media (min-width: 640px) { .section-head h2, .why-content h2, .about-content h2 { font-size: 2.25rem; } }
.section-sub { margin-top: 1rem; color: var(--slate-600); font-size: 1rem; }
.why-content .section-sub, .about-content p { margin-top: 1rem; }

/* ---------- Top Bar ---------- */
.topbar { display: none; background: var(--slate-900); color: var(--slate-300); }
@media (min-width: 768px) { .topbar { display: block; } }
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1rem; font-size: 0.85rem;
}
@media (min-width: 1024px) { .topbar-inner { padding: 0.5rem 2rem; } }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1.5rem; }
.topbar-link { display: inline-flex; align-items: center; gap: 0.5rem; transition: color .2s; }
.topbar-link:hover { color: var(--emerald); }
.topbar-link .ic { width: 16px; height: 16px; color: var(--emerald); }
.topbar-socials { display: flex; align-items: center; gap: 0.75rem; }
.topbar-socials a { color: var(--slate-400); transition: color .2s; }
.topbar-socials a:hover { color: var(--emerald); }
.topbar-socials .ic { width: 16px; height: 16px; }

/* ---------- Navbar ---------- */
.navbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s, background .3s;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled { background: rgba(255,255,255,.95); box-shadow: 0 4px 20px rgba(15,23,42,.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; }
@media (min-width: 1024px) { .nav-inner { padding: 0.75rem 2rem; } }

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-badge {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--teal-dark));
  color: var(--white); box-shadow: var(--shadow-emerald);
}
.logo-badge .ic { width: 24px; height: 24px; }
.logo-text { line-height: 1.1; }
.logo-name { display: block; font-size: 1.125rem; font-weight: 800; color: var(--slate-900); letter-spacing: -0.02em; }
.logo-sub { display: block; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.18em; color: var(--slate-500); }

.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  display: block; padding: 0.5rem 0.875rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--slate-700);
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: #ecfdf5; color: #047857; }

.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border: 1px solid var(--slate-200);
  border-radius: 8px; color: var(--slate-700);
}
.menu-toggle .ic { width: 20px; height: 20px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }

/* mobile menu */
.mobile-menu { display: none; border-top: 1px solid var(--slate-100); background: var(--white); }
.mobile-menu.open { display: block; }
.mobile-menu ul { padding: 0.75rem 1rem; }
.mobile-menu li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0.75rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600; color: var(--slate-700);
}
.mobile-menu li a:hover { background: #ecfdf5; color: #047857; }
.mobile-menu li a::after { content: '›'; color: var(--slate-400); }
.mobile-menu .btn-call { display: flex; justify-content: center; margin-top: 0.5rem; width: 100%; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--slate-900); color: var(--white); }
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(70px); }
.blob-1 { width: 320px; height: 320px; left: -96px; top: -96px; background: rgba(16,185,129,.3); animation: blob 14s ease-in-out infinite; }
.blob-2 { width: 384px; height: 384px; right: 0; top: 128px; background: rgba(20,184,166,.2); animation: blob 14s ease-in-out infinite 3s; }
.blob-3 { width: 288px; height: 288px; bottom: 0; left: 33%; background: rgba(6,182,212,.2); animation: blob 14s ease-in-out infinite 6s; }
.hero-grid {
  position: absolute; inset: 0; opacity: .04;
  background-image: linear-gradient(rgba(255,255,255,.6) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.6) 1px, transparent 1px);
  background-size: 44px 44px;
}
.hero-inner {
  position: relative; display: grid; gap: 3rem; align-items: center;
  padding: 4rem 1rem 5rem;
}
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; gap: 2rem; padding: 6rem 2rem 6rem; }
}
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: 999px;
  border: 1px solid rgba(52,211,153,.3); background: rgba(16,185,129,.1);
  color: #6ee7b7; font-size: 0.75rem; font-weight: 600;
}
.dot-ping { position: relative; display: inline-flex; width: 8px; height: 8px; }
.dot-ping .dot { position: absolute; inset: 0; background: var(--emerald); border-radius: 50%; }
.dot-ping::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--emerald); opacity: .75; animation: ping 1.5s cubic-bezier(0,0,.2,1) infinite;
}
.hero h1 { margin-top: 1.25rem; font-size: 2.25rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.02em; }
@media (min-width: 640px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero-desc { margin-top: 1.25rem; max-width: 560px; font-size: 1.125rem; color: var(--slate-300); }
.hero-cta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust { margin-top: 2.25rem; display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; }
.stars { display: flex; align-items: center; gap: 0.25rem; }
.stars .star { width: 20px; height: 20px; color: var(--amber); }
.stars span { margin-left: 0.5rem; font-size: 0.875rem; color: var(--slate-300); }
.divider-v { width: 1px; height: 24px; background: rgba(255,255,255,.15); }
.hero-trust-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--slate-300); }
.hero-trust-item .ic { width: 20px; height: 20px; }

.hero-media { position: relative; }
.hero-img-wrap { position: relative; overflow: hidden; border-radius: var(--radius-xl); border: 1px solid rgba(255,255,255,.1); box-shadow: 0 25px 50px rgba(6,78,59,.4); }
.hero-img-wrap img { width: 100%; height: auto; aspect-ratio: 7/5; object-fit: cover; }
.hero-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,23,42,.4), transparent); }
.float-card {
  position: absolute; display: none; align-items: center; gap: 0.75rem;
  background: var(--white); padding: 1rem; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); color: var(--slate-900);
}
@media (min-width: 640px) { .float-card { display: flex; } }
.float-card-1 { left: -1rem; top: 2.5rem; animation: floatY 5s ease-in-out infinite; }
.float-card-2 { right: -0.75rem; bottom: -1.25rem; animation: floatY 5s ease-in-out infinite 1.5s; }
.fc-icon { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; }
.fc-icon .ic { width: 24px; height: 24px; }
.fc-emerald { background: #d1fae5; color: var(--emerald-dark); }
.fc-amber { background: #fef3c7; color: var(--orange-dark); }
.fc-big { font-size: 1.25rem; font-weight: 800; line-height: 1; }
.fc-small { font-size: 0.75rem; color: var(--slate-500); }
.hero-wave { position: relative; }
.hero-wave svg { display: block; width: 100%; height: 50px; }

/* ---------- Stats ---------- */
.stats { background: var(--white); padding: 0 0 1rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: -1rem; }
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-card {
  text-align: center; padding: 1.5rem; border-radius: var(--radius-lg);
  border: 1px solid var(--slate-100); background: var(--white); box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(16,185,129,.1); }
.stat-ic {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; margin: 0 auto 0.75rem; border-radius: 12px;
  background: linear-gradient(135deg, var(--emerald), var(--teal-dark)); color: var(--white);
}
.stat-ic .ic { width: 24px; height: 24px; }
.stat-val { font-size: 1.875rem; font-weight: 800; color: var(--slate-900); }
.stat-val .suffix, .stat-val[data-suffix]::after { color: var(--emerald); }
.stat-label { margin-top: 0.25rem; font-size: 0.875rem; color: var(--slate-500); font-weight: 500; }

/* ---------- Services ---------- */
.services { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 1024px) { .services { padding: 7rem 0; } }
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  position: relative; overflow: hidden; padding: 1.75rem;
  border-radius: var(--radius-lg); background: var(--white);
  border: 1px solid var(--slate-100); box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: #a7f3d0; }
.glow { position: absolute; right: -2.5rem; top: -2.5rem; width: 112px; height: 112px; border-radius: 50%; opacity: 0; filter: blur(40px); transition: opacity .3s; }
.service-card:hover .glow { opacity: .2; }
.service-card[data-grad="emerald-teal"] .glow { background: linear-gradient(135deg, var(--emerald), var(--teal)); }
.service-card[data-grad="teal-cyan"] .glow { background: linear-gradient(135deg, var(--teal), #06b6d4); }
.service-card[data-grad="amber-orange"] .glow { background: linear-gradient(135deg, var(--amber), var(--orange)); }
.service-card[data-grad="emerald-green"] .glow { background: linear-gradient(135deg, var(--emerald), var(--green)); }
.service-card[data-grad="teal-emerald"] .glow { background: linear-gradient(135deg, var(--teal), var(--emerald-dark)); }
.service-card[data-grad="orange-amber"] .glow { background: linear-gradient(135deg, var(--orange), var(--amber)); }

.service-ic {
  position: relative; display: flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; margin-bottom: 1.25rem; border-radius: 16px;
  color: var(--white); box-shadow: var(--shadow);
}
.service-ic .ic { width: 28px; height: 28px; }
.grad-emerald-teal { background: linear-gradient(135deg, var(--emerald), var(--teal)); }
.grad-teal-cyan { background: linear-gradient(135deg, var(--teal), #06b6d4); }
.grad-amber-orange { background: linear-gradient(135deg, var(--amber), var(--orange)); }
.grad-emerald-green { background: linear-gradient(135deg, var(--emerald), var(--green)); }
.grad-teal-emerald { background: linear-gradient(135deg, var(--teal), var(--emerald-dark)); }
.grad-orange-amber { background: linear-gradient(135deg, var(--orange), var(--amber)); }

.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--slate-900); }
.service-card p { margin-top: 0.75rem; font-size: 0.875rem; color: var(--slate-600); line-height: 1.6; }
.service-points { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-points li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--slate-700); }
.service-points .ic { width: 16px; height: 16px; color: var(--emerald); flex-shrink: 0; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.375rem;
  margin-top: 1.5rem; font-size: 0.875rem; font-weight: 600; color: var(--emerald-dark);
  transition: gap .2s;
}
.service-link .ic { width: 16px; height: 16px; }
.service-card:hover .service-link { gap: 0.625rem; }

/* ---------- Why Us ---------- */
.why-us { background: var(--white); padding: 5rem 0; }
@media (min-width: 1024px) { .why-us { padding: 7rem 0; } }
.why-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.why-media { position: relative; }
.img-frame { overflow: hidden; border-radius: var(--radius-xl); box-shadow: 0 25px 50px rgba(15,23,42,.1); }
.img-frame img { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }
.img-frame-dark { border: 1px solid rgba(255,255,255,.1); box-shadow: 0 25px 50px rgba(0,0,0,.4); }
.exp-badge {
  position: absolute; right: -1rem; bottom: -1.5rem; display: none;
  padding: 1.5rem; border-radius: var(--radius-lg); color: var(--white);
  background: linear-gradient(135deg, var(--emerald), var(--teal-dark)); box-shadow: var(--shadow-lg);
}
@media (min-width: 640px) { .exp-badge { display: block; } }
.exp-big { font-size: 2.25rem; font-weight: 800; line-height: 1; }
.exp-small { margin-top: 0.25rem; font-size: 0.875rem; color: #ecfdf5; }
.why-deco { position: absolute; left: -1.25rem; top: -1.25rem; width: 96px; height: 96px; border-radius: var(--radius-lg); background: #d1fae5; z-index: -1; }

.features-grid { margin-top: 2rem; display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
.feature { display: flex; gap: 1rem; padding: 0.75rem; border-radius: var(--radius); transition: background .2s; }
.feature:hover { background: var(--slate-50); }
.feature-ic { display: flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: #d1fae5; color: var(--emerald-dark); flex-shrink: 0; }
.feature-ic .ic { width: 20px; height: 20px; }
.feature h4 { font-weight: 600; color: var(--slate-900); font-size: 0.95rem; }
.feature p { margin-top: 0.125rem; font-size: 0.875rem; color: var(--slate-600); }
.why-content .btn { margin-top: 2rem; }

/* ---------- About ---------- */
.about { position: relative; overflow: hidden; background: var(--slate-900); color: var(--white); padding: 5rem 0; }
@media (min-width: 1024px) { .about { padding: 7rem 0; } }
.about-bg { position: absolute; inset: 0; pointer-events: none; }
.about-blob-1 { position: absolute; right: -5rem; top: 2.5rem; width: 288px; height: 288px; border-radius: 50%; background: rgba(16,185,129,.15); filter: blur(70px); }
.about-blob-2 { position: absolute; left: -5rem; bottom: 0; width: 288px; height: 288px; border-radius: 50%; background: rgba(20,184,166,.1); filter: blur(70px); }
.about-grid { position: relative; display: grid; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.about-content h2 { color: var(--white); }
.about-list { margin-top: 1.75rem; display: grid; gap: 0.75rem; }
@media (min-width: 640px) { .about-list { grid-template-columns: repeat(2, 1fr); } }
.about-list span { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--slate-200); }
.about-list .ic { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; }
.about-content .btn { margin-top: 2rem; }
.about-media { position: relative; }
.sat-badge {
  position: absolute; left: -1rem; bottom: -1.25rem; display: none;
  background: var(--white); padding: 1.25rem; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); color: var(--slate-900);
}
@media (min-width: 640px) { .sat-badge { display: flex; align-items: center; gap: 0.75rem; } }
.sat-ic { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: #fef3c7; color: var(--orange-dark); }
.sat-ic .ic { width: 24px; height: 24px; }
.sat-big { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.sat-small { font-size: 0.75rem; color: var(--slate-500); }

/* ---------- Process ---------- */
.process { background: var(--slate-50); padding: 5rem 0; }
@media (min-width: 1024px) { .process { padding: 7rem 0; } }
.process-grid { position: relative; display: grid; gap: 2rem; }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-line { display: none; }
@media (min-width: 1024px) {
  .process-line { display: block; position: absolute; left: 0; right: 0; top: 48px; height: 2px; background: linear-gradient(to right, #a7f3d0, #6ee7b7, #a7f3d0); }
}
.process-step { text-align: center; position: relative; }
.process-ring { position: relative; width: 96px; height: 96px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.process-ring-bg { position: absolute; inset: 0; border-radius: 50%; background: #d1fae5; }
.process-ic { position: relative; display: flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--emerald), var(--teal-dark)); color: var(--white); box-shadow: var(--shadow); }
.process-ic .ic { width: 28px; height: 28px; }
.step-num { position: absolute; right: -4px; top: -4px; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: var(--amber); color: var(--white); font-size: 0.75rem; font-weight: 700; box-shadow: var(--shadow); }
.process-step h4 { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 700; color: var(--slate-900); }
.process-step p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-600); }

/* ---------- CTA ---------- */
.cta-section { background: var(--white); padding-bottom: 5rem; }
.cta-banner { position: relative; overflow: hidden; padding: 3rem 1.5rem; border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--emerald-dark), var(--teal-dark)); text-align: center; box-shadow: var(--shadow-lg); }
@media (min-width: 1024px) { .cta-banner { padding: 3.5rem 3rem; } }
.cta-glow { position: absolute; border-radius: 50%; background: rgba(255,255,255,.1); filter: blur(40px); }
.cta-glow-1 { right: -2.5rem; top: -2.5rem; width: 160px; height: 160px; }
.cta-glow-2 { bottom: -3rem; left: -2.5rem; width: 192px; height: 192px; }
.cta-banner h3 { position: relative; font-size: 1.5rem; font-weight: 700; color: var(--white); }
@media (min-width: 640px) { .cta-banner h3 { font-size: 1.875rem; } }
.cta-banner p { position: relative; max-width: 540px; margin: 0.75rem auto 0; color: #ecfdf5; }
.cta-actions { position: relative; margin-top: 1.75rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ---------- Contact ---------- */
.contact { background: var(--white); padding: 5rem 0; }
@media (min-width: 1024px) { .contact { padding: 7rem 0; } }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 3fr; } }
.contact-cards { display: grid; gap: 1rem; }
@media (min-width: 640px) { .contact-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card {
  display: flex; align-items: center; gap: 1rem; padding: 1rem;
  border-radius: var(--radius-lg); border: 1px solid var(--slate-100); background: var(--white);
  box-shadow: var(--shadow-sm); transition: transform .25s, border-color .25s, box-shadow .25s;
}
.contact-card:hover { transform: translateY(-2px); border-color: #a7f3d0; box-shadow: 0 10px 25px rgba(16,185,129,.1); }
.cc-ic { display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: #d1fae5; color: var(--emerald-dark); flex-shrink: 0; }
.cc-ic .ic { width: 24px; height: 24px; }
.cc-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-400); }
.cc-value { font-weight: 600; color: var(--slate-900); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.map-wrap { margin-top: 1rem; overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--slate-100); box-shadow: var(--shadow-sm); }
.map-wrap iframe { width: 100%; height: 224px; border: 0; }
.hours-note { margin-top: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; border-radius: var(--radius-lg); background: #ecfdf5; color: #065f46; font-size: 0.875rem; }
.hours-note .ic { width: 20px; height: 20px; color: var(--emerald-dark); flex-shrink: 0; margin-top: 2px; }

.contact-right {}
.contact-form { border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--slate-900), var(--slate-800)); padding: 1.75rem; box-shadow: var(--shadow-lg); }
@media (min-width: 640px) { .contact-form { padding: 2.25rem; } }
.contact-form h3 { color: var(--white); font-size: 1.5rem; font-weight: 700; }
.form-sub { margin-top: 0.5rem; font-size: 0.875rem; color: var(--slate-300); }
.form-row { display: grid; gap: 1rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field { display: block; margin-top: 1rem; }
.form-row .field { margin-top: 0; }
.field span { display: block; margin-bottom: 0.375rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--slate-300); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  color: var(--white); outline: none; transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: var(--slate-400); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--emerald); background: rgba(255,255,255,.1); box-shadow: 0 0 0 3px rgba(16,185,129,.25); }
.field select option { color: var(--slate-900); }
.field textarea { resize: none; }
.contact-form .btn { margin-top: 1.5rem; }
.form-note { margin-top: 0.75rem; text-align: center; font-size: 0.75rem; color: var(--slate-400); }

.form-success {
  border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  padding: 2.5rem 1.75rem; box-shadow: var(--shadow-lg); text-align: center; color: var(--white);
  min-height: 420px; display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.success-ic { display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; margin-bottom: 1.25rem; border-radius: 50%; background: rgba(16,185,129,.2); color: #6ee7b7; }
.success-ic .ic { width: 44px; height: 44px; }
.form-success h3 { font-size: 1.5rem; font-weight: 700; }
.form-success p { margin-top: 0.75rem; max-width: 420px; color: var(--slate-300); font-size: 0.9rem; }
.form-success a { color: #6ee7b7; font-weight: 600; text-decoration: underline; }
.form-success .btn { margin-top: 1.75rem; }

/* ---------- Footer ---------- */
.footer { background: var(--slate-950); color: var(--slate-400); }
.footer-grid { display: grid; gap: 2.5rem; padding: 3.5rem 1rem 3rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; padding: 3.5rem 1rem 3rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; padding: 3.5rem 2rem 3rem; } }
.footer-brand .logo { margin-bottom: 1rem; }
.footer-desc { font-size: 0.875rem; line-height: 1.7; }
.footer-socials { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer-socials a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,.05); color: var(--slate-400); transition: background .2s, color .2s; }
.footer-socials a:hover { background: var(--emerald); color: var(--white); }
.footer-socials .ic { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--white); }
.footer-links { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.625rem; font-size: 0.875rem; }
.footer-links a { display: inline-flex; align-items: center; gap: 0.5rem; transition: color .2s; }
.footer-links a::before { content: '›'; color: var(--emerald); }
.footer-links a:hover { color: var(--emerald); }
.footer-contact { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.875rem; }
.footer-contact li, .footer-contact a { display: flex; align-items: flex-start; gap: 0.75rem; }
.footer-contact a:hover { color: var(--emerald); }
.footer-contact .ic { width: 20px; height: 20px; color: var(--emerald); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.05); }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 0.75rem; padding: 1.25rem 1rem; font-size: 0.75rem; color: var(--slate-500); }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; padding: 1.25rem 2rem; } }
.footer-made { display: flex; align-items: center; gap: 0.375rem; }
.dot-emerald { color: var(--emerald); }

/* ---------- Floating Actions ---------- */
.floating-actions { position: fixed; bottom: 1.25rem; right: 1.25rem; z-index: 40; display: flex; flex-direction: column; gap: 0.75rem; }
.fab { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; color: var(--white); box-shadow: var(--shadow-lg); transition: transform .2s, background .2s; }
.fab .ic { width: 24px; height: 24px; }
.fab:hover { transform: scale(1.1); }
.fab-wa { background: var(--emerald); box-shadow: 0 10px 25px rgba(16,185,129,.4); }
.fab-wa:hover { background: var(--emerald-dark); }
.fab-call { background: var(--amber); box-shadow: 0 10px 25px rgba(245,158,11,.4); }
.fab-call:hover { background: var(--orange-dark); }

/* Scroll-to-top button (top of the floating stack, hidden until scrolled) */
.fab-top {
  background: var(--slate-800);
  box-shadow: 0 10px 25px rgba(15,23,42,.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px) scale(0.85);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, visibility .3s, background .2s;
}
.fab-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.fab-top:hover { background: var(--slate-900); transform: scale(1.1); }
.fab-top .ic { width: 22px; height: 22px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.16,1,.3,1), transform .7s cubic-bezier(.16,1,.3,1); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Keyframes ---------- */
@keyframes blob { 0%,100% { transform: translate(0,0) scale(1); } 33% { transform: translate(30px,-30px) scale(1.1); } 66% { transform: translate(-20px,20px) scale(.95); } }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }
@keyframes ping { 75%,100% { transform: scale(2); opacity: 0; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
.animate-fade-up { animation: fadeInUp .9s ease-out both; }
.animate-slide-right { animation: slideInRight .9s ease-out both; }

/* ---------- Responsive nav fallback ---------- */
@media (max-width: 1023px) {
  .nav-links { display: none !important; }
}
