/* ==========================================================================
   BRANDKEEY AGENCY — Custom Stylesheet
   Premium Apple-inspired glassmorphism design system
   ========================================================================== */

/* ---------- ROOT TOKENS ---------- */
:root {
  --primary: #022f4a;
  --primary-600: #033d61;
  --primary-400: #0a5a86;
  --secondary: #f37f23;
  --secondary-600: #d96b14;
  --bg: #f6f9fc;
  --ink: #042f49;
  --muted: #5b6b78;
  --line: rgba(2, 47, 74, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-bg-strong: rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.6);
  --shadow-sm: 0 4px 14px rgba(2, 47, 74, 0.06);
  --shadow-md: 0 10px 30px rgba(2, 47, 74, 0.10);
  --shadow-lg: 0 25px 60px rgba(2, 47, 74, 0.18);
  --radius: 18px;
}

/* ---------- BASE ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--ink);
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', 'Inter', sans-serif; letter-spacing: -1px; color: var(--primary); }
body.lang-bn, body.lang-bn h1, body.lang-bn h2, body.lang-bn h3, body.lang-bn h4, body.lang-bn h5 {
  font-family: 'Anek Bangla', 'Noto Sans Bengali', system-ui, sans-serif;
}
a { color: inherit; text-decoration: none; }

/* ---------- GLASS SYSTEM ---------- */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.glass-strong {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.glass-dark {
  background: rgba(2, 47, 74, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
}

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  padding: 14px 0; transition: all .35s ease;
}
.navbar.scrolled { padding: 8px 0; }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 999px;
  box-shadow: 0 8px 30px rgba(2,47,74,0.08);
}
.brand { display:flex; align-items:center; gap:10px; font-weight:800; color:var(--primary); font-size:1.15rem; }
.brand-mark {
  width:34px; height:34px; border-radius:10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display:grid; place-items:center; color:#fff; font-weight:900;
}
.brand-logo { height: 28px; width: auto; display: block; }
.footer .brand-logo { height: 44px; }
.nav-links { display:flex; align-items:center; gap:4px; }
.nav-link {
  position:relative; padding: 9px 14px; border-radius: 999px;
  font-size: 14px; font-weight: 500; color: var(--ink);
  transition: all .25s ease;
}
.nav-link:hover { background: rgba(2,47,74,0.06); color: var(--primary); }
.nav-link.active { background: rgba(2,47,74,0.08); color: var(--primary); font-weight:600; }

.dropdown { position: relative; }
.dropdown-menu {
  position:absolute; top: calc(100% + 12px); left:50%; transform: translateX(-50%) translateY(8px);
  min-width: 240px; padding: 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(2,47,74,0.15);
  opacity:0; visibility:hidden; transition: all .25s ease;
}
.dropdown:hover .dropdown-menu { opacity:1; visibility:visible; transform: translateX(-50%) translateY(0); }
.dropdown-item {
  display:flex; gap:10px; align-items:center; padding:10px 12px; border-radius:10px;
  font-size:14px; color: var(--ink); transition: all .2s ease;
}
.dropdown-item:hover { background: rgba(243,127,35,0.08); color: var(--primary); }
.dropdown-item i { color: var(--secondary); }

