/* ============================================================
   4Q Professional Solutions — Premium CA Firm Stylesheet
   Clean White + Navy Accents — Professional & Trustworthy
   ============================================================ */

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --blue: #1d4ed8;
  --blue-light: #3b82f6;
  --blue-soft: #eff6ff;
  --indigo: #4f46e5;
  --white: #ffffff;
  --off-white: #f8fafc;
  --light-gray: #f1f5f9;
  --border: #e2e8f0;
  --border-dark: #cbd5e1;
  --text-dark: #0f172a;
  --text-main: #334155;
  --text-mid: #64748b;
  --text-light: #94a3b8;
  --green: #16a34a;
  --whatsapp: #25d366;
  --orange: #ea580c;
  --red: #dc2626;
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --max-w: 1200px;
}

/* ── Reset & Base ─────────────────────────────────────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-main);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
}

/* ── Utility ──────────────────────────────────────────────── */
.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
}

.center {
  text-align: center;
}

/* ── Section Headers ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  border: 1px solid #bfdbfe;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-label i {
  font-size: 11px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin-inline: auto;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   HEADER / NAVIGATION
   ════════════════════════════════════════════════════════════ */
#main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

#main-header.scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
}

.navbar {
  height: 72px;
  display: flex;
  align-items: center;
}

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-text-primary {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.logo-text-secondary {
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.logo-details {
  display: flex;
  flex-direction: column;
}

.logo-company {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.3;
}

.logo-tagline {
  font-size: 11px;
  color: var(--text-mid);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 4px;
  padding: 0;
  margin: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-main);
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-link::before {
  display: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
  background: var(--blue-soft);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
}

.nav-phone:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-phone i {
  color: var(--blue);
  font-size: 12px;
}

.phone-number {
  font-variant-numeric: tabular-nums;
}

.nav-cta-primary {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--whatsapp);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.25);
  transition: all 0.2s;
  position: relative;
  overflow: hidden;
}

.nav-cta-primary::before {
  display: none;
}

.nav-cta-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.nav-cta-primary i {
  font-size: 16px;
}

/* Hamburger */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 10px;
}

.hamburger-line {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.12);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
  background: var(--light-gray);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  font-size: 16px;
}

.mobile-nav-list {
  padding: 16px;
  flex: 1;
}

.mobile-nav-list li {
  margin-bottom: 2px;
}

.mobile-nav-list li a {
  display: block;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  transition: 0.2s;
}

.mobile-nav-list li a:hover {
  background: var(--blue-soft);
  color: var(--blue);
}

.mobile-menu-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  background: var(--whatsapp);
  color: #fff;
}

/* Responsive Header */
@media (max-width: 1024px) {
  .nav-link {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .navbar {
    height: 64px;
  }

  .logo-company {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .logo-details {
    display: none;
  }
}

/* ════════════════════════════════════════════════════════════
   HERO — White Background with Navy Text
   ════════════════════════════════════════════════════════════ */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--blue), var(--indigo));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 36px;
  line-height: 1.7;
  max-width: 550px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ── Buttons (global) ─────────────────────────────────────── */
.btn-wa {
  background: var(--whatsapp);
  color: #fff;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 2px 12px rgba(37, 211, 102, 0.25);
  transition: all 0.25s;
}

.btn-wa:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.btn-outline {
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid var(--border-dark);
  color: var(--text-dark);
  background: var(--white);
  transition: all 0.25s;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
}

/* Light/Dark variant for outline buttons */
.btn-outline[style*="color:#fff"] {
  color: #fff !important;
  background: transparent !important;
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline[style*="color:#fff"]:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.7);
}

.trust-pills {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  color: var(--text-mid);
  font-size: 13px;
  font-weight: 500;
  box-shadow: var(--shadow-xs);
}

.trust-pill i {
  color: var(--green);
  font-size: 13px;
}

/* ════════════════════════════════════════════════════════════
   URGENCY BAR
   ════════════════════════════════════════════════════════════ */
.urgency-bar {
  background: var(--navy);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.urgency-bar p {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.urgency-bar p strong {
  font-weight: 700;
}

.urgency-bar span {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
}

.urgency-bar a {
  background: var(--white);
  color: var(--navy);
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  transition: 0.2s;
}

.urgency-bar a:hover {
  background: var(--blue-soft);
}

/* ════════════════════════════════════════════════════════════
   PAIN POINTS SECTION
   ════════════════════════════════════════════════════════════ */
.pain-section {
  background: var(--off-white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pain-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}

.pain-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.pain-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.pain-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   SERVICES SECTION
   ════════════════════════════════════════════════════════════ */
#services {
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
  opacity: 0;
  transition: 0.3s;
}

.service-card:hover::after {
  opacity: 1;
}

.svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--blue);
  transition: 0.3s;
}

