@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; color: #111827; background: #fff; -webkit-font-smoothing: antialiased; min-height: 100vh; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #3297D3; border-radius: 4px; }

/* Colors */
:root {
  --brand: #3297D3;
  --brand-dark: #2880b5;
  --brand-light: #4db0e6;
  --brand-10: rgba(50,151,211,0.1);
  --brand-5: rgba(50,151,211,0.05);
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-900: #111827;
}

/* ===== UTILITIES ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.container-sm { max-width: 896px; margin: 0 auto; padding: 0 1.5rem; }
.container-md { max-width: 1024px; margin: 0 auto; padding: 0 1.5rem; }

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.text-brand { color: var(--brand); }
.text-brand-dark { color: var(--brand-dark); }
.text-white { color: #fff; }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }
.text-gray-900 { color: var(--gray-900); }

.bg-white { background: #fff; }
.bg-brand { background: var(--brand); }

.brand-gradient-bg { background: linear-gradient(135deg, #3297D3, #4db0e6, #2880b5); }
.brand-gradient-text { background: linear-gradient(135deg, #111827, #3297D3, #111827); background-size: 200% 200%; -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; animation: gradient 8s ease infinite; }

@keyframes gradient { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
@keyframes fadeUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(10px)} }
@keyframes countUp { from{opacity:0;transform:scale(0.5)} to{opacity:1;transform:scale(1)} }
@keyframes scrollLogos { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes pulseGlow { 0%,100%{opacity:0.4} 50%{opacity:0.8} }

.animate-fade-up { animation: fadeUp 0.8s ease forwards; }
.animate-fade-in { animation: fadeIn 0.8s ease forwards; }
.animate-float { animation: float 6s ease-in-out infinite; }
.delay-1 { animation-delay: 0.2s; opacity: 0; }
.delay-2 { animation-delay: 0.4s; opacity: 0; }
.delay-3 { animation-delay: 0.6s; opacity: 0; }
.delay-4 { animation-delay: 0.8s; opacity: 0; }
.delay-5 { animation-delay: 1.0s; opacity: 0; }

.glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.rounded-2xl { border-radius: 1rem; }
.rounded-3xl { border-radius: 1.5rem; }
.rounded-full { border-radius: 9999px; }

/* SVG Icons inside .service-icon, .info-icon, .value-icon, .timeline-icon, .calc-icon, .slider-icon */
.service-icon svg, .value-icon svg, .timeline-icon svg, .calc-icon svg, .slider-icon svg {
  width: 1.5rem; height: 1.5rem; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.info-icon svg {
  width: 1.25rem; height: 1.25rem; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.slider-icon svg { width: 1.125rem; height: 1.125rem; }
.team-email svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer-contact-item svg { width: 14px; height: 14px; stroke: var(--brand); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; margin-top: 2px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: #fff; border-bottom: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto; padding: 0.625rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; }
.navbar-logo img { height: 56px; width: 180px; object-fit: contain; }
.navbar-logo span { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); }
.nav-links { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700); border-radius: 0.5rem; transition: all 0.2s;
}
.nav-link:hover { color: var(--brand); background: var(--brand-5); }

/* Dropdown */
.dropdown { position: relative; }
.dropdown-btn {
  padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500;
  color: var(--gray-700); border: none; background: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.25rem; border-radius: 0.5rem; transition: all 0.2s;
}
.dropdown-btn:hover { color: var(--brand); background: var(--brand-5); }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; padding-top: 0.5rem; width: 12rem; z-index: 60;
}
.dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu-inner {
  background: #fff; border-radius: 0.75rem; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.12); border: 1px solid var(--gray-100);
}
.dropdown-item {
  display: block; padding: 0.75rem 1.25rem; font-size: 0.875rem;
  color: var(--gray-700); transition: all 0.2s;
}
.dropdown-item:hover { color: var(--brand); background: var(--brand-5); }

.nav-cta {
  margin-left: 0.75rem; padding: 0.5rem 1.25rem;
  background: var(--brand); color: #fff; font-weight: 600; font-size: 0.875rem;
  border-radius: 9999px; border: none; cursor: pointer; transition: all 0.2s;
}
.nav-cta:hover { background: var(--brand-dark); box-shadow: 0 4px 12px rgba(50,151,211,0.3); transform: scale(1.05); }

