/* =============================================
   3M DESIGN SOLUTIONS — Main Stylesheet
   Teal #00A99D | Navy #1A2B4A | Accent #B2E0DC
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&family=Barlow+Condensed:wght@600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --teal: #00A99D;
  --teal-dark: #007d74;
  --teal-light: #B2E0DC;
  --teal-pale: #e1f5f3;
  --navy: #1A2B4A;
  --navy-dark: #0f1e36;
  --navy-mid: #243a5e;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #f0f0f0;
  --gray-400: #aaaaaa;
  --gray-600: #666666;
  --gray-800: #333333;
  --font-heading: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-fine: 'Inter', sans-serif;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-pill: 50px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --transition: all 0.3s ease;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--gray-800); background: var(--white); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); }

/* PRELOADER */
#preloader {
  position: fixed; inset: 0; background: var(--navy-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-cube {
  width: 64px; height: 64px; background: var(--teal); border-radius: 14px;
  margin-bottom: 24px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 24px; font-weight: 800; color: white;
  animation: cubeSpin 1.4s ease-in-out infinite;
}
@keyframes cubeSpin {
  0%   { transform: rotate(0deg) scale(1); border-radius: 14px; }
  50%  { transform: rotate(180deg) scale(1.2); border-radius: 50%; }
  100% { transform: rotate(360deg) scale(1); border-radius: 14px; }
}
.preloader-text {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--white); letter-spacing: 4px; text-transform: uppercase; margin-bottom: 16px;
}
.preloader-bar {
  width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 2px; overflow: hidden;
}
.preloader-bar-fill {
  height: 100%; background: var(--teal); width: 0%; animation: barFill 2s ease forwards;
}
@keyframes barFill { to { width: 100%; } }

/* NAVBAR */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 22px 0; transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: var(--navy-dark); padding: 13px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; }
.nav-logo-text {
  font-family: var(--font-heading); font-size: 20px; font-weight: 800;
  color: var(--white); letter-spacing: 1px; line-height: 1.1;
}
.nav-logo-text span { color: var(--teal); }
.nav-links { display: flex; align-items: center; gap: 30px; }
.nav-links a {
  font-family: var(--font-fine); font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.8); transition: var(--transition); position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--teal); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta {
  background: var(--teal) !important; color: var(--white) !important;
  padding: 9px 22px; border-radius: var(--radius-pill); font-weight: 600 !important;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }
.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--navy-dark); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 28px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-heading); font-size: 30px; font-weight: 700;
  color: var(--white); letter-spacing: 2px; transition: var(--transition);
}
.mobile-menu a:hover { color: var(--teal); }
.mobile-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--white); font-size: 34px; line-height: 1; }

/* PAGE HERO */
.page-hero {
  background: var(--navy); padding: 150px 28px 80px;
  text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,169,157,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-geo {
  position: absolute; right: -60px; top: -60px;
  width: 320px; height: 320px;
  border: 44px solid rgba(0,169,157,0.07); border-radius: 50%;
  pointer-events: none;
}
.page-hero-tag {
  display: inline-block; background: rgba(0,169,157,0.15); color: var(--teal-light);
  font-family: var(--font-fine); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; padding: 6px 18px;
  border-radius: var(--radius-pill); margin-bottom: 18px; border: 1px solid rgba(0,169,157,0.3);
}
.page-hero h1 {
  font-family: var(--font-heading); font-size: clamp(38px, 6vw, 60px);
  font-weight: 800; color: var(--white); line-height: 1.05;
  letter-spacing: 1px; margin-bottom: 16px;
}
.page-hero h1 span { color: var(--teal); }
.page-hero p {
  font-family: var(--font-fine); font-size: 16px; color: var(--teal-light);
  max-width: 560px; margin: 0 auto; line-height: 1.75;
}

/* SECTIONS */
.section { padding: 96px 28px; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--navy); }
.section-teal-bg { background: var(--teal-pale); }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-fine); font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-label::before { content: ''; display: block; width: 26px; height: 2px; background: var(--teal); }
.section-title {
  font-family: var(--font-heading); font-size: clamp(30px, 4vw, 44px);
  font-weight: 800; color: var(--navy); line-height: 1.1;
  letter-spacing: 0.5px; margin-bottom: 14px;
}
.section-title.light { color: var(--white); }
.section-title span { color: var(--teal); }
.section-sub {
  font-family: var(--font-fine); font-size: 15px;
  color: var(--gray-600); line-height: 1.8; max-width: 560px;
}
.section-sub.light { color: var(--teal-light); }
.section-header { margin-bottom: 56px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-sub { margin: 0 auto; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 15px; font-weight: 700;
  padding: 13px 30px; border-radius: var(--radius-pill);
  border: 2px solid transparent; transition: var(--transition); letter-spacing: 0.3px;
}
.btn-primary { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,169,157,0.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: var(--white); transform: translateY(-2px); }
.btn-outline-teal { background: transparent; color: var(--teal); border-color: var(--teal); }
.btn-outline-teal:hover { background: var(--teal); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--teal); border-color: var(--white); }
.btn-white:hover { background: var(--teal-pale); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 16px; height: 16px; fill: currentColor; flex-shrink: 0; }

