/* =====================================================================
   Sri Surya Praneeth Tooling Solutions LLP
   style.css  —  Core styles, layout, components
   Theme: Luxury Industrial  |  Precision Beyond Limits
   ===================================================================== */

/* -------------------------------------------------------------
   1. CSS VARIABLES — Design tokens
------------------------------------------------------------- */
:root {
  /* Brand palette */
  --c-primary: #071A2D;      /* Deep navy */
  --c-primary-2: #0A2540;    /* Lighter navy */
  --c-secondary: #1D1F22;    /* Graphite */
  --c-accent: #0077FF;       /* Electric blue */
  --c-accent-2: #3399ff;
  --c-silver: #C8CED4;       /* Metallic silver */
  --c-white: #FFFFFF;
  --c-light: #F4F6F9;        /* Light gray bg */
  --c-light-2: #E8ECF1;
  --c-ink: #0C1722;          /* Body text on light */
  --c-muted: #5A6675;        /* Muted text */
  --c-line: rgba(12, 23, 34, .10);

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #071A2D 0%, #0A2540 60%, #0E3358 100%);
  --grad-accent: linear-gradient(135deg, #0077FF 0%, #00C2FF 100%);
  --grad-metal: linear-gradient(135deg, #C8CED4 0%, #FFFFFF 40%, #9AA4AE 100%);
  --grad-dark-glass: linear-gradient(135deg, rgba(7,26,45,.85), rgba(29,31,34,.78));

  /* Typography */
  --font-head: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing scale */
  --sp-1: .5rem;  --sp-2: 1rem;  --sp-3: 1.5rem; --sp-4: 2rem;
  --sp-5: 3rem;   --sp-6: 4rem;  --sp-7: 6rem;   --sp-8: 8rem;

  /* Radius */
  --r-sm: 10px;  --r-md: 16px;  --r-lg: 24px;  --r-xl: 32px;  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(7,26,45,.06);
  --sh-md: 0 10px 30px rgba(7,26,45,.10);
  --sh-lg: 0 24px 60px rgba(7,26,45,.16);
  --sh-glow: 0 8px 40px rgba(0,119,255,.35);

  /* Layout */
  --container: 1240px;
  --nav-h: 78px;
  --ease: cubic-bezier(.16,.84,.44,1);
}

/* -------------------------------------------------------------
   2. RESET & BASE
------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--c-ink);
  background: var(--c-white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--c-primary);
}

a { color: inherit; text-decoration: none; transition: color .25s var(--ease); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
section { position: relative; }

/* -------------------------------------------------------------
   3. LAYOUT UTILITIES
------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section { padding-block: var(--sp-8); }
.section--tight { padding-block: var(--sp-6); }
.bg-light { background: var(--c-light); }
.bg-dark { background: var(--grad-primary); color: var(--c-silver); }
.bg-dark h1,.bg-dark h2,.bg-dark h3,.bg-dark h4 { color: #fff; }
.text-center { text-align: center; }
.grid { display: grid; gap: 28px; }
.g-2 { grid-template-columns: repeat(2,1fr); }
.g-3 { grid-template-columns: repeat(3,1fr); }
.g-4 { grid-template-columns: repeat(4,1fr); }
.flex { display: flex; }
.mt-2{margin-top:var(--sp-2)} .mt-3{margin-top:var(--sp-3)} .mt-4{margin-top:var(--sp-4)}

/* -------------------------------------------------------------
   4. TYPOGRAPHY HELPERS
------------------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--c-accent);
}
.eyebrow::before { content:""; width: 28px; height: 2px; background: var(--grad-accent); }
.bg-dark .eyebrow { color: var(--c-accent-2); }

.display { font-size: clamp(2.6rem, 6vw, 5rem); }
.h-xl { font-size: clamp(2.2rem, 4.5vw, 3.6rem); }
.h-lg { font-size: clamp(1.7rem, 3vw, 2.5rem); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.25rem); color: var(--c-muted); max-width: 60ch; }
.bg-dark .lead { color: var(--c-silver); }
.section-head { max-width: 720px; margin-bottom: var(--sp-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: 14px; margin-bottom: 16px; }

/* -------------------------------------------------------------
   5. BUTTONS
------------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-head); font-weight: 700; font-size: .98rem;
  padding: 15px 30px; border-radius: var(--r-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  white-space: nowrap; cursor: pointer; isolation: isolate;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--grad-accent); color: #fff; box-shadow: var(--sh-glow); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 14px 50px rgba(0,119,255,.5); }
.btn--ghost { background: rgba(255,255,255,.08); color: #fff; border: 1px solid rgba(255,255,255,.25); backdrop-filter: blur(10px); }
.btn--ghost:hover { background: rgba(255,255,255,.16); transform: translateY(-3px); }
.btn--dark { background: var(--c-primary); color: #fff; }
.btn--dark:hover { background: var(--c-primary-2); transform: translateY(-3px); box-shadow: var(--sh-md); }
.btn--outline { border: 1.5px solid var(--c-line); color: var(--c-primary); background: #fff; }
.btn--outline:hover { border-color: var(--c-accent); color: var(--c-accent); transform: translateY(-3px); }
.btn--lg { padding: 18px 38px; font-size: 1.05rem; }

/* Ripple */
.ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,.45); animation: ripple .6s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(4); opacity: 0; } }