/* Mobile */
.mobile-toggle {
  display: none; padding: 0.5rem; background: none; border: none; cursor: pointer;
  color: var(--gray-700); font-size: 1.5rem;
}
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--gray-100); padding: 1rem 1.5rem; }
.mobile-menu.open { display: block; }
.mobile-menu a { display: block; padding: 0.625rem 0.75rem; color: var(--gray-700); font-size: 0.9375rem; border-radius: 0.5rem; }
.mobile-menu a:hover { color: var(--brand); background: var(--brand-5); }
.mobile-menu .sub-label { padding: 0.375rem 0.75rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 600; }
.mobile-menu .sub-item { padding-left: 1.5rem; }
.mobile-cta { display: block; text-align: center; margin-top: 0.75rem; padding: 0.75rem; background: var(--brand); color: #fff; font-weight: 600; border-radius: 9999px; }

@media(max-width:1023px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative; min-height: 86vh; display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding-top: 80px;
  background: linear-gradient(180deg, #ffffff 0%, #eef6fc 25%, #ddeefb 45%, #d0e8f9 55%, #eef6fc 75%, #ffffff 100%);
}
.hero::before {
  content: ''; position: absolute; top: 20%; right: -10%; width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(50,151,211,0.08) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
}
.hero::after {
  content: ''; position: absolute; bottom: 15%; left: -8%; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(50,151,211,0.06) 0%, transparent 70%);
  animation: pulseGlow 6s ease-in-out 3s infinite;
}
.hero.hero-sm { min-height: 46vh; padding-top: 80px; }
.hero-glow {
  position: absolute; width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(50,151,211,0.12) 0%, transparent 70%);
  pointer-events: none; animation: pulseGlow 6s ease-in-out infinite;
}
.hero-content { position: relative; max-width: 1280px; margin: 0 auto; padding: 2.5rem 1.5rem 5rem; text-align: center; z-index: 1; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 800; line-height: 1.1; margin-bottom: 2rem; color: var(--gray-900); }
.hero p.subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: var(--gray-600); max-width: 42rem; margin: 0 auto 3rem; line-height: 1.7; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; color: var(--brand);
  margin-bottom: 2rem;
}
.hero-badge svg { width: 16px; height: 16px; stroke: var(--brand); fill: none; stroke-width: 2; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 1rem 2rem; background: linear-gradient(135deg, #3297D3, #4db0e6, #2880b5);
  color: #fff; font-weight: 600; border-radius: 9999px; font-size: 1.125rem;
  display: inline-flex; align-items: center; gap: 0.5rem; border: none; cursor: pointer;
  transition: all 0.3s; text-decoration: none;
}
.btn-primary:hover { box-shadow: 0 8px 30px rgba(50,151,211,0.3); transform: scale(1.05); }
.btn-secondary {
  padding: 1rem 2rem; background: #fff; border: 2px solid var(--brand); color: var(--brand);
  font-weight: 600; border-radius: 9999px; font-size: 1.125rem;
  display: inline-flex; align-items: center; gap: 0.5rem; cursor: pointer; transition: all 0.3s;
}
.btn-secondary:hover { background: var(--brand-5); }

/* Hero Stats */
.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  margin-top: 3rem; max-width: 52rem; margin-left: auto; margin-right: auto;
}
@media(max-width:639px) { .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
.hero-stat { text-align: center; }
.hero-stat .stat-number { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; color: var(--brand); }
.hero-stat .stat-label { font-size: 0.8125rem; color: var(--gray-600); margin-top: 0.25rem; font-weight: 500; }

.hero-floating {
  margin-top: 2rem; display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; color: var(--gray-700);
}
.avatar-stack { display: flex; }
.avatar-stack span {
  width: 2rem; height: 2rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 0.625rem; font-weight: 700; color: var(--gray-900); border: 2px solid #fff;
  background: linear-gradient(135deg, #3297D3, #4db0e6);
}
.avatar-stack span + span { margin-left: -0.5rem; }

.scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  animation: bounce 2s infinite;
}
.scroll-dot {
  width: 1.5rem; height: 2.5rem; border: 2px solid var(--gray-200); border-radius: 9999px;
  display: flex; justify-content: center; padding-top: 0.5rem;
}
.scroll-dot span { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* ===== SECTIONS ===== */
.section { position: relative; padding: 8rem 0; }
.section-sm { position: relative; padding: 6rem 0; }
.section-bg-subtle {
  background: linear-gradient(180deg, #ffffff 0%, #f0f7fd 20%, #e4f0fa 50%, #f0f7fd 80%, #ffffff 100%);
}
.section-bg-alt {
  background: linear-gradient(135deg, #ffffff 0%, #eaf4fc 25%, #d8ecfa 50%, #eaf4fc 75%, #ffffff 100%);
}

.section-header { margin-bottom: 5rem; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--brand); font-weight: 500; margin-bottom: 1rem; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gray-900); margin-bottom: 1.5rem; }
.section-divider { width: 5rem; height: 4px; background: linear-gradient(135deg, #3297D3, #4db0e6); border-radius: 9999px; margin: 0 auto; }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
@media(max-width:1023px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:639px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  padding: 2rem; border-radius: 1rem; transition: all 0.5s;
}
.service-card:hover { transform: translateY(-8px); border-color: rgba(50,151,211,0.3); }
.service-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: var(--brand-10); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; color: var(--brand); font-size: 1.5rem;
}
.service-card h3 { font-size: 1.25rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

/* ===== STATS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media(max-width:639px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-item { text-align: center; }
.stat-number { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--brand); }
.stat-label { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.25rem; }

/* ===== ABOUT GRID ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media(max-width:1023px) { .about-grid { grid-template-columns: 1fr; } }
.about-text h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gray-900); margin-bottom: 2rem; }
.about-text p { color: var(--gray-700); line-height: 1.8; margin-bottom: 1.5rem; }
.about-tags { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }
.about-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.875rem; color: var(--brand);
}

.info-card {
  padding: 2.5rem; border-radius: 1.5rem; display: flex; flex-direction: column; gap: 2rem;
}
.info-item { display: flex; gap: 1rem; align-items: flex-start; }
.info-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; flex-shrink: 0;
  background: linear-gradient(135deg, #3297D3, #4db0e6, #2880b5);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.info-item h3 { font-size: 1.125rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.info-item p { font-size: 0.875rem; color: var(--gray-600); }

/* ===== OFFICE CARDS ===== */
.offices-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:767px) { .offices-grid { grid-template-columns: 1fr; } }
.office-card {
  position: relative; padding: 2.5rem; border-radius: 1.5rem; overflow: hidden; transition: all 0.5s;
}
.office-card:hover { border-color: rgba(50,151,211,0.3); }
.office-card h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; transition: color 0.3s; }
.office-card:hover h3 { color: var(--brand); }
.office-card .office-sub { color: var(--brand); font-size: 0.875rem; font-weight: 500; margin-bottom: 1rem; }
.office-card p { color: var(--gray-600); margin-bottom: 0.5rem; }
.office-link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--brand); font-weight: 500; margin-top: 1rem; transition: gap 0.3s; }
.office-card:hover .office-link { gap: 0.75rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 8rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #e8f2fb 50%, #ffffff 100%);
}
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--gray-900); margin-bottom: 1.5rem; }
.cta-section p { font-size: 1.125rem; color: var(--gray-600); max-width: 42rem; margin: 0 auto 2.5rem; }