/* CARDS */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.07); padding: 32px;
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--teal-light); }
.card-icon {
  width: 54px; height: 54px; background: var(--teal-pale);
  border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center; margin-bottom: 22px;
}
.card-icon svg { width: 24px; height: 24px; fill: var(--teal); }

/* GRID LAYOUTS */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* STAT CARDS */
.stat-card { text-align: center; padding: 28px 20px; }
.stat-card .num {
  font-family: var(--font-heading); font-size: 52px; font-weight: 800;
  color: var(--teal); line-height: 1; margin-bottom: 8px;
}
.stat-card .lbl { font-family: var(--font-fine); font-size: 13px; color: var(--gray-600); font-weight: 500; }
.stat-card.light .num { color: var(--white); }
.stat-card.light .lbl { color: var(--teal-light); }

/* PROCESS STEPS */
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 27px; left: 12.5%; right: 12.5%;
  height: 2px; background: rgba(0,169,157,0.25); z-index: 0;
}
.process-step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 54px; height: 54px; background: var(--teal); border-radius: 50%;
  margin: 0 auto 22px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 22px; font-weight: 800; color: var(--white);
  border: 4px solid var(--navy); box-shadow: 0 0 0 2px var(--teal);
}
.process-step h3 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 10px; letter-spacing: 0.5px;
}
.process-step p { font-family: var(--font-fine); font-size: 13px; color: var(--teal-light); line-height: 1.7; }

/* TESTIMONIALS */
.testi-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06);
}
.testi-stars { color: var(--teal); font-size: 16px; margin-bottom: 14px; letter-spacing: 3px; }
.testi-card blockquote {
  font-family: var(--font-fine); font-size: 14px; color: var(--gray-600);
  line-height: 1.8; margin-bottom: 20px; font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 15px; font-weight: 700; color: var(--teal);
}
.testi-name { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--navy); }
.testi-role { font-family: var(--font-fine); font-size: 12px; color: var(--gray-400); }

