@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ══════════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
  --navy:        #0f2057;
  --navy-mid:    #1a3075;
  --navy-light:  #2a4090;
  --gold:        #f5a800;
  --gold-dark:   #d48f00;
  --gold-light:  #ffc940;
  --gold-glow:   rgba(245,168,0,0.13);
  --cyan:        #0099cc;
  --cyan-dark:   #0077aa;
  --cyan-glow:   rgba(0,153,204,0.12);
  --orange:      #ff6b35;
  --orange-glow: rgba(255,107,53,0.1);
  --bg-primary:     #ffffff;
  --bg-secondary:   #f4f6fc;
  --bg-card:        #ffffff;
  --bg-card-hover:  #eef2ff;
  --text-primary:   #0f2057;
  --text-secondary: #3d4f7c;
  --text-muted:     #7888aa;
  --border:         rgba(15,32,87,0.1);
  --border-gold:    rgba(245,168,0,0.4);
  --border-blue:    rgba(0,153,204,0.25);
  --shadow-sm:   0 2px 12px rgba(15,32,87,0.07);
  --shadow-md:   0 8px 32px rgba(15,32,87,0.1);
  --shadow-gold: 0 4px 24px rgba(245,168,0,0.2);
  --shadow-blue: 0 4px 24px rgba(0,153,204,0.15);
  --nav-h:       76px;
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ══════════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { background: var(--bg-primary); color: var(--text-primary); font-family: 'Space Grotesk', sans-serif; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f4f6fc; }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
h1, h2, h3, h4, h5 { font-family: 'Outfit', sans-serif; line-height: 1.2; font-weight: 700; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
h4 { font-size: clamp(1rem, 1.8vw, 1.15rem); }
.eyebrow { font-size: .78rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; display: block; }
.gradient-text { background: linear-gradient(135deg, var(--navy) 0%, var(--cyan) 50%, var(--gold) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ══════════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header p { color: var(--text-secondary); font-size: 1.05rem; max-width: 580px; margin: .75rem auto 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 30px; border-radius: 8px; font-weight: 700; font-size: .9rem; transition: var(--transition); position: relative; overflow: hidden; white-space: nowrap; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 4px 20px rgba(15,32,87,0.25); }
.btn-primary:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(15,32,87,0.3); }
.btn-secondary { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-secondary:hover { background: var(--navy); color: #fff; }
.btn-gold { background: var(--gold); color: var(--navy); font-weight: 800; box-shadow: var(--shadow-gold); }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(245,168,0,0.3); }
.btn-orange { background: var(--gold); color: var(--navy); font-weight: 800; box-shadow: var(--shadow-gold); }
.btn-orange:hover { background: var(--gold-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════
   NAVIGATION
══════════════════════════════════════════════ */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; height: var(--nav-h); background: rgba(255,255,255,0.97); transition: var(--transition); }
nav.scrolled { backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); box-shadow: 0 2px 20px rgba(15,32,87,0.1); border-bottom: 1px solid var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 12px; }
.nav-logo { display: flex; align-items: center; gap: 4px; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-text .brand { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--navy); }
.nav-logo-text .brand span { color: var(--gold); }
.nav-logo-text .tagline-nav { font-size: .58rem; color: var(--text-muted); letter-spacing: .12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 8px 14px; border-radius: 6px; font-size: .88rem; font-weight: 600; color: var(--text-secondary); transition: var(--transition); white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--navy); background: var(--gold-glow); }
.nav-links a.active { color: var(--gold-dark); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: #fff; padding: 16px 24px 24px; border-bottom: 2px solid var(--border); z-index: 999; box-shadow: 0 8px 32px rgba(15,32,87,0.1); }
.mobile-menu.open { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a { padding: 12px 16px; border-radius: 8px; font-size: 1rem; font-weight: 600; color: var(--text-secondary); transition: var(--transition); display: block; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--navy); background: var(--gold-glow); }
.mobile-menu .mobile-cta { margin-top: 12px; text-align: center; justify-content: center; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: var(--nav-h); background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #0d1e50 100%); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; opacity: .08; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,32,87,.96) 0%, rgba(26,48,117,.88) 50%, rgba(15,32,87,.92) 100%); }
.hero-grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(245,168,0,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(245,168,0,.06) 1px, transparent 1px); background-size: 60px 60px; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 820px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,168,0,0.12); border: 1px solid rgba(245,168,0,0.3); border-radius: 100px; padding: 6px 16px; font-size: .78rem; font-weight: 700; color: var(--gold); margin-bottom: 28px; letter-spacing: .06em; }
.hero-badge::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; flex-shrink: 0; }
.hero h1 { margin-bottom: 24px; color: #fff; }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.72); max-width: 580px; margin-bottom: 40px; line-height: 1.78; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; }
.hero-stat-num span { color: var(--gold); }
.hero-stat-label { font-size: .78rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: .1em; margin-top: 2px; }
.hero-stats { display: flex; gap: 48px; margin-top: 64px; padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1); flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.card:hover { background: var(--bg-card-hover); border-color: var(--border-gold); transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.card-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; flex-shrink: 0; }
.card-icon.blue { background: var(--cyan-glow); border: 1px solid var(--border-blue); }
.card-icon.orange { background: var(--gold-glow); border: 1px solid var(--border-gold); }
.card-icon svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; color: var(--navy); }
.card p { color: var(--text-secondary); font-size: .93rem; line-height: 1.7; }

/* ══════════════════════════════════════════════
   SERVICE CARDS
══════════════════════════════════════════════ */
.service-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.service-card:hover { border-color: var(--border-gold); transform: translateY(-6px); box-shadow: var(--shadow-gold); }
.service-card-visual { height: 200px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.service-card-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover .service-card-visual img { transform: scale(1.05); }
.service-card-body { padding: 28px; }
.service-card-body h3 { margin-bottom: 10px; color: var(--navy); }
.service-card-body p { color: var(--text-secondary); font-size: .9rem; line-height: 1.7; margin-bottom: 16px; }
.service-tag { display: inline-block; background: rgba(245,168,0,0.1); border: 1px solid var(--border-gold); color: var(--gold-dark); padding: 3px 10px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .04em; margin: 3px 2px; }

/* ══════════════════════════════════════════════
   SECTION INTRO BADGE
══════════════════════════════════════════════ */
.section-intro-badge { display: inline-block; padding: 4px 14px; border-radius: 100px; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; border: 1px solid; margin-bottom: 12px; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonial-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 32px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.testimonial-card:hover { border-color: var(--border-gold); }
.stars { display: flex; gap: 3px; margin-bottom: 16px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card blockquote { font-size: .95rem; color: var(--text-secondary); line-height: 1.75; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--cyan)); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1rem; color: #fff; flex-shrink: 0; }
.author-name { font-weight: 700; font-size: .9rem; color: var(--navy); }
.author-role { font-size: .78rem; color: var(--text-muted); }

/* ══════════════════════════════════════════════
   INDUSTRIES
══════════════════════════════════════════════ */
.industry-pill { display: flex; align-items: center; gap: 12px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; transition: var(--transition); box-shadow: var(--shadow-sm); }
.industry-pill:hover { border-color: var(--border-gold); background: var(--gold-glow); transform: translateY(-2px); }
.industry-pill svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; }
.industry-pill span { font-weight: 600; font-size: .88rem; color: var(--navy); }

/* ══════════════════════════════════════════════
   WHY US
══════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.why-item { display: flex; gap: 20px; margin-bottom: 32px; }
.why-item:last-child { margin-bottom: 0; }
.why-num { font-family: 'Outfit', sans-serif; font-size: 2.5rem; font-weight: 900; line-height: 1; color: var(--border-gold); min-width: 52px; }
.why-text h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.why-text p { font-size: .88rem; color: var(--text-secondary); line-height: 1.65; }

/* ══════════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════════ */
.cta-section { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 100px 0; text-align: center; }
.cta-section h2 { margin-bottom: 16px; color: #fff; }
.cta-section p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 40px; font-size: 1.05rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-section .eyebrow { color: var(--gold); }

/* ══════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-detail-icon { width: 44px; height: 44px; border-radius: 10px; background: var(--gold-glow); border: 1px solid var(--border-gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 20px; height: 20px; color: var(--gold-dark); }
.contact-detail-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); margin-bottom: 4px; }
.contact-detail-value { font-weight: 600; color: var(--text-primary); }
.contact-form { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .82rem; font-weight: 700; color: var(--text-secondary); margin-bottom: 8px; letter-spacing: .04em; text-transform: uppercase; }
input, textarea, select { width: 100%; background: #fff; border: 1.5px solid var(--border); border-radius: 8px; padding: 13px 16px; color: var(--text-primary); font-family: inherit; font-size: .95rem; transition: var(--transition); outline: none; }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); background: #fffdf5; box-shadow: 0 0 0 3px rgba(245,168,0,0.1); }
select option { background: #fff; color: var(--text-primary); }
textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; }

/* ══════════════════════════════════════════════
   ABOUT PAGE
══════════════════════════════════════════════ */
.about-hero-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; box-shadow: var(--shadow-md); }
.about-hero-img img { width: 100%; height: 440px; object-fit: cover; }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; padding: 24px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.stat-card:hover { border-color: var(--border-gold); }
.stat-card .num { font-family: 'Outfit', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--gold-dark); }
.stat-card .lbl { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; margin-top: 4px; }
.team-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 28px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.team-card:hover { border-color: var(--border-gold); transform: translateY(-4px); }
.team-avatar { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--cyan)); display: flex; align-items: center; justify-content: center; font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 1.6rem; color: #fff; margin: 0 auto 16px; }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; color: var(--navy); }
.team-card .role { font-size: .82rem; color: var(--gold-dark); font-weight: 700; margin-bottom: 8px; }
.team-card .bio { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }

/* ══════════════════════════════════════════════
   PAGE HERO
══════════════════════════════════════════════ */
.page-hero { padding: 140px 0 80px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); }
.page-hero::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, rgba(245,168,0,.12) 0%, transparent 70%); z-index: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.05rem; max-width: 560px; margin: .75rem auto 0; }
.page-hero .eyebrow { color: var(--gold); }

/* ══════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════ */
.divider { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--cyan)); border-radius: 2px; margin: 20px auto; }
.divider.left { margin: 20px 0; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
footer { background: var(--navy); border-top: 3px solid var(--gold); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: .88rem; line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 12px; flex-wrap: wrap; }
.footer-social a { width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer-social a:hover { background: var(--gold-glow); border-color: var(--border-gold); }
.footer-social svg { width: 17px; height: 17px; color: rgba(255,255,255,0.6); }
.footer-col h4 { font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: .88rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-newsletter p { font-size: .88rem; color: rgba(255,255,255,0.55); margin-bottom: 14px; line-height: 1.6; }
.newsletter-input { display: flex; gap: 0; }
.newsletter-input input { border-radius: 8px 0 0 8px; border-right: none; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); color: #fff; }
.newsletter-input input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input button { background: var(--gold); color: var(--navy); padding: 0 18px; border-radius: 0 8px 8px 0; font-weight: 800; font-size: .85rem; white-space: nowrap; transition: var(--transition); cursor: pointer; }
.newsletter-input button:hover { background: var(--gold-light); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: .82rem; color: rgba(255,255,255,0.4); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-brand .nav-logo-text .brand { color: #fff; }
.footer-brand .nav-logo-text .brand span { color: var(--gold); }

/* ══════════════════════════════════════════════
   WHATSAPP BUTTON
══════════════════════════════════════════════ */
.whatsapp-btn { position: fixed; bottom: 28px; right: 28px; z-index: 900; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.4); transition: var(--transition); }
.whatsapp-btn:hover { transform: scale(1.1); box-shadow: 0 8px 32px rgba(37,211,102,.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ══════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════ */
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);}50%{opacity:.5;transform:scale(1.4);} }
@keyframes float  { 0%,100%{transform:translateY(0);}50%{transform:translateY(-10px);} }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px);}to{opacity:1;transform:translateY(0);} }
.animate-on-scroll { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.animate-on-scroll.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════ */

/* ── LARGE DESKTOP (max 1280px) ── */
@media(max-width:1280px){
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 36px; }
}