/* ===== TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-owners-row { display: flex; gap: 2rem; justify-content: center; margin-bottom: 2rem; flex-wrap: wrap; }
.team-owners-row .team-card { max-width: 300px; flex: 1; min-width: 220px; }
.team-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; max-width: 42rem; margin: 0 auto; }
.team-grid-1 { display: flex; justify-content: center; }
@media(max-width:767px) { .team-grid, .team-grid-2 { grid-template-columns: 1fr; } }

.team-card {
  padding: 2rem; border-radius: 1.5rem; text-align: center; transition: all 0.5s;
}
.team-card:hover { transform: translateY(-8px); border-color: rgba(50,151,211,0.3); }
.team-avatar {
  width: 5rem; height: 5rem; border-radius: 50%; margin: 0 auto 1rem;
  background: linear-gradient(135deg, rgba(50,151,211,0.15), rgba(50,151,211,0.05));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.team-avatar-dot {
  position: absolute; bottom: 0; right: 0; width: 1.5rem; height: 1.5rem;
  border-radius: 50%; background: #10b981; border: 3px solid #fff;
  display: flex; align-items: center; justify-content: center;
}
.team-initials { font-size: 1.25rem; font-weight: 700; color: var(--brand); }
.owner-badge {
  display: inline-block; padding: 0.25rem 0.75rem; border-radius: 9999px;
  background: linear-gradient(135deg, #3297D3, #4db0e6); color: #fff;
  font-size: 0.625rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
.team-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.25rem; }
.team-card .team-role { font-size: 0.875rem; color: var(--brand); margin-bottom: 1rem; }
.team-email {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.75rem;
  color: var(--gray-600); transition: all 0.2s;
  max-width: 100%; box-sizing: border-box; overflow: hidden;
}
.team-email a { word-break: break-all; overflow-wrap: anywhere; min-width: 0; color: inherit; text-decoration: none; }
.team-email:hover { color: var(--brand); background: var(--brand-5); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 3rem; }
@media(max-width:1023px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info { padding: 2rem; border-radius: 1.5rem; }
.contact-section-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 600; margin-bottom: 1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.contact-icon { color: var(--brand); flex-shrink: 0; margin-top: 2px; font-size: 1.125rem; }
.contact-item p, .contact-item a { color: var(--gray-700); font-size: 0.875rem; }
.contact-item a:hover { color: var(--brand); }
.contact-divider { border: none; border-top: 1px solid var(--gray-200); margin: 1.5rem 0; }

.form-card { padding: 2rem; border-radius: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-bottom: 1.5rem; }
@media(max-width:639px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1.5rem; }
.form-group label, .form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.5rem; }
.form-group input, .form-group textarea, .form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem;
  background: var(--gray-50); border: 1px solid var(--gray-200); color: var(--gray-900);
  font-family: inherit; font-size: 0.875rem; outline: none; transition: all 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-input:focus, .form-textarea:focus { border-color: var(--brand); box-shadow: 0 0 0 2px rgba(50,151,211,0.2); }
.form-group textarea, .form-textarea { resize: vertical; min-height: 8rem; }
.form-submit {
  padding: 0.875rem 2rem; background: linear-gradient(135deg, #3297D3, #4db0e6, #2880b5);
  color: #fff; font-weight: 600; border-radius: 9999px; border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; transition: all 0.3s;
}
.form-submit:hover { box-shadow: 0 8px 24px rgba(50,151,211,0.3); transform: scale(1.05); }

/* Maps */
.maps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media(max-width:767px) { .maps-grid { grid-template-columns: 1fr; } }
.map-card { border-radius: 1.5rem; overflow: hidden; }
.map-card .map-header { padding: 1.5rem; }

