/* ==========================================================================
   Corporate Tax Filing Dubai — Static CSS
   Design tokens mirror src/index.css + tailwind.config.ts from the React app
   ========================================================================== */

:root {
  --background: 0 0% 98%;
  --foreground: 222 10% 20%;

  --card: 0 0% 100%;
  --card-foreground: 222 10% 20%;

  --primary: 216 44% 46%;           /* #426baa */
  --primary-foreground: 0 0% 100%;
  --primary-light: 216 44% 66%;     /* lighter tint of #426baa */
  --primary-dark: 240 100% 18%;     /* #00005d */

  --secondary: 216 44% 66%;         /* lighter tint of #426baa */
  --secondary-foreground: 0 0% 100%;
  --secondary-dark: 240 100% 18%;   /* #00005d */

  --muted: 216 44% 90%;
  --muted-foreground: 222 10% 50%;

  --accent: 216 44% 46%;            /* #426baa */
  --accent-foreground: 0 0% 100%;

  --gradient-primary: linear-gradient(135deg, hsl(var(--primary)), hsl(var(--primary-light)));
  --gradient-hero: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--primary-light)) 100%);

  --shadow-soft: 0 4px 6px -1px hsl(var(--primary) / 0.1);
  --shadow-medium: 0 10px 15px -3px hsl(var(--primary) / 0.1);
  --shadow-large: 0 20px 25px -5px hsl(var(--primary) / 0.1);
  --shadow-glow: 0 0 40px hsl(var(--primary) / 0.3);

  --border: 0 0% 90%;
  --destructive: 0 84.2% 60.2%;

  --radius: 0.75rem;

  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s ease-out;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: 4.5rem; }
@media (min-width: 1024px) { html { scroll-padding-top: 5.5rem; } }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: 'Manrope', sans-serif;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  scroll-behavior: smooth;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: hsl(var(--muted)); }
::-webkit-scrollbar-thumb { background: hsl(var(--secondary)); border-radius: 9999px; }
::-webkit-scrollbar-thumb:hover { background: hsl(var(--secondary-dark)); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 1400px) {
  .container { max-width: 1350px; padding-left: 2rem; padding-right: 2rem; }
}

section { position: relative; }

/* ---------- Utility classes ---------- */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.shadow-soft { box-shadow: var(--shadow-soft); }
.shadow-medium { box-shadow: var(--shadow-medium); }
.shadow-large { box-shadow: var(--shadow-large); }
.bg-muted-30 { background-color: hsl(var(--muted) / 0.3); }

.icon {
  display: inline-block;
  line-height: 1;
  text-align: center;
  flex-shrink: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  height: 2.5rem;
  padding: 0.5rem 1rem;
  border: none;
  transition: var(--transition-fast);
}
.btn .icon { font-size: 1rem; }
.btn-primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}
.btn-primary:hover { background: hsl(var(--primary-dark)); }
.btn-outline {
  background: transparent;
  border: 1px solid hsl(var(--primary));
  color: hsl(var(--primary));
}
.btn-outline:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.btn-ghost { background: transparent; color: hsl(var(--foreground)); }
.btn-ghost:hover { background: hsl(var(--accent) / 0.1); }
.btn-white {
  background: #fff;
  color: hsl(var(--primary));
}
.btn-white:hover { background: hsla(0,0%,100%,.95); }
.btn-lg { height: 2.75rem; border-radius: 0.375rem; padding: 0 2rem; font-size: 0.95rem; }
.btn-lg .icon { font-size: 1.25rem; }
.btn-sm { height: 2.25rem; border-radius: 0.375rem; padding: 0 0.75rem; }
.btn-full { width: 100%; }
.btn-icon { height: 2.5rem; width: 2.5rem; padding: 0; border-radius: 9999px; }