/* -------------------------------------------------------------
   6. PRELOADER
------------------------------------------------------------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--grad-primary);
  transition: opacity .6s ease, visibility .6s;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader__mark { text-align: center; }
.preloader__ring {
  width: 64px; height: 64px; margin: 0 auto 20px;
  border: 3px solid rgba(255,255,255,.12);
  border-top-color: var(--c-accent); border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.preloader__txt { font-family: var(--font-head); font-weight: 800; letter-spacing: .3em; color: #fff; font-size: .8rem; text-transform: uppercase; }

/* -------------------------------------------------------------
   7. NAVIGATION
------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; height: var(--nav-h); z-index: 1000;
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s, height .4s, backdrop-filter .4s;
}
.nav__inner { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav.scrolled {
  background: rgba(255,255,255,.82); backdrop-filter: saturate(180%) blur(18px);
  box-shadow: 0 4px 30px rgba(7,26,45,.08); height: 66px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 46px; width: auto; flex: none; object-fit: contain; }
.nav.scrolled .brand__logo { height: 42px; }
.footer .brand__logo { height: 48px; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-head); font-weight: 800; font-size: 1.02rem; color: #fff; letter-spacing: -.01em; }
.brand__sub { font-size: .62rem; letter-spacing: .24em; text-transform: uppercase; color: var(--c-silver); }
.nav.scrolled .brand__name { color: var(--c-primary); }
.nav.scrolled .brand__sub { color: var(--c-muted); }

.nav__menu { display: flex; align-items: center; gap: 4px; }
.nav__link {
  position: relative; font-family: var(--font-head); font-weight: 600; font-size: .92rem;
  color: rgba(255,255,255,.88); padding: 10px 14px; border-radius: 10px;
}
.nav__link::after { content:""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px;
  background: var(--grad-accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); border-radius: 2px; }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); }
.nav__link:hover, .nav__link.active { color: #fff; }
.nav.scrolled .nav__link { color: var(--c-ink); }
.nav.scrolled .nav__link:hover, .nav.scrolled .nav__link.active { color: var(--c-accent); }

/* Dropdown */
.has-drop { position: relative; }
.drop {
  position: absolute; top: 100%; left: 0; min-width: 230px;
  background: rgba(255,255,255,.96); backdrop-filter: blur(20px);
  border: 1px solid var(--c-line); border-radius: var(--r-md);
  box-shadow: var(--sh-lg); padding: 10px; margin-top: 12px;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all .3s var(--ease);
}
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateY(0); }
.drop a { display: block; padding: 10px 14px; border-radius: 8px; font-size: .9rem; font-weight: 600; color: var(--c-ink); }
.drop a:hover { background: var(--c-light); color: var(--c-accent); }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; width: 44px; height: 44px; flex-direction: column; justify-content: center; gap: 5px; border-radius: 10px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: #fff; margin-inline: auto; transition: all .3s var(--ease); border-radius: 2px; }
.nav.scrolled .nav__burger span { background: var(--c-primary); }
.nav__burger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2){ opacity: 0; }
.nav__burger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 0 0 0 auto; width: min(86%, 380px); z-index: 1100;
  background: var(--grad-primary); padding: 100px 30px 40px;
  transform: translateX(100%); transition: transform .45s var(--ease);
  overflow-y: auto; box-shadow: -20px 0 60px rgba(0,0,0,.4);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: block; color: #fff; font-family: var(--font-head); font-weight: 600; font-size: 1.1rem; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.mobile-menu a:hover { color: var(--c-accent-2); padding-left: 8px; }