/* ===== TIMELINE ===== */
.timeline { display: flex; flex-direction: column; gap: 1.5rem; }
.timeline-card { padding: 2rem; border-radius: 1rem; transition: all 0.3s; }
.timeline-card:hover { border-color: rgba(50,151,211,0.3); }
.timeline-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 0.75rem; }
.timeline-icon {
  width: 3rem; height: 3rem; border-radius: 0.75rem; background: var(--brand-10);
  display: flex; align-items: center; justify-content: center; color: var(--brand);
}
.timeline-year { font-size: 1.125rem; font-weight: 600; color: var(--gray-900); }
.timeline-sub { font-size: 0.875rem; color: var(--brand); }
.timeline-card p { font-size: 0.875rem; color: var(--gray-600); }

/* ===== VALUES ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
@media(max-width:1023px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:639px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  padding: 2rem; border-radius: 1rem; text-align: center; transition: all 0.5s;
}
.value-card:hover { transform: translateY(-8px); border-color: rgba(50,151,211,0.3); }
.value-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: var(--brand-10);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; color: var(--brand);
}
.value-card h3 { font-size: 1.125rem; font-weight: 600; color: var(--gray-900); margin-bottom: 0.75rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; }

/* ===== SERVICES (detail page) ===== */
.service-detail {
  padding: 2rem 2.5rem; border-radius: 1.5rem; transition: all 0.5s; margin-bottom: 2rem;
}
.service-detail:hover { border-color: rgba(50,151,211,0.3); }
.service-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: start; }
@media(max-width:1023px) { .service-detail-grid { grid-template-columns: 1fr; } }
.service-detail-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.service-detail h3 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); transition: color 0.3s; }
.service-detail:hover h3 { color: var(--brand); }
.service-detail p { color: var(--gray-600); line-height: 1.7; }
.feature-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); font-weight: 500; margin-bottom: 1rem; }
.feature-list li { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.75rem; }
.check-icon { color: var(--brand); flex-shrink: 0; }