/* ---------- BUTTONS ---------- */
.btn { display:inline-flex; align-items:center; gap:8px; padding: 12px 22px; border-radius: 999px; font-weight:600; font-size:14px; transition: all .3s ease; cursor:pointer; border:none; }
.btn-primary { background: var(--primary); color:#fff; box-shadow: 0 8px 24px rgba(2,47,74,0.25); }
.btn-primary:hover { background: var(--primary-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(2,47,74,0.35); }
.btn-accent { background: var(--secondary); color:#fff; box-shadow: 0 8px 24px rgba(243,127,35,0.3); }
.btn-accent:hover { background: var(--secondary-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(243,127,35,0.45); }
.btn-glass {
  background: rgba(255,255,255,0.6); color: var(--primary);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.btn-glass:hover { background: rgba(255,255,255,0.85); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--primary); border:1px solid rgba(2,47,74,0.15); }
.btn-ghost:hover { background: rgba(2,47,74,0.05); }

/* ---------- MOBILE MENU ---------- */
.hamburger { display:none; width:42px; height:42px; border-radius:12px; background: rgba(255,255,255,0.7); border:1px solid rgba(255,255,255,0.8); place-items:center; cursor:pointer; }
.hamburger i { color: var(--primary); font-size: 18px; }

.mobile-menu {
  position: fixed; top:0; right:-100%; width: 86%; max-width: 380px; height: 100vh;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  border-left: 1px solid rgba(255,255,255,0.8);
  padding: 90px 24px 24px; transition: right .35s ease; z-index: 60; overflow-y: auto;
}
.mobile-menu.open { right: 0; }
.mobile-menu a { display:block; padding: 14px 12px; border-radius: 12px; color: var(--ink); font-weight: 500; }
.mobile-menu a:hover { background: rgba(2,47,74,0.06); color: var(--primary); }
.mobile-overlay { position:fixed; inset:0; background: rgba(2,47,74,0.4); opacity:0; visibility:hidden; transition: all .3s ease; z-index: 55; }
.mobile-overlay.show { opacity:1; visibility:visible; }
.mobile-close { position:absolute; top:22px; right:22px; width:40px; height:40px; border-radius:12px; background: rgba(2,47,74,0.08); display:grid; place-items:center; cursor:pointer; color: var(--primary); }

/* ---------- HERO (two-column with slider) ---------- */
.hero {
  position: relative;
  padding: 130px 0 60px;
  background-color: #f8fafb;
  background-image:
    linear-gradient(to bottom, transparent 78%, #f6f9fc 100%),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'><path fill='none' stroke='%23e3e3e3' stroke-width='1.4' d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66L28 100'/><path fill='none' stroke='%23e3e3e3' stroke-width='1.4' d='M28 0L28 -34'/><path fill='none' stroke='%23e3e3e3' stroke-width='1.4' d='M0 16L-28 0'/><path fill='none' stroke='%23e3e3e3' stroke-width='1.4' d='M0 50L-28 66'/><path fill='none' stroke='%23e3e3e3' stroke-width='1.4' d='M56 16L84 0'/><path fill='none' stroke='%23e3e3e3' stroke-width='1.4' d='M56 50L84 66'/></svg>");
  background-size: 100% 100%, 30px 54px;
  background-repeat: no-repeat, repeat;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255) 0%, #ffffff00 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 44px; text-align: center; } }
.hero-left { min-width: 0; position: relative; z-index: 2; }
.hero-eyebrow {
  display:inline-flex; align-items:center; gap:8px; padding: 8px 18px;
  background: rgba(255,255,255,0.7); color: var(--secondary-600);
  border-radius: 999px; font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid rgba(243,127,35,0.2);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(243,127,35,0.08);
}
.hero h1 {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.12; margin: 24px 0;
  padding-bottom: 0.08em; font-weight: 800; letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-title-accent {color: var(--secondary);}
.hero p {
  font-size: 16px;
  color: var(--muted);
  max-width: 540px;
  margin: 0px;
  line-height: 1.7;
  margin-bottom: -18px;
}
.hero .text-center p, .hero .text-center .section-sub { margin-left: auto; margin-right: auto; }
@media (max-width: 900px) {
  .hero-left .max-w-md { margin-left: auto; margin-right: auto; }
  .hero p { margin-left: auto; margin-right: auto; }
}

/* Slide-in/out for synced text */
.hero-text-slide {
  display: inline-block; will-change: transform, opacity;
  transition: transform .65s cubic-bezier(.22,.61,.36,1), opacity .5s ease;
}
.hero-text-slide.is-out { transform: translateY(20px); opacity: 0; }
.hero-text-slide.is-in  {transform: translateY(0);opacity: 1;font-size: 45px;}

/* Description + "See more" toggle */
.hero-desc-wrap {max-width: 540px;margin: 0 auto 14px;}
@media (min-width: 901px) { .hero-desc-wrap { margin-left: 0; } }
.hero-desc {
  margin: 0 0 4px; display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 2; line-clamp: 2; overflow: hidden;
}
.hero-desc.expanded { -webkit-line-clamp: unset; line-clamp: unset; overflow: visible; }
.hero-see-more {
  background: none; border: none; padding: 0; cursor: pointer;
  color: var(--secondary); font-weight: 700; font-size: 0.92rem;
}
.hero-see-more:hover { text-decoration: underline; }

/* CTA button row with "or" separator */
.hero-btns-row { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; justify-content: center; }
@media (min-width: 901px) { .hero-btns-row { justify-content: flex-start; } }
.hero-btn-or { font-size: 13px; color: var(--muted); }
.hero-btns-row .btn-ghost { background: #fff; }

/* Cutout hero image */
.hero-right { position: relative; z-index: 2; min-width: 0; }
.hero-cutout-wrap {
  position: relative; display: grid; width: 100%; max-width: 760px; margin: 0 auto;
  overflow: hidden;
}
.hero-slide {
  grid-column: 1; grid-row: 1; min-width: 0; min-height: 0; max-width: 100%;
  opacity: 0; transform: scale(1.05);
  transition: opacity 1s ease, transform 1.2s cubic-bezier(.22,.61,.36,1);
  will-change: transform, opacity;
  display: flex; align-items: center; justify-content: center;
}
.hero-cutout-img {max-width: 100%;max-height: min(85vh, 620px);width: auto;height: auto;object-fit: contain;display: block;}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero-slide.prev { opacity: 0; transform: scale(0.97); }

/* Dots — sit a fixed 20px below the image itself (wrap hugs the image, no dead space) */
.hero-dots {
  display: flex; gap: 6px; justify-content: center; margin-top: 20px; align-items: center;
}
.hero-dots .dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(0,0,0,0.18);
  cursor: pointer; transition: all .4s cubic-bezier(.22,.61,.36,1); position: relative;
}
.hero-dots .dot.active {
  background: #000; width: 32px; border-radius: 999px;
}
.hero-dots .dot:hover:not(.active) { background: rgba(0,0,0,0.35); }

/* Floating accent badges on slider */
.hero-float {
  position: absolute; z-index: 3;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 14px; padding: 10px 16px; display:flex; align-items:center; gap:10px;
  box-shadow: 0 8px 24px rgba(2,47,74,0.12), 0 2px 8px rgba(2,47,74,0.06);
  font-size: 12px; font-weight: 700; color: var(--primary); letter-spacing: 0.02em;
  animation: heroFloat 6s ease-in-out infinite;
}
.hero-float i { color: var(--secondary); font-size: 14px; }
.hero-float.tl { top: 20px; left: -14px; }
.hero-float.br { bottom: 56px; right: -14px; animation-delay: -3s; }
@keyframes heroFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }


/* ---------- SECTIONS ---------- */
section { padding: 90px 0; position: relative; }
.section-eyebrow { display:inline-block; padding:6px 14px; background: rgba(2,47,74,0.07); color: var(--primary); border-radius: 999px; font-size:12px; font-weight:700; text-transform: uppercase; letter-spacing: 0.08em; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin: 18px 0 14px; line-height: 1.1; }
.section-sub { color: var(--muted); max-width: 640px; margin: 0 auto; font-size: 1.05rem; }

/* ---------- CARDS ---------- */
.card {
  background: var(--glass-bg-strong);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 22px; padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: all .35s ease;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(243,127,35,0.3); }
.card-icon {
  width: 56px; height: 56px; border-radius: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-400));
  color: #fff; display:grid; place-items:center; font-size: 22px;
  margin-bottom: 20px; box-shadow: 0 10px 24px rgba(2,47,74,0.25);
}
.card-icon.accent { background: linear-gradient(135deg, var(--secondary), #ffb066); box-shadow: 0 10px 24px rgba(243,127,35,0.3); }
.card h3 { font-size: 1.25rem; margin: 0 0 10px; }
.card p { color: var(--muted); margin: 0; line-height: 1.65; font-size: 0.95rem; }

/* ---------- SERVICE CARDS (image-led, minimal, compact) ---------- */
.service-card {
  display: block; border-radius: 15px; overflow: hidden;
  background: #fff;
  border: 1px solid rgba(2,47,74,0.08);
  box-shadow: 0 2px 8px rgba(2,47,74,0.04);
  transition: box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.service-card:hover { transform: translateY(-3px); box-shadow: 0 10px 24px rgba(2,47,74,0.09); border-color: rgba(2,47,74,0.14); }
.service-card-img-wrap { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.service-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.service-card:hover .service-card-img-wrap img { transform: scale(1.05); }
.service-card-body { padding: 16px 16px 18px; }
.service-card-badge {
  display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px;
  background: rgba(2,47,74,0.06); color: var(--primary);
  border-radius: 999px; font-size: 11px; font-weight: 700; margin-bottom: 10px;
}
.service-card-badge i { font-size: 10px; color: var(--secondary); }
.service-card-body h3 { font-size: 0.98rem; margin: 0 0 6px; }
.service-card-body p { color: var(--muted); margin: 0 0 10px; line-height: 1.5; font-size: 0.83rem; }
.service-card-link { font-size: 12px; font-weight: 700; color: var(--secondary); display: inline-flex; align-items: center; gap: 6px; }

/* ---------- STATS ---------- */
.stat { text-align: center; padding: 28px 16px; }
.stat-num { font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; background: linear-gradient(135deg, var(--primary), var(--secondary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { color: var(--muted); font-size: 0.95rem; margin-top: 4px; }

/* ---------- PROJECT CARDS ---------- */
.project-card { position: relative; border-radius: 22px; overflow: hidden; cursor: pointer; aspect-ratio: 4/3; }
.project-card .project-img { width:100%; height:100%; object-fit: cover; transition: transform .6s ease; }
.project-card:hover .project-img { transform: scale(1.08); }
.project-overlay {
  position:absolute; inset:0; padding:24px; display:flex; flex-direction:column; justify-content:flex-end;
  background: linear-gradient(180deg, transparent 30%, rgba(2,47,74,0.92) 100%);
  color:#fff; opacity: 0; transition: opacity .4s ease;
}
.project-card:hover .project-overlay { opacity: 1; }
.project-overlay .tag { font-size:12px; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }
.project-overlay h4 { color:#fff; font-size: 1.4rem; margin: 6px 0 0; }

.filter-btn {
  padding: 10px 18px; border-radius: 999px; font-size: 14px; font-weight: 600;
  background: rgba(255,255,255,0.7); color: var(--primary);
  border:1px solid rgba(255,255,255,0.8); cursor:pointer; transition: all .25s ease;
  backdrop-filter: blur(14px);
}
.filter-btn:hover { background: rgba(2,47,74,0.06); }
.filter-btn.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ---------- TEAM ---------- */
.team-card { text-align:center; padding: 32px 24px; }
.team-avatar {
  width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display:grid; place-items:center; color:#fff; font-size: 2.5rem; font-weight: 700;
  box-shadow: 0 12px 28px rgba(2,47,74,0.2);
  transition: transform .4s ease;
}
.team-card:hover .team-avatar { transform: scale(1.08) rotate(-3deg); }
.team-role { color: var(--secondary); font-weight: 600; font-size: 14px; }
.social-row { display:flex; justify-content:center; gap:10px; margin-top: 16px; }
.social-row a { width:36px; height:36px; border-radius:50%; background: rgba(2,47,74,0.06); display:grid; place-items:center; color: var(--primary); transition: all .25s; }
.social-row a:hover { background: var(--primary); color:#fff; transform: translateY(-3px); }

/* ---------- TESTIMONIALS ---------- */
.testimonial-track { display:flex; transition: transform .6s cubic-bezier(.4,0,.2,1); }
.testimonial-slide { min-width: 100%; padding: 0 12px; }
.testimonial-card { padding: 40px; text-align: center; }
.testimonial-card .quote { font-size: 1.15rem; color: var(--ink); line-height: 1.75; font-style: italic; }
.testimonial-card .author { margin-top: 22px; font-weight: 700; color: var(--primary); }
.testimonial-card .role { color: var(--muted); font-size: 14px; }
.testimonial-dots { display:flex; justify-content:center; gap:8px; margin-top: 28px; }
.dot { width:10px; height:10px; border-radius:50%; background: rgba(2,47,74,0.2); cursor:pointer; transition: all .25s; }
.dot.active { background: var(--secondary); width: 28px; border-radius: 999px; }

/* ---------- FAQ ---------- */
.faq-item { margin-bottom: 14px; overflow: hidden; }
.faq-question { width:100%; text-align:left; padding: 22px 26px; display:flex; justify-content:space-between; align-items:center; background:transparent; border:none; cursor:pointer; font-weight: 600; color: var(--primary); font-size: 1.02rem; }
.faq-question i { transition: transform .3s; color: var(--secondary); }
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; transition: max-height .4s ease, padding .4s ease; padding: 0 26px; color: var(--muted); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 280px; padding-bottom: 22px; }

/* ---------- PRICING ---------- */
.pricing-card { padding: 38px 32px; position: relative; }
.pricing-card.featured { border: 2px solid var(--secondary); transform: scale(1.03); }
.pricing-badge { position:absolute; top:-14px; left:50%; transform:translateX(-50%); background: var(--secondary); color:#fff; padding: 6px 16px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.price small { font-size: 1rem; color: var(--muted); font-weight: 500; }
.feature-list { list-style: none; padding: 0; margin: 24px 0; }
.feature-list li { padding: 10px 0; color: var(--ink); display:flex; gap:10px; align-items:center; }
.feature-list i { color: var(--secondary); }

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-400) 100%);
  color: #fff; padding: 70px 40px; border-radius: 32px; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content:""; position:absolute; top:-50%; right:-10%; width: 400px; height: 400px; border-radius:50%; background: radial-gradient(circle, rgba(243,127,35,0.4) 0%, transparent 70%); }
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); position:relative; z-index:1; }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 580px; margin: 16px auto 28px; position:relative; z-index:1; }

/* ---------- CONTACT ---------- */
.input, .textarea {
  width:100%; padding: 14px 18px; border-radius: 14px;
  background: rgba(255,255,255,0.6); backdrop-filter: blur(10px);
  border: 1px solid rgba(2,47,74,0.12); color: var(--ink); font-size: 15px;
  transition: all .25s; font-family: inherit;
}
.input:focus, .textarea:focus { outline:none; border-color: var(--secondary); background: #fff; box-shadow: 0 0 0 4px rgba(243,127,35,0.15); }
.textarea { min-height: 140px; resize: vertical; }
label { display:block; font-weight: 600; color: var(--primary); margin-bottom: 8px; font-size: 14px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--primary); color: rgba(255,255,255,0.8); padding: 70px 0 30px; margin-top: 60px; }
.footer h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer a { display:block; padding: 6px 0; color: rgba(255,255,255,0.7); font-size: 14px; transition: all .2s; }
.footer a:hover { color: var(--secondary); transform: translateX(4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; margin-top: 50px; display:flex; justify-content:space-between; flex-wrap:wrap; gap: 16px; font-size: 14px; color: rgba(255,255,255,0.6); }

/* ---------- SCROLL TO TOP ---------- */
.scroll-top {
  position: fixed; bottom: 28px; right: 28px; width: 50px; height: 50px;
  border-radius: 50%; background: var(--secondary); color: #fff;
  display:grid; place-items:center; cursor:pointer; opacity: 0; visibility: hidden;
  transition: all .3s ease; z-index: 40; box-shadow: 0 10px 24px rgba(243,127,35,0.4);
  border:none;
}
.scroll-top.show { opacity: 1; visibility: visible; }
.scroll-top:hover { transform: translateY(-4px); }

/* ---------- LOADER ---------- */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 999; display:grid; place-items:center; transition: opacity .5s; }
.loader.hide { opacity: 0; pointer-events: none; }
.loader-ring { width: 56px; height: 56px; border: 4px solid rgba(2,47,74,0.1); border-top-color: var(--secondary); border-radius: 50%; animation: spin .8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- ANIMATIONS ---------- */
.fade-up { opacity: 0; transform: translateY(30px); transition: all .8s cubic-bezier(.2,.7,.3,1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ---------- LOGO ROW ---------- */
.logo-row { display:grid; grid-template-columns: repeat(6, 1fr); gap: 28px; align-items:center; opacity: 0.65; }
.logo-row .logo { text-align:center; font-weight: 700; color: var(--primary); font-size: 1.1rem; letter-spacing: -0.02em; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content:""; position:absolute; left: 12px; top: 0; bottom: 0; width: 2px; background: linear-gradient(180deg, var(--primary), var(--secondary)); }
.timeline-item { position: relative; padding-bottom: 36px; }
.timeline-item::before { content:""; position:absolute; left: -34px; top: 6px; width: 16px; height: 16px; border-radius: 50%; background: var(--secondary); border: 3px solid #fff; box-shadow: 0 0 0 3px rgba(243,127,35,0.2); }
.timeline-item .year { font-weight: 800; color: var(--secondary); font-size: 14px; }
.timeline-item h4 { margin: 4px 0 6px; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
  .logo-row { grid-template-columns: repeat(3, 1fr); }
  .pricing-card.featured { transform: none; }
  .hero { padding: 86px 0 50px; }
}
@media (max-width: 640px) {
  section { padding: 64px 0; }
  .hero { padding: 80px 0 50px; }
  .hero-float.tl { left: 4px; }
  .hero-float.br { right: 4px; }
  .card { padding: 24px; }
  .cta-banner { padding: 50px 24px; border-radius: 22px; }
  .logo-row { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}