.mobile-menu .btn { width: 100%; margin-top: 24px; }
.overlay { position: fixed; inset: 0; background: rgba(7,26,45,.6); backdrop-filter: blur(4px); z-index: 1050; opacity: 0; visibility: hidden; transition: all .4s; }
.overlay.show { opacity: 1; visibility: visible; }

/* -------------------------------------------------------------
   8. HERO
------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background: var(--grad-primary);
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img, .hero__bg video { width: 100%; height: 100%; object-fit: cover; opacity: .42; }
.hero__overlay { position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(1100px 600px at 80% 10%, rgba(0,119,255,.28), transparent 60%),
    radial-gradient(900px 700px at 0% 100%, rgba(0,119,255,.16), transparent 55%),
    linear-gradient(180deg, rgba(7,26,45,.55), rgba(7,26,45,.88));
}
.hero__grid { position: absolute; inset: 0; z-index: 1; opacity: .25;
  background-image: linear-gradient(rgba(200,206,212,.08) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(200,206,212,.08) 1px, transparent 1px);
  background-size: 64px 64px; mask-image: radial-gradient(circle at 50% 40%, #000, transparent 75%); }
.hero__inner { position: relative; z-index: 2; padding-top: var(--nav-h); }
.hero__title { font-size: clamp(2.8rem, 8vw, 6.2rem); color: #fff; margin: 18px 0 22px; }
.hero__title .accent { background: var(--grad-accent); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__sub { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--c-silver); max-width: 58ch; margin-bottom: 38px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--c-silver); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.hero__mouse { width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; position: relative; }
.hero__mouse::before { content:""; position: absolute; top: 8px; left: 50%; transform: translateX(-50%); width: 4px; height: 8px; background: var(--c-accent-2); border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0%{opacity:0;transform:translate(-50%,0)} 40%{opacity:1} 80%{opacity:0;transform:translate(-50%,14px)} }

/* Page hero (interior pages) */
.page-hero { position: relative; padding: calc(var(--nav-h) + 90px) 0 90px; color: #fff; overflow: hidden; background: var(--grad-primary); }
.page-hero__overlay { position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(900px 500px at 85% 0%, rgba(0,119,255,.25), transparent 60%), linear-gradient(180deg, rgba(7,26,45,.5), rgba(7,26,45,.92)); }
.page-hero__bg { position: absolute; inset: 0; z-index: -1; }
.page-hero__bg img, .page-hero__bg video { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 5vw, 4rem); margin: 16px 0; }
.page-hero p { color: var(--c-silver); max-width: 62ch; font-size: 1.12rem; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: var(--c-silver); }
.breadcrumb a:hover { color: var(--c-accent-2); }
.breadcrumb span { opacity: .5; }