/* ===== CALCULATOR ===== */
.calculator-wrap { padding: 2rem 3rem; border-radius: 1.5rem; }
@media(max-width:639px) { .calculator-wrap { padding: 1.5rem; } }
.calc-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.5rem; }
.calc-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 0.75rem;
  background: linear-gradient(135deg, #3297D3, #4db0e6, #2880b5);
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 4px 12px rgba(50,151,211,0.3);
}
.calc-header h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; color: var(--gray-900); }
.calc-header p { font-size: 0.875rem; color: var(--gray-600); margin-top: 0.25rem; }

.slider-group { margin-bottom: 2rem; }
.slider-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.slider-label { display: flex; align-items: center; gap: 0.75rem; }
.slider-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: linear-gradient(135deg, #3297D3, #4db0e6, #2880b5);
  display: flex; align-items: center; justify-content: center; color: #fff;
}
.slider-label span { font-size: 0.875rem; font-weight: 500; color: var(--gray-700); }
.slider-value { text-align: right; }
.slider-value strong { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); }
.slider-value small { font-size: 0.875rem; color: var(--gray-600); margin-left: 0.25rem; }
.slider-cost { font-size: 0.75rem; color: var(--brand); }

input[type="range"] { -webkit-appearance: none; appearance: none; width: 100%; height: 6px; border-radius: 9999px; outline: none; cursor: pointer; }
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--brand); cursor: pointer; box-shadow: 0 2px 8px rgba(50,151,211,0.4); transition: all 0.2s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.2); }
input[type="range"]::-moz-range-thumb { width: 20px; height: 20px; border-radius: 50%; background: var(--brand); border: none; cursor: pointer; }
.slider-labels { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; }

.calc-note { font-size: 0.75rem; color: var(--gray-500); margin: 2rem 0 1.5rem; }
.calc-total {
  padding: 1.5rem 2rem; border-radius: 1rem; display: flex;
  flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem;
}
.calc-total-label p { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gray-600); font-weight: 500; }
.calc-total-label small { font-size: 0.75rem; color: var(--gray-500); }
.calc-total-amount { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--brand); }
.calc-total-suffix { font-size: 1.25rem; color: var(--gray-600); margin-left: 0.25rem; }

/* ===== SUB-PAGE HERO ===== */
.sub-hero {
  position: relative; padding: 6.5rem 0 4rem; overflow: hidden;
}
.sub-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(50,151,211,0.10) 0%, rgba(50,151,211,0.04) 50%, #fff 100%);
}
.sub-hero .section-label { margin-bottom: 1rem; }
.sub-hero h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); font-weight: 700; color: var(--gray-900); margin-bottom: 1rem; }
.sub-hero h2 { font-size: clamp(1.25rem, 3vw, 1.75rem); color: var(--brand); font-weight: 600; margin-bottom: 2rem; }
.sub-hero p { font-size: 1.25rem; color: var(--gray-700); line-height: 1.7; max-width: 48rem; }

/* ===== INTRO CARD ===== */
.intro-card { padding: 2.5rem 3.5rem; border-radius: 1.5rem; }
@media(max-width:639px) { .intro-card { padding: 2rem; } }
.intro-card h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; color: var(--gray-900); margin-bottom: 2rem; }
.intro-card p { color: var(--gray-700); line-height: 1.7; font-size: 1.125rem; }
.intro-card .brand-text { color: var(--brand); font-weight: 500; margin-top: 1.5rem; }