/* ── TABLET LANDSCAPE (max 1024px) ── */
@media(max-width:1024px){
  :root { --nav-h: 68px; }
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-content { max-width: 100%; }
  .hero { min-height: auto; padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
  .card { padding: 26px; }
  .contact-form { padding: 32px; }
  .nav-links a { padding: 8px 10px; font-size: .84rem; }
}

/* ── TABLET PORTRAIT (max 900px) ── */
@media(max-width:900px){
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .about-hero-img img { height: 320px; }
  .hero-stats { gap: 28px; }
}

/* ── MOBILE (max 768px) ── */
@media(max-width:768px){
  :root { --nav-h: 64px; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 36px; }
  .section-header p { font-size: .95rem; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }

  /* Nav */
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .nav-hamburger { display: flex; }
  .nav-logo img { height: 42px; }
  nav { height: var(--nav-h); }
  .nav-inner { height: var(--nav-h); }
  .nav-cta .btn-gold { padding: 9px 16px; font-size: .82rem; }

  /* Hero */
  .hero { min-height: auto; padding: calc(var(--nav-h) + 36px) 0 56px; }
  .hero h1 { font-size: clamp(1.7rem, 6.5vw, 2.5rem); }
  .hero-sub { font-size: 1rem; margin-bottom: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { justify-content: center; text-align: center; width: 100%; }
  .hero-badge { font-size: .72rem; padding: 5px 14px; }
  .hero-stats { gap: 20px; margin-top: 40px; padding-top: 28px; flex-wrap: wrap; }
  .hero-stat-num { font-size: 1.6rem; }

  /* Page Hero */
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: clamp(1.5rem, 5.5vw, 2.2rem); }
  .page-hero p { font-size: .95rem; }

  /* Cards */
  .card { padding: 22px; }
  .card-icon { width: 44px; height: 44px; margin-bottom: 16px; }
  .service-card-visual { height: 160px; }
  .service-card-body { padding: 20px; }

  /* Contact */
  .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; }
  input, textarea, select { padding: 12px 14px; font-size: .9rem; }
  .contact-detail { gap: 12px; margin-bottom: 22px; }
  .contact-detail-icon { width: 40px; height: 40px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }
  footer { padding: 48px 0 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 14px; }

  /* Buttons */
  .btn { padding: 12px 24px; font-size: .88rem; }
  .cta-actions { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-section { padding: 70px 0; }
  .cta-section h2 { font-size: clamp(1.4rem, 4vw, 1.9rem); }
  .cta-section p { font-size: .95rem; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; gap: 24px; }
  .why-item { margin-bottom: 20px; gap: 16px; }
  .why-num { font-size: 2rem; min-width: 42px; }

  /* Testimonials */
  .testimonial-card { padding: 22px; }
  .testimonial-card blockquote { font-size: .9rem; }

  /* About */
  .stat-card { padding: 18px; }
  .stat-card .num { font-size: 1.8rem; }
  .about-hero-img img { height: 260px; }
  .team-card { padding: 22px; }
  .team-avatar { width: 64px; height: 64px; font-size: 1.3rem; }

  /* Divider */
  .divider { margin: 16px auto; }
  .divider.left { margin: 16px 0; }

  /* WhatsApp */
  .whatsapp-btn { bottom: 20px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-btn svg { width: 25px; height: 25px; }

  /* Industries */
  .industry-pill { padding: 12px 14px; }
  .industry-pill span { font-size: .82rem; }

  /* Eyebrow */
  .eyebrow { font-size: .72rem; letter-spacing: .14em; }
}

/* ── SMALL MOBILE (max 480px) ── */
@media(max-width:480px){
  .container { padding: 0 14px; }
  .section { padding: 48px 0; }
  .grid-4 { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .hero h1 { font-size: clamp(1.5rem, 7.5vw, 2rem); }

  /* Page Hero */
  .page-hero { padding: 90px 0 44px; }
  .page-hero h1 { font-size: clamp(1.3rem, 6vw, 1.8rem); }
  .page-hero p { font-size: .88rem; margin-top: .5rem; }

  /* Cards */
  .card { padding: 18px; border-radius: 14px; }
  .service-card-visual { height: 140px; }
  .service-card-body { padding: 16px; }
  .service-card-body h3 { font-size: 1rem; }
  .service-card-body p { font-size: .85rem; }

  /* Contact */
  .contact-form { padding: 18px; border-radius: 14px; }
  .contact-detail-value { font-size: .9rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 28px; }
  footer { padding: 40px 0 20px; }
  .footer-brand { grid-column: auto; }
  .footer-brand p { margin: 12px 0 18px; font-size: .85rem; }
  .footer-social a { width: 34px; height: 34px; }
  .footer-bottom p { font-size: .75rem; }
  .footer-bottom-links a { font-size: .75rem; }

  /* Buttons */
  .btn { padding: 11px 20px; font-size: .85rem; }
  .cta-actions .btn { max-width: 100%; }
  .cta-section { padding: 52px 0; }

  /* Typography */
  h2 { font-size: clamp(1.3rem, 5.5vw, 1.7rem); }
  h3 { font-size: clamp(1rem, 3vw, 1.2rem); }

  /* Nav */
  .nav-logo img { height: 38px; }
  .nav-cta .btn-gold { padding: 8px 14px; font-size: .8rem; }

  /* About */
  .about-hero-img img { height: 220px; }
  .team-avatar { width: 58px; height: 58px; font-size: 1.2rem; }

  /* Misc */
  .why-num { font-size: 1.6rem; min-width: 36px; }
  .stat-card .num { font-size: 1.5rem; }
  .industry-pill { padding: 10px 14px; gap: 10px; }
}

/* ── TINY SCREENS (max 360px) ── */
@media(max-width:360px){
  .container { padding: 0 12px; }
  .hero h1 { font-size: 1.35rem; }
  .page-hero h1 { font-size: 1.2rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1rem; }
  .btn { padding: 10px 16px; font-size: .82rem; }
  .card { padding: 15px; }
  .contact-form { padding: 14px; }
  .nav-logo img { height: 34px; }
  .nav-cta .btn-gold { padding: 7px 12px; font-size: .76rem; }
  .hero-badge { font-size: .65rem; padding: 4px 10px; }
  .footer-col h4 { font-size: .78rem; }
  .whatsapp-btn { width: 44px; height: 44px; bottom: 16px; right: 14px; }
  .whatsapp-btn svg { width: 22px; height: 22px; }
  .footer-grid { gap: 20px; }
}