/* -------------------------------------------------------------
   9. STAT COUNTERS
------------------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat { text-align: center; padding: 30px 18px; border-radius: var(--r-lg);
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); backdrop-filter: blur(8px); }
.stat__num { font-family: var(--font-head); font-weight: 800; font-size: clamp(2.2rem,4vw,3.2rem);
  background: var(--grad-metal); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.stat__num .suffix { color: var(--c-accent-2); -webkit-text-fill-color: var(--c-accent-2); }
.stat__label { margin-top: 10px; font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; color: var(--c-silver); }
.stats--light .stat { background: #fff; border: 1px solid var(--c-line); box-shadow: var(--sh-sm); }
.stats--light .stat__num { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; }
.stats--light .stat__num .suffix { color: var(--c-accent); -webkit-text-fill-color: var(--c-accent); }
.stats--light .stat__label { color: var(--c-muted); }

/* -------------------------------------------------------------
   10. CARDS
------------------------------------------------------------- */
.card {
  position: relative; background: #fff; border: 1px solid var(--c-line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: rgba(0,119,255,.3); }
.card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; background: var(--c-light-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.08); }
.card__media::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(7,26,45,.35)); }
.card__body { padding: 26px; }
.card__icon { width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-accent); color: #fff; margin-bottom: 18px; box-shadow: var(--sh-glow); }
.card__icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--c-muted); font-size: .96rem; }
.card__link { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-family: var(--font-head); font-weight: 700; font-size: .9rem; color: var(--c-accent); }
.card__link svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.card:hover .card__link svg { transform: translateX(5px); }
.card__tag { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(7,26,45,.7); backdrop-filter: blur(10px); color: #fff; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 7px 13px; border-radius: var(--r-pill); }

/* Feature card (icon, no image) */
.feature { padding: 34px; border-radius: var(--r-lg); background: #fff; border: 1px solid var(--c-line); box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s; height: 100%; }
.feature:hover { transform: translateY(-6px); box-shadow: var(--sh-md); }
.feature__num { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--c-light-2); line-height: 1; margin-bottom: 16px; }
.feature h3 { font-size: 1.2rem; margin-bottom: 10px; }
.feature p { color: var(--c-muted); font-size: .94rem; }
.bg-dark .feature { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.10); }
.bg-dark .feature p { color: var(--c-silver); }
.bg-dark .feature__num { color: rgba(255,255,255,.12); }

/* Glass card */
.glass { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); backdrop-filter: blur(16px); border-radius: var(--r-lg); }