/* ===== CLIENT LOGO CAROUSEL ===== */
.clients-section {
  padding: 5rem 0; overflow: hidden;
  background: linear-gradient(180deg, #ffffff, #f0f7fd, #ffffff);
}
.clients-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.clients-track {
  display: flex; align-items: center;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
.client-logo {
  height: 48px; width: auto; max-width: 140px; margin-right: 4rem;
  filter: grayscale(100%) opacity(0.45);
  transition: all 0.4s ease;
  flex-shrink: 0;
}
.client-logo:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

/* ===== FOOTER ===== */
.footer { background: #fff; border-top: 1px solid var(--gray-200); position: relative; }
.footer-glow { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 1px; background: linear-gradient(90deg, transparent, rgba(50,151,211,0.5), transparent); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 3rem; padding: 4rem 0; }
@media(max-width:1023px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(max-width:639px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 40px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 1rem; }
.footer-link-group h4 { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); margin-bottom: 1.5rem; }
.footer-link-group a, .footer-link-group li { display: block; font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0.75rem; transition: color 0.2s; }
.footer-link-group a:hover { color: var(--brand); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0.75rem; }
.footer-bottom { border-top: 1px solid var(--gray-200); padding: 2rem 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: var(--gray-500); }
.footer-social a { color: var(--gray-500); transition: color 0.2s; }
.footer-social a:hover { color: var(--brand); }

/* ===== FOCUS ===== */
a:focus-visible, button:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

/* ===== HELPERS ===== */
.mt-20 { padding-top: 5rem; }

/* ===================================================================
   RESPONSIVE – TABLET (max 1023px)
   ================================================================= */
@media(max-width:1023px) {
  .section { padding: 5rem 0; }
  .section-sm { padding: 4rem 0; }
  .cta-section { padding: 5rem 0; }
  .section-header { margin-bottom: 3rem; }
  .hero-content { padding: 2rem 1.5rem 4rem; }
  .hero-floating { display: none; } /* hide on tablet – too cramped */
  .info-card { padding: 2rem; }
  .service-detail { padding: 1.5rem 2rem; }
  .services-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .about-grid { gap: 2.5rem; }
}

/* ===================================================================
   RESPONSIVE – MOBILE (max 767px)
   ================================================================= */
@media(max-width:767px) {
  .section { padding: 3.5rem 0; }
  .section-sm { padding: 3rem 0; }
  .cta-section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }

  /* Hero */
  .hero { min-height: 100svh; padding-top: 72px; }
  .hero.hero-sm { min-height: 44vh; padding-top: 72px; }
  .hero-content { padding: 1.5rem 1rem 3rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 18rem; justify-content: center; font-size: 1rem; padding: 0.875rem 1.5rem; }
  .hero-stats { padding: 1.25rem 1rem !important; gap: 1rem; }
  .hero-stat .stat-number { font-size: 1.75rem; }
  .hero-floating { display: none; }
  .scroll-indicator { display: none; }

  /* Navbar logo */
  .navbar-logo span { font-size: 0.875rem; }
  .navbar-logo img { height: 44px; width: 150px; object-fit: contain; }

  /* Sections */
  .container { padding: 0 1rem; }
  .section-title { font-size: clamp(1.6rem, 5vw, 2.25rem); }

  /* About / Info */
  .about-grid { gap: 2rem; }
  .info-card { padding: 1.5rem; gap: 1.5rem; }
  .about-tags { gap: 0.75rem; }

  /* Office cards */
  .offices-grid { grid-template-columns: 1fr; }
  .office-card { padding: 1.75rem; }

  /* Team */
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-owners-row { gap: 1rem; }
  .team-owners-row .team-card { max-width: 100%; min-width: 150px; }
  .team-card { padding: 1.5rem 1rem; overflow: hidden; }
  .team-avatar { width: 4rem; height: 4rem; }
  .team-email { display: flex !important; width: 100% !important; box-sizing: border-box !important; padding: 0.5rem 0.75rem !important; border-radius: 0.75rem !important; font-size: 0.7rem !important; }
  .team-email a { word-break: break-all !important; overflow-wrap: anywhere !important; min-width: 0 !important; }

  /* Services */
  .services-detail-grid { grid-template-columns: 1fr; }
  .service-detail { padding: 1.25rem 1.5rem; }
  .service-detail ul { padding-left: 0; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .value-card { padding: 1.5rem 1rem; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 1.25rem !important; padding: 1.75rem 1.25rem !important; }

  /* Calculator */
  .calculator { padding: 1.5rem !important; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem !important; }

  /* Footer */
  .footer-grid { gap: 2rem; padding: 3rem 0; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* Clients carousel – keep functional, just tweak height */
  .client-logo { height: 36px; margin-right: 2.5rem; }
  .clients-section { padding: 3rem 0; }

  /* Glass cards text */
  .glass[style*="padding:2.5rem 3rem"] { padding: 1.5rem !important; }
}

/* ===================================================================
   RESPONSIVE – EXTRA SMALL (max 480px)
   ================================================================= */
@media(max-width:479px) {
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr !important; padding: 1rem 0.75rem !important; }
  .hero-stat .stat-number { font-size: 1.5rem; }
}
.hidden { display: none; }
@media(min-width:640px) { .sm-show { display: block !important; } }