.service-card:hover .svc-icon {
  background: var(--blue);
  color: #fff;
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.svc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-tag {
  background: var(--light-gray);
  color: var(--text-mid);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}

/* ════════════════════════════════════════════════════════════
   WHY US SECTION
   ════════════════════════════════════════════════════════════ */
.why-section {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-left h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.why-left>p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: rgba(59, 130, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #93c5fd;
  font-size: 18px;
}

.why-point h4 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-point p,
.why-point h3 {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.65;
}

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-card {
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(30, 41, 59, 0.9);
  border-color: rgba(59, 130, 246, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.stat-card .num {
  font-size: 40px;
  font-weight: 800;
  color: #60a5fa;
  line-height: 1;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.stat-card p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* ════════════════════════════════════════════════════════════
   PROCESS / HOW IT WORKS
   ════════════════════════════════════════════════════════════ */
#process {
  background: var(--off-white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  box-shadow: var(--shadow-md);
}

.step-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════════════════
   COMPLIANCE CALENDAR
   ════════════════════════════════════════════════════════════ */
.calendar-section {
  background: var(--white);
}

.calendar-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.calendar-table th {
  background: var(--navy);
  color: #fff;
  padding: 16px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.calendar-table td {
  padding: 16px 20px;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  color: var(--text-main);
}

.calendar-table tr:last-child td {
  border-bottom: none;
}

.calendar-table tr:nth-child(even) td {
  background: var(--off-white);
}

.calendar-table tr:hover td {
  background: var(--blue-soft);
}

.badge-red {
  background: #fef2f2;
  color: var(--red);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.badge-orange {
  background: #fff7ed;
  color: var(--orange);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

.badge-green {
  background: #f0fdf4;
  color: var(--green);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
}

/* ════════════════════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════════════════════ */
#testimonials {
  background: var(--off-white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.testi-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 3px;
}

.testi-card>p {
  font-size: 15px;
  color: var(--text-main);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 24px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 16px;
  color: var(--blue);
}

.testi-author h5 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 12px;
  color: var(--text-light);
}

/* ════════════════════════════════════════════════════════════
   CTA BANNER
   ════════════════════════════════════════════════════════════ */
.cta-section {
  background: var(--off-white);
  text-align: center;
  padding: 80px 24px;
  background-image: radial-gradient(ellipse at 50% 0%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
}

.cta-section h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-section p {
  color: var(--text-mid);
  font-size: 17px;
  margin-bottom: 40px;
  max-width: 560px;
  margin-inline: auto;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-section .btn-outline {
  color: var(--text-dark);
  border-color: var(--border-dark);
  background: var(--white);
}

.cta-section .btn-outline:hover {
  background: var(--blue-soft);
  border-color: var(--blue);
  color: var(--blue);
}

/* ════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  padding: 72px 0 0;
  color: rgba(255, 255, 255, 0.6);
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid-custom {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-logo-row {
  margin-bottom: 12px;
}

.logo-box-small {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.logo-box-small .logo-4q {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.logo-box-small .logo-ps {
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
}

.footer-brand-title {
  margin-bottom: 12px;
}

.footer-brand-title .logo-title {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.footer-brand-title .logo-tagline {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: 0.2s;
}

.footer-socials a:hover {
  background: var(--blue);
  color: #fff;
}

.footer-widget h4,
.widget-title {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.footer-links {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: 0.2s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p,
.footer-bottom-flex p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

/* ════════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ════════════════════════════════════════════════════════════ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s;
}

.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

/* ════════════════════════════════════════════════════════════
   SUB-PAGES: About, Services, Contact, Portfolio
   ════════════════════════════════════════════════════════════ */
/* Page Hero (inner pages) */
.page-hero {
  padding: 120px 0 60px;
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
}

.page-hero .section-inner {
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* About Page */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 16px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.about-stat-card {
  background: var(--blue-soft);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.about-stat-card .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
  display: block;
}

.about-stat-card p {
  font-size: 13px;
  color: var(--text-mid);
  margin-top: 4px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.mission-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.mission-card .icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  color: #fff;
}

.mission-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.mission-card p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  border: 1px solid var(--border);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--blue);
  font-weight: 700;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.team-card .role {
  font-size: 13px;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
}

/* Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.contact-form h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
  color: var(--text-dark);
  transition: border 0.2s;
  background: var(--white);
}

.form-control:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  border-radius: var(--radius);
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.contact-info h4 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-card .icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--blue-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-info-card .label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-info-card .value {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.wa-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--whatsapp);
  color: #fff;
  padding: 18px 24px;
  border-radius: var(--radius-lg);
  margin-top: 32px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
  transition: 0.2s;
}

.wa-bar:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
}

.wa-bar i {
  font-size: 24px;
}

.wa-bar small {
  display: block;
  font-weight: 400;
  font-size: 12px;
  opacity: 0.85;
}

/* Service Detail Cards */
.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.service-detail-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: 0.35s;
  position: relative;
}

.service-detail-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.service-detail-card .svc-icon {
  width: 60px;
  height: 60px;
  font-size: 26px;
}

.service-detail-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-detail-card p {
  font-size: 15px;
  margin-bottom: 20px;
}

.btn-learn {
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-learn:hover {
  gap: 14px;
}

/* Portfolio / Case Studies */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
}

.portfolio-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: 0.35s;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue);
}

.portfolio-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.portfolio-card .client-type {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.portfolio-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
}

.portfolio-results {
  display: flex;
  gap: 24px;
}

.portfolio-result {
  text-align: center;
}

.portfolio-result .value {
  font-size: 24px;
  font-weight: 800;
  color: var(--blue);
  display: block;
}

.portfolio-result .label {
  font-size: 11px;
  color: var(--text-light);
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .why-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pain-grid,
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-custom {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 72px 0;
  }

  .pain-grid,
  .services-grid,
  .testimonials-grid,
  .mission-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid-custom {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .cta-btns,
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-wa,
  .btn-outline {
    justify-content: center;
  }

  .calendar-table {
    font-size: 13px;
  }

  .calendar-table th,
  .calendar-table td {
    padding: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  .hero p {
    font-size: 16px;
  }

  .section-title {
    font-size: 26px;
  }

  .stat-grid,
  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.5s ease-out forwards;
}