/* ---------- Cards ---------- */
.card {
  border-radius: var(--radius);
  background: hsl(var(--card));
  color: hsl(var(--card-foreground));
  box-shadow: var(--shadow-soft);
  border: 0;
  transition: var(--transition-smooth);
}
.card:hover { box-shadow: var(--shadow-medium); }

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: hsla(0,0%,100%,.95);
  backdrop-filter: blur(4px);
  transition: var(--transition-smooth);
}
.nav.scrolled { background: #fff; box-shadow: var(--shadow-medium); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 1024px) { .nav-inner { height: 5rem; } }

.nav-logo img { height: 3rem; width: auto; }
@media (min-width: 1024px) { .nav-logo img { height: 3.5rem; } }

.nav-desktop { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .nav-desktop { display: flex; } }

.nav-link {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
  transition: color .15s ease-out;
}
.nav-link:hover { color: hsl(var(--primary)); }
@media (min-width: 1024px) { .nav-link { font-size: 1.125rem; } }

.nav-cta { margin-left: 1rem; }

.nav-mobile-toggle { display: inline-flex; }
@media (min-width: 1024px) { .nav-mobile-toggle { display: none; } }

.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid hsl(var(--border));
  box-shadow: var(--shadow-large);
}
.nav-mobile-menu.open { display: block; }
@media (min-width: 1024px) { .nav-mobile-menu { display: none !important; } }
.nav-mobile-inner { padding-top: 1rem; padding-bottom: 1rem; }
.nav-mobile-link {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 0;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  color: hsl(var(--foreground));
}
.nav-mobile-link:hover { color: hsl(var(--primary)); }
.nav-mobile-inner .btn { margin-top: 1rem; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  padding-top: 6rem;
  padding-bottom: 4rem;
  background: hsl(var(--background));
  overflow-x: hidden;
}
@media (min-width: 640px) { .hero { padding-top: 7rem; } }
@media (min-width: 1024px) { .hero { padding-top: 10rem; } }

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.hero-content { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .hero-content { gap: 2rem; } }

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}
@media (min-width: 640px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 3.75rem; } }

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 1024px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-desc {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.7;
}
@media (min-width: 1024px) { .hero-desc { font-size: 1.125rem; } }

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
}
@media (min-width: 640px) { .hero-actions { flex-direction: row; } }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--border));
}
.stat { text-align: center; }
.stat-num { font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); }
@media (min-width: 1024px) { .stat-num { font-size: 1.875rem; } }
.stat-label { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.hero-media { position: relative; margin-top: 1.5rem; }
@media (min-width: 1024px) { .hero-media { margin-top: 0; } }
.hero-media-inner { position: relative; z-index: 10; }
.hero-media img { width: 100%; height: auto; border-radius: 1rem; box-shadow: var(--shadow-large); }

.floating-card {
  position: absolute;
  bottom: -1.5rem; left: -1.5rem;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-large);
  border-left: 4px solid hsl(var(--primary));
  max-width: 18rem;
}
.floating-card-inner { display: flex; align-items: center; gap: 0.75rem; }
.floating-card-icon { background: hsl(var(--primary) / 0.1); padding: 0.5rem; border-radius: 0.5rem; }
.floating-card-icon .icon { font-size: 1.5rem; color: hsl(var(--primary)); }
.floating-card-title { font-weight: 600; font-size: 0.875rem; }
.floating-card-sub { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.blob { position: absolute; border-radius: 9999px; filter: blur(48px); }
.blob-1 { top: 1rem; right: 1rem; width: 6rem; height: 6rem; background: hsl(var(--primary) / 0.05); }
.blob-2 { bottom: -1rem; right: -1rem; width: 8rem; height: 8rem; background: hsl(var(--accent) / 0.3); }

/* ==========================================================================
   Section header patterns (shared)
   ========================================================================== */
.section { padding: 4rem 0; }
@media (min-width: 1024px) { .section { padding: 6rem 0; } }

/* Alternate a light tinted panel behind every other section for visual rhythm */
.section:nth-of-type(even) { background: hsl(var(--muted) / 0.35); }

.section-label {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  color: hsl(var(--primary));
  letter-spacing: 0.03em;
}
@media (min-width: 1024px) { .section-label { font-size: 1rem; } }

.section-header { text-align: center; margin-bottom: 3rem; }
@media (min-width: 1024px) { .section-header { margin-bottom: 4rem; } }

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1280px) { .section-title { font-size: 3rem; } }

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: hsl(var(--muted-foreground));
}
@media (min-width: 1024px) { .section-subtitle { font-size: 1.5rem; } }

.section-desc {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.7;
}
@media (min-width: 1024px) { .section-desc { font-size: 1.125rem; } }
@media (min-width: 1280px) { .section-desc { font-size: 1.25rem; } }

/* ==========================================================================
   Services
   ========================================================================== */