/* -------------------------------------------------------------
   11. SPLIT / INTRO SECTION
------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); }
.split__media img { width: 100%; aspect-ratio: 4/3.4; object-fit: cover; }
.split__badge { position: absolute; bottom: 24px; left: 24px; right: 24px;
  background: var(--grad-dark-glass); backdrop-filter: blur(14px); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-md); padding: 20px 24px; color: #fff; display: flex; gap: 18px; align-items: center; }
.split__badge .n { font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--c-accent-2); }
.split__badge p { font-size: .9rem; color: var(--c-silver); }

.check-list { display: grid; gap: 14px; margin-top: 26px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; font-weight: 500; }
.check-list .ic { flex: none; width: 26px; height: 26px; border-radius: 50%; background: rgba(0,119,255,.12); color: var(--c-accent); display: grid; place-items: center; }
.check-list .ic svg { width: 15px; height: 15px; }
.bg-dark .check-list li { color: var(--c-silver); }

/* -------------------------------------------------------------
   12. TESTIMONIALS SLIDER
------------------------------------------------------------- */
.slider { position: relative; overflow: hidden; }
.slider__track { display: flex; transition: transform .6s var(--ease); }
.slide { min-width: 100%; padding: 8px; }
.quote-card { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 50px; box-shadow: var(--sh-md); max-width: 860px; margin-inline: auto; text-align: center; }
.bg-dark .quote-card { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.quote-card .mark { font-family: var(--font-head); font-size: 4rem; line-height: .6; color: var(--c-accent); opacity: .35; }
.quote-card blockquote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.2rem,2vw,1.6rem); line-height: 1.45; margin: 18px 0 28px; color: var(--c-primary); }
.bg-dark .quote-card blockquote { color: #fff; }
.quote-card .who { display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote-card .who img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--c-accent); }
.quote-card .who b { font-family: var(--font-head); display: block; }
.quote-card .who span { font-size: .85rem; color: var(--c-muted); }
.bg-dark .quote-card .who span { color: var(--c-silver); }
.slider__nav { display: flex; gap: 10px; justify-content: center; margin-top: 30px; }
.slider__dot { width: 10px; height: 10px; border-radius: 50%; background: var(--c-line); transition: all .3s; }
.slider__dot.active { width: 30px; border-radius: 6px; background: var(--grad-accent); }
.bg-dark .slider__dot { background: rgba(255,255,255,.2); }
.slider__arrows { display: flex; gap: 12px; }
.slider__arrow { width: 50px; height: 50px; border-radius: 50%; border: 1px solid var(--c-line); display: grid; place-items: center; background: #fff; color: var(--c-primary); transition: all .3s var(--ease); }
.slider__arrow:hover { background: var(--c-accent); color: #fff; border-color: var(--c-accent); transform: scale(1.08); }

/* -------------------------------------------------------------
   13. LOGOS / MARQUEE
------------------------------------------------------------- */
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); mask-image: linear-gradient(90deg,transparent,#000 12%,#000 88%,transparent); }
.marquee__track { display: flex; gap: 70px; width: max-content; animation: marquee 32s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item { font-family: var(--font-head); font-weight: 700; font-size: 1.4rem; color: var(--c-silver); white-space: nowrap; display: flex; align-items: center; gap: 10px; opacity: .7; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* -------------------------------------------------------------
   14. CTA BANNER
------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--r-xl); padding: 70px; text-align: center; background: var(--grad-primary); color: #fff; box-shadow: var(--sh-lg); }
.cta-band::before { content:""; position: absolute; inset: 0; background: radial-gradient(700px 400px at 80% 0%, rgba(0,119,255,.35), transparent 60%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin-bottom: 16px; }
.cta-band p { color: var(--c-silver); max-width: 56ch; margin: 0 auto 30px; }
.cta-band .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* -------------------------------------------------------------
   15. ACCORDION (FAQ)
------------------------------------------------------------- */
.accordion { display: grid; gap: 14px; max-width: 820px; margin-inline: auto; }
.acc-item { border: 1px solid var(--c-line); border-radius: var(--r-md); background: #fff; overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc-item.open { box-shadow: var(--sh-md); border-color: rgba(0,119,255,.3); }
.acc-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--c-primary); text-align: left; }
.acc-q .pm { flex: none; width: 30px; height: 30px; border-radius: 50%; background: var(--c-light); display: grid; place-items: center; transition: all .3s var(--ease); color: var(--c-accent); }
.acc-item.open .pm { background: var(--grad-accent); color: #fff; transform: rotate(45deg); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a__inner { padding: 0 26px 24px; color: var(--c-muted); }

/* -------------------------------------------------------------
   16. TABLES
------------------------------------------------------------- */
.table-wrap { overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--c-line); box-shadow: var(--sh-sm); }
table.cmp { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
table.cmp th, table.cmp td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--c-line); }
table.cmp thead th { background: var(--grad-primary); color: #fff; font-family: var(--font-head); font-size: .9rem; letter-spacing: .04em; }
table.cmp thead th:first-child { border-top-left-radius: var(--r-lg); }
table.cmp tbody tr:hover { background: var(--c-light); }
table.cmp td.yes { color: #14a45a; font-weight: 700; }
table.cmp td.no { color: #d6453d; font-weight: 700; }
table.cmp td.mid { color: #c98a12; font-weight: 700; }
table.cmp .feat { font-weight: 700; font-family: var(--font-head); color: var(--c-primary); }

/* -------------------------------------------------------------
   17. GALLERY
------------------------------------------------------------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.filter-btn { font-family: var(--font-head); font-weight: 600; font-size: .9rem; padding: 11px 22px; border-radius: var(--r-pill); border: 1px solid var(--c-line); color: var(--c-muted); background: #fff; transition: all .3s var(--ease); }
.filter-btn:hover { border-color: var(--c-accent); color: var(--c-accent); }
.filter-btn.active { background: var(--grad-accent); color: #fff; border-color: transparent; box-shadow: var(--sh-glow); }
.masonry { columns: 3; column-gap: 22px; }
.masonry .tile { break-inside: avoid; margin-bottom: 22px; border-radius: var(--r-lg); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--sh-sm); }
.masonry .tile img { width: 100%; transition: transform .7s var(--ease); }
.masonry .tile:hover img { transform: scale(1.08); }
.masonry .tile__cap { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 22px; color: #fff; opacity: 0; transition: opacity .4s; background: linear-gradient(180deg, transparent 40%, rgba(7,26,45,.85)); }
.masonry .tile:hover .tile__cap { opacity: 1; }
.masonry .tile__cap b { font-family: var(--font-head); font-size: 1.1rem; }
.masonry .tile__cap span { font-size: .82rem; color: var(--c-silver); }
.tile.hide { display: none; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(7,15,24,.94); backdrop-filter: blur(8px); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: all .4s; padding: 30px; }
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 82vh; border-radius: var(--r-md); box-shadow: var(--sh-lg); }
.lightbox__close, .lightbox__prev, .lightbox__next { position: absolute; width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: #fff; display: grid; place-items: center; transition: all .3s; }
.lightbox__close { top: 26px; right: 26px; }
.lightbox__prev { left: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 26px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: var(--c-accent); }

/* -------------------------------------------------------------
   18. BLOG
------------------------------------------------------------- */
.post { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); transition: transform .4s var(--ease), box-shadow .4s; display: flex; flex-direction: column; }
.post:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); }
.post__media { aspect-ratio: 16/9; overflow: hidden; }
.post__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post:hover .post__media img { transform: scale(1.07); }
.post__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.post__meta { display: flex; gap: 14px; font-size: .8rem; color: var(--c-muted); margin-bottom: 12px; text-transform: uppercase; letter-spacing: .05em; }
.post__meta .cat { color: var(--c-accent); font-weight: 700; }
.post h3 { font-size: 1.25rem; margin-bottom: 12px; }
.post p { color: var(--c-muted); font-size: .94rem; margin-bottom: 18px; }
.post__link { margin-top: auto; font-family: var(--font-head); font-weight: 700; color: var(--c-accent); display: inline-flex; gap: 8px; align-items: center; }

/* -------------------------------------------------------------
   19. CONTACT
------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; align-items: start; }
.info-card { display: flex; gap: 18px; padding: 24px; border-radius: var(--r-md); background: #fff; border: 1px solid var(--c-line); box-shadow: var(--sh-sm); margin-bottom: 16px; transition: transform .3s var(--ease); }
.info-card:hover { transform: translateX(6px); }
.info-card .ic { flex: none; width: 52px; height: 52px; border-radius: 14px; background: var(--grad-accent); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-glow); }
.info-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.info-card p, .info-card a { color: var(--c-muted); font-size: .94rem; }
.info-card a:hover { color: var(--c-accent); }

.form { background: #fff; border: 1px solid var(--c-line); border-radius: var(--r-xl); padding: 40px; box-shadow: var(--sh-md); }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-weight: 600; font-size: .88rem; margin-bottom: 8px; color: var(--c-primary); }
.field input, .field select, .field textarea {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--c-line); border-radius: var(--r-sm);
  font-family: var(--font-body); font-size: .96rem; color: var(--c-ink); background: var(--c-light);
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--c-accent); background: #fff; box-shadow: 0 0 0 4px rgba(0,119,255,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__note { font-size: .82rem; color: var(--c-muted); margin-top: 8px; }
.form-success { display: none; padding: 16px 18px; border-radius: var(--r-sm); background: rgba(20,164,90,.1); color: #14a45a; font-weight: 600; margin-bottom: 20px; }
.form-success.show { display: block; }

.map-embed { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-md); border: 1px solid var(--c-line); min-height: 360px; background: var(--c-light); position: relative; }
.map-embed iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }
.map-placeholder { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: var(--c-muted); background: repeating-linear-gradient(45deg, var(--c-light), var(--c-light) 16px, var(--c-light-2) 16px, var(--c-light-2) 32px); }

/* -------------------------------------------------------------
   20. FOOTER
------------------------------------------------------------- */
.footer { background: var(--c-secondary); color: var(--c-silver); padding-top: var(--sp-7); position: relative; overflow: hidden; }
.footer::before { content:""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--c-accent), transparent); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: var(--sp-6); }
.footer h5 { color: #fff; font-size: 1rem; letter-spacing: .04em; margin-bottom: 22px; text-transform: uppercase; }
.footer__about p { font-size: .92rem; max-width: 34ch; margin: 18px 0; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { font-size: .92rem; color: var(--c-silver); }
.footer__links a:hover { color: var(--c-accent-2); padding-left: 5px; }
.footer .brand__name { color: #fff; }
.footer .brand__sub { color: var(--c-silver); }
.news-form { display: flex; gap: 8px; margin-top: 16px; }
.news-form input { flex: 1; padding: 13px 16px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.05); color: #fff; font-family: var(--font-body); }
.news-form input::placeholder { color: rgba(255,255,255,.4); }
.news-form input:focus { outline: none; border-color: var(--c-accent); }
.news-form button { width: 50px; height: 50px; flex: none; border-radius: 50%; background: var(--grad-accent); color: #fff; display: grid; place-items: center; transition: transform .3s; }
.news-form button:hover { transform: scale(1.08); }
.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a { width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: grid; place-items: center; color: var(--c-silver); transition: all .3s var(--ease); }
.socials a:hover { background: var(--grad-accent); color: #fff; transform: translateY(-4px); border-color: transparent; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 26px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer__bottom a:hover { color: var(--c-accent-2); }

/* -------------------------------------------------------------
   21. FLOATING WIDGETS
------------------------------------------------------------- */
.whatsapp-float { position: fixed; bottom: 26px; left: 26px; z-index: 900; width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(37,211,102,.45); transition: transform .3s var(--ease); animation: pulse 2.4s infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 32px; height: 32px; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5)} 70%{box-shadow:0 0 0 18px rgba(37,211,102,0)} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0)} }

.back-top { position: fixed; bottom: 26px; right: 26px; z-index: 900; width: 52px; height: 52px; border-radius: 50%; background: var(--c-primary); color: #fff; display: grid; place-items: center; box-shadow: var(--sh-md); opacity: 0; visibility: hidden; transform: translateY(20px); transition: all .4s var(--ease); }
.back-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--c-accent); transform: translateY(-4px); }

/* Quote modal */
.modal { position: fixed; inset: 0; z-index: 2200; display: grid; place-items: center; padding: 24px; opacity: 0; visibility: hidden; transition: all .4s; }
.modal.open { opacity: 1; visibility: visible; }
.modal__bg { position: absolute; inset: 0; background: rgba(7,15,24,.7); backdrop-filter: blur(6px); }
.modal__panel { position: relative; z-index: 1; width: min(560px, 100%); background: #fff; border-radius: var(--r-xl); padding: 44px; box-shadow: var(--sh-lg); transform: translateY(24px) scale(.98); transition: transform .4s var(--ease); max-height: 90vh; overflow-y: auto; }
.modal.open .modal__panel { transform: translateY(0) scale(1); }
.modal__close { position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%; background: var(--c-light); display: grid; place-items: center; color: var(--c-primary); transition: all .3s; }
.modal__close:hover { background: var(--c-accent); color: #fff; transform: rotate(90deg); }

/* -------------------------------------------------------------
   22. MISC / PILLS / ICON GRID
------------------------------------------------------------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: var(--r-pill); background: var(--c-light); border: 1px solid var(--c-line); color: var(--c-muted); }
.bg-dark .pill { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: var(--c-silver); }

.icon-tile { width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; background: var(--grad-accent); color: #fff; box-shadow: var(--sh-glow); margin-bottom: 20px; }
.icon-tile svg { width: 32px; height: 32px; }
.icon-tile--soft { background: rgba(0,119,255,.1); color: var(--c-accent); box-shadow: none; }

.divider { height: 1px; background: var(--c-line); margin-block: var(--sp-5); }

/* Prose for legal/blog */
.prose { max-width: 800px; margin-inline: auto; }
.prose h2 { font-size: 1.6rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.25rem; margin: 28px 0 12px; }
.prose p, .prose li { color: var(--c-muted); margin-bottom: 14px; }
.prose ul { padding-left: 22px; list-style: disc; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--c-accent); text-decoration: underline; }

/* 404 */
.err-page { min-height: 100vh; display: grid; place-items: center; text-align: center; background: var(--grad-primary); color: #fff; padding: 40px; }
.err-code { font-family: var(--font-head); font-weight: 800; font-size: clamp(7rem, 22vw, 16rem); line-height: .9; background: var(--grad-metal); -webkit-background-clip: text; background-clip: text; color: transparent; }