/* CTA BANNER */
.cta-banner {
  background: var(--teal); padding: 80px 28px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; right: -80px; top: -80px;
  width: 340px; height: 340px;
  border: 56px solid rgba(255,255,255,0.08); border-radius: 50%; pointer-events: none;
}
.cta-banner::after {
  content: ''; position: absolute; left: -60px; bottom: -60px;
  width: 240px; height: 240px;
  border: 40px solid rgba(255,255,255,0.06); border-radius: 50%; pointer-events: none;
}
.cta-banner h2 {
  font-family: var(--font-heading); font-size: clamp(30px, 4vw, 46px);
  font-weight: 800; color: var(--white); margin-bottom: 14px; letter-spacing: 0.5px; position: relative;
}
.cta-banner p {
  font-family: var(--font-fine); font-size: 16px; color: rgba(255,255,255,0.85);
  max-width: 520px; margin: 0 auto 36px; line-height: 1.75; position: relative;
}
.cta-banner-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* FOOTER */
#footer { background: var(--navy-dark); }
.footer-teal-bar { height: 3px; background: var(--teal); }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 64px 28px 48px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-brand .footer-logo img { height: 34px; }
.footer-brand .footer-logo-text {
  font-family: var(--font-heading); font-size: 18px; font-weight: 800; color: var(--white); line-height: 1.1;
}
.footer-brand .footer-logo-text span { color: var(--teal); }
.footer-brand p { font-family: var(--font-fine); font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.85; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-icon {
  width: 38px; height: 38px; background: rgba(255,255,255,0.06); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.social-icon:hover { background: var(--teal); border-color: var(--teal); transform: translateY(-2px); }
.social-icon svg { width: 16px; height: 16px; fill: rgba(255,255,255,0.65); }
.social-icon:hover svg { fill: var(--white); }
.footer-col h4 {
  font-family: var(--font-heading); font-size: 15px; font-weight: 700;
  color: var(--white); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul li a {
  font-family: var(--font-fine); font-size: 13px;
  color: rgba(255,255,255,0.45); transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 5px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 16px; }
.footer-contact-item svg { width: 16px; height: 16px; fill: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span { font-family: var(--font-fine); font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; }
.footer-bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.07); padding: 22px 28px;
  max-width: 1200px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom-bar p { font-family: var(--font-fine); font-size: 12px; color: rgba(255,255,255,0.28); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-family: var(--font-fine); font-size: 12px; color: rgba(255,255,255,0.28); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }

/* FLOATING BUTTONS */
.floating-btns { position: fixed; bottom: 28px; right: 28px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.whatsapp-btn, .backtotop-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: none; transition: var(--transition); box-shadow: var(--shadow-md);
}
.whatsapp-btn { background: #25D366; }
.whatsapp-btn:hover { background: #1da851; transform: scale(1.1); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.whatsapp-btn svg { width: 26px; height: 26px; fill: var(--white); }
.backtotop-btn { background: var(--navy); opacity: 0; visibility: hidden; }
.backtotop-btn.visible { opacity: 1; visibility: visible; }
.backtotop-btn:hover { background: var(--teal); transform: scale(1.1); }
.backtotop-btn svg { width: 20px; height: 20px; fill: var(--white); }

/* COOKIE BANNER */
#cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy-dark); border-top: 2px solid var(--teal);
  padding: 18px 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.5s ease;
}
#cookie-banner.show { transform: translateY(0); }
#cookie-banner p { font-family: var(--font-fine); font-size: 13px; color: rgba(255,255,255,0.65); line-height: 1.6; flex: 1; min-width: 220px; }
#cookie-banner p a { color: var(--teal); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-accept {
  background: var(--teal); color: var(--white); padding: 9px 22px;
  border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 13px;
  font-weight: 600; border: none; transition: var(--transition);
}
.cookie-accept:hover { background: var(--teal-dark); }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5); padding: 9px 22px;
  border-radius: var(--radius-pill); font-family: var(--font-body); font-size: 13px;
  border: 1px solid rgba(255,255,255,0.15); transition: var(--transition);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.4); color: var(--white); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* CONTACT FORM */
.contact-form .form-group { margin-bottom: 20px; }
.contact-form label {
  display: block; font-family: var(--font-fine); font-size: 11px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px;
  color: var(--gray-600); margin-bottom: 8px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; background: var(--gray-100); border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md); padding: 13px 16px;
  font-family: var(--font-fine); font-size: 14px; color: var(--gray-800);
  transition: var(--transition); outline: none; appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--teal); background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,169,157,0.1);
}
.contact-form textarea { height: 140px; resize: vertical; }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-info-icon {
  width: 48px; height: 48px; background: var(--teal-pale);
  border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 22px; height: 22px; fill: var(--teal); }
.contact-info-label { font-family: var(--font-fine); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-value { font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--navy); }