#services { background: hsl(var(--muted) / 0.3); }

.services-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.service-card .card-body { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
@media (min-width: 1024px) { .service-card .card-body { padding: 2rem; } }
.service-icon {
  background: hsl(var(--primary) / 0.1);
  padding: 0.75rem;
  border-radius: 0.75rem;
  transition: background .3s ease;
  flex-shrink: 0;
}
.service-card:hover .service-icon { background: hsl(var(--primary) / 0.2); }
.service-icon .icon { font-size: 1.75rem; color: hsl(var(--primary)); }
@media (min-width: 1024px) { .service-icon .icon { font-size: 2rem; } }
.service-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .service-title { font-size: 1.25rem; } }
.service-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
@media (min-width: 1024px) { .service-desc { font-size: 1rem; } }

.compare-panel { background: #fff; border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .compare-panel { padding: 3rem; } }
.compare-header { text-align: center; margin-bottom: 2rem; }
.compare-header h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 1024px) { .compare-header h3 { font-size: 1.875rem; } }
@media (min-width: 1280px) { .compare-header h3 { font-size: 2.25rem; } }
.compare-header p { font-size: 1rem; color: hsl(var(--muted-foreground)); }
@media (min-width: 1024px) { .compare-header p { font-size: 1.125rem; } }

.compare-table { overflow-x: auto; }
.compare-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(160px, 1fr));
  gap: 1rem;
  padding: 1rem;
}
.compare-row.head { background: hsl(var(--accent) / 0.5); border-radius: 0.75rem 0.75rem 0 0; font-weight: 600; }
.compare-row.head > div { text-align: center; font-size: 0.875rem; }
@media (min-width: 1024px) { .compare-row.head > div { font-size: 1rem; } }
@media (min-width: 1280px) { .compare-row.head > div { font-size: 1.125rem; } }
.compare-row.head .col-approach { color: hsl(var(--primary)); }
.compare-row.body { border-bottom: 1px solid hsl(var(--border) / 0.5); }
.compare-row.body.odd { background: #fff; }
.compare-row.body.even { background: hsl(var(--muted) / 0.2); }
.compare-row .col-area { font-weight: 500; text-align: center; font-size: 0.875rem; align-self: center; }
.compare-row .col-approach {
  font-size: 0.875rem; text-align: center; padding: 0.75rem;
  background: hsl(var(--primary) / 0.05); border-radius: 0.5rem; border-left: 4px solid hsl(var(--primary));
}
.compare-row .col-bench { font-size: 0.875rem; text-align: center; color: hsl(var(--muted-foreground)); padding: 0.75rem; }
@media (min-width: 1024px) {
  .compare-row .col-area, .compare-row .col-approach, .compare-row .col-bench { font-size: 1rem; }
}
@media (min-width: 1280px) {
  .compare-row .col-area, .compare-row .col-approach, .compare-row .col-bench { font-size: 1.125rem; }
}

/* ==========================================================================
   About IMC
   ========================================================================== */
.about-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.about-content { display: flex; flex-direction: column; }
.about-media { position: relative; order: 2; }
@media (min-width: 1024px) { .about-media { order: -1; } }

.about-media-inner { position: relative; z-index: 10; }
.about-media-inner img { width: 100%; border-radius: 1rem; box-shadow: var(--shadow-large); }
.about-overlay { top: -1.5rem; left: -1.5rem; right: auto; }

.blob-about-1 { top: 2rem; right: 2rem; width: 5rem; height: 5rem; background: hsl(var(--accent) / 0.3); }
.blob-about-2 { bottom: -2rem; right: -2rem; width: 7rem; height: 7rem; background: hsl(var(--primary) / 0.1); }

.about-imc-body { margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.about-imc-body p { font-size: 1rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
@media (min-width: 1024px) { .about-imc-body p { font-size: 1.125rem; } }
.about-imc-cta { text-align: left; }

/* ==========================================================================
   Who Must File (table)
   ========================================================================== */
.wmf-panel { background: #fff; border-radius: 1rem; padding: 1.5rem; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .wmf-panel { padding: 2rem; } }

.wmf-row { display: grid; grid-template-columns: 1fr; gap: 0.35rem; padding: 1.25rem 0.5rem; }
.wmf-row.head { display: none; }
.wmf-row.body { border-bottom: 1px solid hsl(var(--border) / 0.6); }
.wmf-row.body:last-child { border-bottom: none; }
.wmf-row.body.even { background: hsl(var(--muted) / 0.2); border-radius: 0.5rem; }
.wmf-row .col-category { font-weight: 700; font-size: 1rem; color: hsl(var(--primary)); }
.wmf-row .col-covers, .wmf-row .col-obligation { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.6; }
.wmf-row .col-covers::before, .wmf-row .col-obligation::before {
  content: attr(data-label);
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: hsl(var(--foreground));
  margin-top: 0.5rem;
  margin-bottom: 0.15rem;
}
@media (min-width: 768px) {
  .wmf-row { grid-template-columns: 1.1fr 1.6fr 1.6fr; gap: 1.5rem; align-items: center; padding: 1.25rem 1rem; }
  .wmf-row.head { display: grid; background: hsl(var(--accent) / 0.5); border-radius: 0.75rem 0.75rem 0 0; font-weight: 600; }
  .wmf-row.head > div { font-size: 0.95rem; }
  .wmf-row .col-covers::before, .wmf-row .col-obligation::before { display: none; }
  .wmf-row .col-covers, .wmf-row .col-obligation { font-size: 0.9375rem; }
}
@media (min-width: 1280px) {
  .wmf-row.head > div { font-size: 1.0625rem; }
  .wmf-row .col-category { font-size: 1.0625rem; }
  .wmf-row .col-covers, .wmf-row .col-obligation { font-size: 1rem; }
}

/* ==========================================================================
   Team
   ========================================================================== */
.team-grid { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 1024px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.team-content { display: flex; flex-direction: column; gap: 1.5rem; }
@media (min-width: 1024px) { .team-content { gap: 2rem; } }

.team-text { display: flex; flex-direction: column; gap: 1rem; color: hsl(var(--muted-foreground)); }
.team-text p { font-size: 1rem; line-height: 1.7; }
@media (min-width: 1024px) { .team-text p { font-size: 1.125rem; } }

.qual-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; padding-top: 1.5rem; }
@media (min-width: 640px) { .qual-grid { grid-template-columns: repeat(2, 1fr); } }
.qual-card .card-body { padding: 1rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.qual-icon { background: hsl(var(--primary) / 0.1); padding: 0.5rem; border-radius: 0.5rem; flex-shrink: 0; }
.qual-icon .icon { font-size: 1.25rem; color: hsl(var(--primary)); }
.qual-title { font-weight: 600; font-size: 1rem; margin-bottom: 0.25rem; }
@media (min-width: 1024px) { .qual-title { font-size: 1.125rem; } }
.qual-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.5; }
@media (min-width: 1024px) { .qual-desc { font-size: 1rem; } }

.team-media { position: relative; }
.team-media-inner { position: relative; z-index: 10; }
.team-media img { width: 100%; border-radius: 1rem; box-shadow: var(--shadow-large); }
.overlay-card {
  position: absolute; top: -1.5rem; right: -1.5rem;
  background: #fff; padding: 1.5rem; border-radius: 0.75rem;
  box-shadow: var(--shadow-large); border-top: 4px solid hsl(var(--primary));
  max-width: 18rem; text-align: center;
}
.overlay-card-icon {
  background: hsl(var(--primary) / 0.1); width: 3rem; height: 3rem; border-radius: 9999px;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem;
}
.overlay-card-icon .icon { font-size: 1.5rem; color: hsl(var(--primary)); }

.blob-team-1 { top: 2rem; left: 2rem; width: 5rem; height: 5rem; background: hsl(var(--accent) / 0.3); }
.blob-team-2 { bottom: -2rem; left: -2rem; width: 7rem; height: 7rem; background: hsl(var(--primary) / 0.1); }

/* ==========================================================================
   Benefits
   ========================================================================== */
#benefits { background: linear-gradient(to bottom right, hsl(var(--muted) / 0.05), hsl(var(--muted) / 0.2)); }
.benefits-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }

.benefit-card {
  background: hsla(0,0%,100%,.4);
  backdrop-filter: blur(4px);
  border: 1px solid hsla(0,0%,100%,.2);
  border-radius: 0.75rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  transition: var(--transition-smooth);
}
.benefit-card:hover {
  border-color: hsl(var(--primary));
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  transform: scale(1.05);
}
.benefit-card .card-body { padding: 1.5rem; display: flex; flex-direction: column; align-items: center; text-align: center; }
.benefit-icon {
  background: hsla(0,0%,100%,.3); padding: 1rem; border-radius: 9999px;
  border: 1px solid hsla(0,0%,100%,.2); box-shadow: var(--shadow-medium);
  margin-bottom: 1.5rem; transition: border-color .3s ease;
}
.benefit-card:hover .benefit-icon { border-color: hsl(var(--primary)); }
.benefit-icon .icon { font-size: 2.5rem; color: hsl(var(--primary)); }
.benefit-title { font-size: 1.125rem; font-weight: 600; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .benefit-title { font-size: 1.25rem; } }
.benefit-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
@media (min-width: 1024px) { .benefit-desc { font-size: 1rem; } }

/* ==========================================================================
   Process
   ========================================================================== */
.process-grid { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.process-steps { display: flex; flex-direction: column; gap: 1.5rem; }
.step-card .card-body { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.step-num {
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.step-icon { background: hsl(var(--primary) / 0.1); padding: 0.75rem; border-radius: 0.75rem; flex-shrink: 0; transition: background .3s ease; }
.step-card:hover .step-icon { background: hsl(var(--primary) / 0.2); }
.step-icon .icon { font-size: 1.5rem; color: hsl(var(--primary)); }
.step-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .step-title { font-size: 1.25rem; } }
.step-desc { font-size: 1rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
@media (min-width: 1024px) { .step-desc { font-size: 1.125rem; } }
.step-desc a { color: hsl(var(--primary)); text-decoration: underline; }
.step-desc a:hover { color: hsl(var(--primary) / 0.8); }

.process-media { position: relative; }
@media (min-width: 1024px) { .process-media { position: sticky; top: 6rem; } }
.process-media-inner { position: relative; z-index: 10; }
.process-media img { width: 100%; border-radius: 1rem; box-shadow: var(--shadow-large); }

.timeline-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: #fff; padding: 1rem; border-radius: 0.75rem; box-shadow: var(--shadow-medium); text-align: center;
}
.timeline-badge .big { font-size: 1.125rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.25rem; }
.timeline-badge .small { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

.compliance-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: hsl(var(--primary)); color: hsl(var(--primary-foreground));
  padding: 1rem; border-radius: 0.75rem; box-shadow: var(--shadow-medium);
  display: flex; align-items: center; gap: 0.5rem;
}
.compliance-badge .icon { font-size: 1.25rem; }
.compliance-badge .title { font-weight: 600; font-size: 0.875rem; }
.compliance-badge .sub { font-size: 0.75rem; opacity: 0.9; }

.blob-process-1 { top: 2rem; left: 2rem; width: 5rem; height: 5rem; background: hsl(var(--accent) / 0.3); }
.blob-process-2 { bottom: -2rem; right: -2rem; width: 7rem; height: 7rem; background: hsl(var(--primary) / 0.1); }

.deadlines-panel { margin-top: 4rem; background: #fff; border-radius: 1rem; padding: 2rem; box-shadow: var(--shadow-soft); }
@media (min-width: 1024px) { .deadlines-panel { padding: 3rem; } }
.deadlines-panel h3 { text-align: center; font-size: 1.5rem; font-weight: 700; margin-bottom: 2rem; }
@media (min-width: 1024px) { .deadlines-panel h3 { font-size: 1.875rem; } }
.deadlines-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .deadlines-grid { grid-template-columns: repeat(3, 1fr); } }
.deadline-item {
  text-align: center; padding: 1.5rem; background: hsl(var(--primary) / 0.05);
  border-radius: 0.75rem; border-left: 4px solid hsl(var(--primary));
}
.deadline-item .big { font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
.deadline-item .mid { font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.deadline-item .small { font-size: 0.75rem; color: hsl(var(--muted-foreground)); }

/* ==========================================================================
   Why Choose
   ========================================================================== */
#why-choose { background: hsl(var(--muted) / 0.3); }
.diff-grid { display: grid; gap: 2rem; margin-bottom: 4rem; }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(3, 1fr); } }
.diff-card { background: #fff; box-shadow: var(--shadow-medium); }
.diff-card:hover { box-shadow: var(--shadow-large); }
.diff-card .card-body { padding: 2rem; text-align: center; }
.diff-icon {
  background: hsl(var(--primary) / 0.1); width: 4rem; height: 4rem; border-radius: 1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem;
  transition: background .3s ease;
}
.diff-card:hover .diff-icon { background: hsl(var(--primary) / 0.2); }
.diff-icon .icon { font-size: 2rem; color: hsl(var(--primary)); }
.diff-title { font-weight: 600; font-size: 1.25rem; margin-bottom: 1rem; }
.diff-desc { color: hsl(var(--muted-foreground)); line-height: 1.7; }

.partner-panel {
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--primary-light)));
  border-radius: 1.5rem; padding: 2rem; color: #fff; text-align: center; box-shadow: var(--shadow-large);
}
@media (min-width: 1024px) { .partner-panel { padding: 3rem; } }
.partner-inner { max-width: 56rem; margin: 0 auto; }
.partner-panel h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
@media (min-width: 1024px) { .partner-panel h3 { font-size: 1.875rem; } }
.partner-panel > .partner-inner > p { font-size: 1.125rem; margin-bottom: 2rem; opacity: 0.95; }
@media (min-width: 1024px) { .partner-panel > .partner-inner > p { font-size: 1.25rem; } }

.partner-benefits { display: grid; gap: 1.5rem; margin-bottom: 2rem; }
@media (min-width: 768px) { .partner-benefits { grid-template-columns: repeat(3, 1fr); } }
.partner-benefit { background: hsla(0,0%,100%,.1); border-radius: 0.75rem; padding: 1.5rem; backdrop-filter: blur(4px); }
.partner-benefit .big { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.partner-benefit .small { font-size: 0.875rem; opacity: 0.9; }

.metrics-grid { margin-top: 4rem; display: grid; gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .metrics-grid { grid-template-columns: repeat(4, 1fr); } }
.metric-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-soft); }
.metric-card .big { font-size: 1.5rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .metric-card .big { font-size: 1.875rem; } }
.metric-card .small { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

/* ==========================================================================
   Case Study
   ========================================================================== */
.case-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 3rem; }
@media (min-width: 768px) { .case-grid { grid-template-columns: repeat(2, 1fr); gap: 3rem; } }
.case-card { border-left: 4px solid hsl(var(--primary)); }
.case-card.blue { border-left-color: #3b82f6; }
.case-card.green { border-left-color: #22c55e; }
.case-card .card-body { padding: 1.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }
.case-card .icon { font-size: 1.75rem; flex-shrink: 0; margin-top: 0.25rem; color: hsl(var(--primary)); }
@media (min-width: 1024px) { .case-card .icon { font-size: 2rem; } }
.case-card.blue .icon { color: #3b82f6; }
.case-card.green .icon { color: #22c55e; }
.case-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.75rem; }
@media (min-width: 1024px) { .case-title { font-size: 1.25rem; } }
.case-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
@media (min-width: 1024px) { .case-desc { font-size: 1rem; } }
.case-single { max-width: 42rem; margin: 0 auto; }
.case-cta { text-align: center; margin-top: 3rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
#testimonials { background: hsl(var(--muted) / 0.3); }
.testimonial-wrap { position: relative; max-width: 56rem; margin: 0 auto; }
.testimonial-card { background: #fff; box-shadow: var(--shadow-large); overflow: hidden; }
.testimonial-card .card-body { padding: 2rem; position: relative; }
@media (min-width: 1024px) { .testimonial-card .card-body { padding: 3rem; } }

.testimonial-inner { position: relative; transition: opacity .3s ease-in-out; opacity: 1; }
.testimonial-inner.fade-out { opacity: 0; }

.quote-icon { position: absolute; top: -1rem; left: -1rem; color: hsl(var(--primary) / 0.2); }
.quote-icon .icon { font-size: 4rem; }

.stars { display: flex; justify-content: center; margin-bottom: 1.5rem; }
.stars .icon { font-size: 1.25rem; margin: 0 0.125rem; color: #facc15; }

.testimonial-quote {
  font-size: 1.125rem; text-align: center; color: hsl(var(--muted-foreground));
  line-height: 1.7; margin-bottom: 2rem; position: relative; z-index: 10;
}
@media (min-width: 1024px) { .testimonial-quote { font-size: 1.25rem; } }

.testimonial-name { text-align: center; font-weight: 600; font-size: 1.125rem; }
.testimonial-position { text-align: center; color: hsl(var(--primary)); font-weight: 500; }

.testimonial-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 2.5rem; height: 2.5rem; border-radius: 9999px;
  border: 1px solid hsl(var(--primary)); background: transparent; color: hsl(var(--primary));
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-medium); transition: var(--transition-fast);
}
.testimonial-nav:hover { background: hsl(var(--primary)); color: hsl(var(--primary-foreground)); }
.testimonial-nav .icon { font-size: 1rem; }
.testimonial-nav.prev { left: 1rem; }
.testimonial-nav.next { right: 1rem; }

.dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 2rem; }
.dot { width: 0.75rem; height: 0.75rem; border-radius: 9999px; background: hsl(var(--secondary)); border: none; transition: var(--transition-smooth); padding: 0; }
.dot:hover { background: hsl(var(--secondary-dark)); }
.dot.active { background: hsl(var(--primary)); transform: scale(1.25); }

.trust-grid { margin-top: 4rem; display: grid; gap: 2rem; text-align: center; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }
.trust-card { background: #fff; border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-soft); }
.trust-card .big { font-size: 1.875rem; font-weight: 700; color: hsl(var(--primary)); margin-bottom: 0.5rem; }
@media (min-width: 1024px) { .trust-card .big { font-size: 2.25rem; } }
.trust-card .small { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }
.trust-card .stars { margin-top: 0.5rem; }
.trust-card .stars .icon { font-size: 1rem; }
.trust-card .tag { font-size: 0.75rem; color: hsl(var(--primary)); margin-top: 0.5rem; font-weight: 500; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list { max-width: 56rem; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 1.5rem; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq-question:focus-visible { outline: 2px solid hsl(var(--primary) / 0.2); outline-offset: 2px; }
.faq-question h3 { font-weight: 600; font-size: 1rem; color: hsl(var(--foreground)); }
@media (min-width: 1024px) { .faq-question h3 { font-size: 1.125rem; } }
.faq-chevron { flex-shrink: 0; transition: transform .3s ease; }
.faq-chevron .icon { font-size: 1.25rem; color: hsl(var(--primary)); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer { max-height: 0; opacity: 0; overflow: hidden; transition: max-height .7s ease-in-out, opacity .7s ease-in-out; }
.faq-item.open .faq-answer { max-height: 30rem; opacity: 1; }
.faq-answer-inner { padding: 0 1.5rem 1.5rem; }
.faq-answer-inner > div { border-top: 1px solid hsl(var(--border)); padding-top: 1rem; }
.faq-answer-inner p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; }
@media (min-width: 1024px) { .faq-answer-inner p { font-size: 1rem; } }

.faq-cta {
  margin-top: 4rem; text-align: center;
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--primary-light)));
  border-radius: 1.5rem; padding: 2rem; color: #fff;
}
@media (min-width: 1024px) { .faq-cta { padding: 3rem; } }
.faq-cta h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; }
@media (min-width: 1024px) { .faq-cta h3 { font-size: 1.875rem; } }
.faq-cta > p { font-size: 1.125rem; margin-bottom: 1.5rem; opacity: 0.95; }
.faq-badges { display: flex; align-items: center; justify-content: center; gap: 2rem; font-size: 0.875rem; flex-wrap: wrap; margin-bottom: 1rem; }
.faq-badges > div { display: flex; align-items: center; gap: 0.5rem; }
.faq-dot { width: 0.5rem; height: 0.5rem; background: #fff; border-radius: 9999px; }
.faq-cta-btn {
  background: #fff; color: hsl(var(--primary)); padding: 0.75rem 2rem; border-radius: 0.75rem;
  font-weight: 600; border: none; transition: var(--transition-smooth); box-shadow: var(--shadow-medium);
}
.faq-cta-btn:hover { background: hsla(0,0%,100%,.95); }

/* ==========================================================================
   Contact
   ========================================================================== */
#contact { background: hsl(var(--muted) / 0.3); }
.contact-grid { display: grid; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }

.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.info-card .card-body { padding: 1.5rem; display: flex; align-items: flex-start; gap: 1rem; }
.info-icon { background: hsl(var(--primary) / 0.1); padding: 0.75rem; border-radius: 0.75rem; flex-shrink: 0; }
.info-icon .icon { font-size: 1.5rem; color: hsl(var(--primary)); }
.info-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.5rem; }
.info-content { font-size: 0.875rem; color: hsl(var(--muted-foreground)); line-height: 1.7; white-space: pre-line; }
.info-content a:hover { text-decoration: underline; }

.why-card {
  background: linear-gradient(to bottom right, hsl(var(--primary)), hsl(var(--primary-light)));
  color: #fff;
}
.why-card .card-body { padding: 1.5rem; }
.why-card h3 { font-weight: 600; font-size: 1.125rem; margin-bottom: 1rem; }
.why-list { display: flex; flex-direction: column; gap: 0.75rem; }
.why-list > div { display: flex; align-items: center; gap: 0.75rem; }
.why-list .icon { font-size: 1rem; flex-shrink: 0; }
.why-list span { font-size: 0.875rem; }

.contact-form-card { background: #fff; box-shadow: var(--shadow-large); }
.contact-form-card .card-body { padding: 2rem; }
.contact-form-head { margin-bottom: 1.5rem; }
.contact-form-head h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; }
.contact-form-head p { font-size: 0.875rem; color: hsl(var(--muted-foreground)); }

.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; margin-bottom: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.875rem; font-weight: 500; line-height: 1; }
.form-group input,
.form-group select,
.form-group textarea {
  display: flex; width: 100%; border-radius: 0.375rem; border: 1px solid hsl(var(--border));
  background: hsl(var(--background)); padding: 0.5rem 0.75rem; font-size: 0.875rem;
  font-family: inherit; color: hsl(var(--foreground));
  transition: var(--transition-fast);
  height: 2.5rem;
}
.form-group textarea { height: auto; min-height: 120px; padding-top: 0.625rem; resize: vertical; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: hsl(var(--muted-foreground)); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: hsl(var(--primary)); box-shadow: 0 0 0 2px hsl(var(--primary) / 0.2);
}
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23426baa' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.75rem center; background-size: 1rem; padding-right: 2.25rem; }

/* ==========================================================================
   Toast notifications
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 5rem;
  right: 1rem;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 24rem;
  width: calc(100% - 2rem);
}
.toast {
  background: #fff;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  box-shadow: var(--shadow-large);
  padding: 1rem 1.25rem;
  opacity: 0;
  transform: translateX(1rem);
  transition: opacity .3s ease, transform .3s ease;
}
.toast.show { opacity: 1; transform: translateX(0); }
.toast-title { font-weight: 600; font-size: 0.95rem; color: hsl(var(--foreground)); }
.toast-desc { font-size: 0.875rem; color: hsl(var(--muted-foreground)); margin-top: 0.25rem; }
.toast-destructive { border-color: hsl(var(--destructive)); background: hsl(var(--destructive) / 0.05); }
.toast-destructive .toast-title { color: hsl(var(--destructive)); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer { background: hsl(var(--foreground)); color: #fff; }
.footer-main { padding: 3rem 0; }
@media (min-width: 1024px) { .footer-main { padding: 4rem 0; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(3, 1fr); } }

.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 1.5rem; }
.footer-brand img { height: 3.5rem; width: auto; background: #fff; border-radius: 8px; padding: 0.35rem 0.5rem; }
.footer-brand > p { font-size: 0.875rem; color: #d1d5db; line-height: 1.7; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact > div { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: #d1d5db; }
.footer-contact .icon { font-size: 1rem; margin-top: 0.25rem; flex-shrink: 0; color: hsl(var(--primary)); }
.footer-contact a:hover { color: #fff; }

.footer-col h3 { font-size: 1.125rem; font-weight: 600; margin-bottom: 1.5rem; color: hsl(var(--primary)); }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col button { background: none; border: none; font-size: 0.875rem; color: #d1d5db; transition: color .15s ease; }
.footer-col button:hover { color: #fff; }

.footer-bottom { border-top: 1px solid #374151; padding: 1.5rem 0; text-align: center; }
.footer-bottom div { font-size: 0.875rem; color: #9ca3af; }

/* ==========================================================================
   Responsive tweaks
   ========================================================================== */
@media (max-width: 639px) {
  .hero-title { font-size: 1.875rem; }
  .floating-card { max-width: 14rem; padding: 1rem; left: 0; bottom: -1.25rem; }
  .toast-container { top: 4.5rem; }
}