/* PORTFOLIO */
.portfolio-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07); transition: var(--transition); box-shadow: var(--shadow-sm);
}
.portfolio-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.portfolio-thumb {
  height: 210px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.portfolio-thumb-icon { font-family: var(--font-heading); font-size: 52px; font-weight: 800; color: rgba(255,255,255,0.45); }
.portfolio-category {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,0.45); color: var(--white);
  font-family: var(--font-fine); font-size: 10px; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius-pill); letter-spacing: 0.5px;
}
.portfolio-body { padding: 26px; }
.portfolio-body h3 { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.portfolio-body p { font-family: var(--font-fine); font-size: 13px; color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }
.portfolio-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.portfolio-tag {
  background: var(--teal-pale); color: var(--teal-dark);
  font-family: var(--font-fine); font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: var(--radius-pill);
}

/* COMPARISON TABLE */
.comparison-wrapper { overflow-x: auto; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.comparison-table th, .comparison-table td {
  padding: 16px 22px; text-align: left;
  font-family: var(--font-fine); font-size: 14px; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.comparison-table thead th {
  background: var(--navy); color: var(--white);
  font-family: var(--font-heading); font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
}
.comparison-table thead th.teal-col { background: var(--teal); }
.comparison-table tbody tr:nth-child(even) td { background: var(--gray-100); }
.comparison-table tbody tr:hover td { background: var(--teal-pale); }
.check { color: var(--teal); font-size: 18px; font-weight: 700; }
.cross { color: #bbb; font-size: 20px; }

/* VALUE CARDS */
.value-card {
  padding: 34px; border-radius: var(--radius-lg); text-align: center;
  background: var(--white); border: 1px solid rgba(0,0,0,0.07);
  transition: var(--transition); box-shadow: var(--shadow-sm);
}
.value-card:hover { border-color: var(--teal); transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 62px; height: 62px; background: var(--teal-pale); border-radius: 50%;
  margin: 0 auto 20px; display: flex; align-items: center; justify-content: center;
}
.value-icon svg { width: 28px; height: 28px; fill: var(--teal); }
.value-card h3 { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.value-card p { font-family: var(--font-fine); font-size: 13px; color: var(--gray-600); line-height: 1.75; }

/* TIMELINE */
.timeline { position: relative; max-width: 720px; margin: 0 auto; }
.timeline::before {
  content: ''; position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--teal-light); transform: translateX(-50%);
}
.timeline-item { display: flex; gap: 36px; margin-bottom: 48px; align-items: flex-start; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content {
  flex: 1; background: var(--white); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); border: 1px solid rgba(0,0,0,0.06);
}
.timeline-year { font-family: var(--font-heading); font-size: 13px; font-weight: 700; color: var(--teal); letter-spacing: 1px; margin-bottom: 6px; }
.timeline-content h3 { font-family: var(--font-heading); font-size: 19px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-content p { font-family: var(--font-fine); font-size: 13px; color: var(--gray-600); line-height: 1.75; }
.timeline-dot {
  width: 46px; height: 46px; background: var(--teal); border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 13px; font-weight: 800; color: var(--white);
  border: 4px solid var(--white); box-shadow: 0 0 0 2px var(--teal); z-index: 1;
}

/* TEAM CARDS */
.team-card { text-align: center; }
.team-avatar {
  width: 100px; height: 100px; background: var(--navy); border-radius: 50%;
  margin: 0 auto 18px; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-size: 34px; font-weight: 800; color: var(--teal);
  border: 3px solid var(--teal-light);
}
.team-card h3 { font-family: var(--font-heading); font-size: 21px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.team-card .role { font-family: var(--font-fine); font-size: 13px; color: var(--teal); font-weight: 600; margin-bottom: 12px; }
.team-card p { font-family: var(--font-fine); font-size: 13px; color: var(--gray-600); line-height: 1.75; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .process-grid::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-bar { flex-direction: column; gap: 12px; text-align: center; }
  .timeline::before { left: 22px; }
  .timeline-item, .timeline-item:nth-child(even) { flex-direction: row; }
  .cta-banner-btns { flex-direction: column; align-items: center; }
  .section { padding: 70px 20px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .page-hero { padding: 120px 16px 56px; }
  .grid-4 { grid-template-columns: 1fr; }
  .floating-btns { bottom: 18px; right: 18px; }
}
