/* ==========================================================================
   VERTEXVOUND v2 — CORE STYLESHEET
   ========================================================================== */

:root {
  --primary: #ED472B;
  --secondary: #F35B3F;
  --bg: #0B0B0B;
  --bg-section: #111111;
  --bg-card: #1A1A1A;
  --text: #FFFFFF;
  --text-secondary: #CFCFCF;
  --border: rgba(255,255,255,.08);
  --glow: rgba(237,71,43,.4);

 --font-heading: 'Montserrat', sans-serif;
--font-body: 'Montserrat', sans-serif;

  --container: 1240px;
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;

  --ease-premium: cubic-bezier(.16,1,.3,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; overflow-x: hidden; width: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  cursor: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; color: inherit; }
::selection { background: var(--primary); color: #fff; }

h1, h2, h3, h4, h5 { font-family: var(--font-heading); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
section { position: relative; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.eyebrow.center {
  display: block;
  text-align: center;
  width: 100%;
}

.section-title { font-size: clamp(30px, 4vw, 50px); margin-bottom: 24px; max-width: 720px; }
.section-title.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 700px; }

/* ---------- Media placeholder slots ---------- */
.media-slot, .client-slot {
  position: relative;
  background-color: var(--bg-card);
  background-size: cover;
  background-position: center;
  border: 1px dashed var(--border);
  overflow: hidden;
}
.media-slot::after, .client-slot::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 14px;
  font-size: 11px; letter-spacing: .04em; color: var(--text-secondary);
  background: rgba(0,0,0,.3);
  transition: opacity .4s;
}
.media-slot.loaded::after, .client-slot.loaded::after { opacity: 0; pointer-events: none; }

/* ---------- Custom cursor ---------- */
.cursor, .cursor-follower {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  border-radius: 50%; transform: translate(-50%, -50%); mix-blend-mode: difference;
}
.cursor { width: 8px; height: 8px; background: #fff; }
.cursor-follower { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.6); transition: width .3s var(--ease-premium), height .3s var(--ease-premium), border-color .3s; }
.cursor-follower.hover { width: 60px; height: 60px; border-color: var(--primary); background: rgba(237,71,43,.12); }
@media (hover: none) { .cursor, .cursor-follower { display: none; } body { cursor: auto; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--primary), var(--secondary)); z-index: 9998; }

/* ---------- Loader ---------- */
.loader { position: fixed; inset: 0; background: var(--bg); z-index: 10000; display: flex; align-items: center; justify-content: center; }
.loader-inner { text-align: center; }
.loader-logo { font-family: var(--font-heading); font-size: 28px; letter-spacing: -0.02em; margin-bottom: 24px; }
.loader-logo span { color: var(--primary); }
.loader-bar { width: 220px; height: 2px; background: rgba(255,255,255,.1); position: relative; margin: 0 auto; }
.loader-bar span { position: absolute; left: 0; top: 0; height: 100%; width: 0%; background: linear-gradient(90deg, var(--primary), var(--secondary)); }
.loader-count { margin-top: 14px; font-size: 12px; letter-spacing: .1em; color: var(--text-secondary); }

/* ---------- Buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 16px 32px; border-radius: 100px; font-size: 14px; font-weight: 700; letter-spacing: .02em; overflow: hidden; isolation: isolate; transition: transform .4s var(--ease-premium), box-shadow .4s var(--ease-premium), background .4s; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--secondary)); color: #fff; box-shadow: 0 8px 30px rgba(237,71,43,.25); }
.btn-primary:hover { box-shadow: 0 12px 40px rgba(237,71,43,.45); transform: translateY(-2px); }
.btn-outline { border: 1px solid var(--border); color: var(--text); background: rgba(255,255,255,.02); }
.btn-outline:hover { border-color: var(--primary); background: rgba(237,71,43,.08); color: var(--primary); }
.btn-lg { padding: 20px 42px; font-size: 15px; }
.btn-square { border-radius: 4px; }
.btn .ripple { position: absolute; border-radius: 50%; background: rgba(255,255,255,.35); transform: scale(0); animation: ripple .6s linear; pointer-events: none; }
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

/* ---------- Header ---------- */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:500;
    padding:4px 0;

    background:var(--primary);

    border-bottom:none;

    transition:background .35s ease,
               padding .35s ease;
}

.header.scrolled{
    padding:4px 0;

    background:#0B0B0B;

    border-bottom:none;

    box-shadow:0 8px 30px rgba(0,0,0,.25);
}
.header-inner{
    position:relative;
    max-width:var(--container);
    margin:0 auto;
    padding:0 24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    height:56px;
}

/* ---------- Dual Logo Stacking & Fading ---------- */
.logo {
    position: relative;
    display: block;
    height: 80px;
    width: 150px; /* Adjust this width if your logo looks squished or cut off */
}

.logo img {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: left center;
    transition: opacity .35s ease, transform .35s var(--ease-premium);
}

.logo:hover img {
    transform: scale(1.03);
}

/* 1. Hide the scrolled logo initially */
.logo .logo-scrolled {
    opacity: 0;
}

/* 2. When scrolled down, hide the default logo */
.header.scrolled .logo-default {
    opacity: 0;
}

/* 3. When scrolled down, show the scrolled logo */
.header.scrolled .logo-scrolled {
    opacity: 1;
}
.nav{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
}

.nav-list{
    display:flex;
    align-items:center;
    gap:32px;
}

.nav-link{
    position:relative;
    font-size:13px;
    font-weight:600;
    letter-spacing:.06em;
    text-transform:uppercase;
    color:#0B0B0B; /* Black on orange header */
    padding:6px 0;
    transition:color .35s ease;
}

.nav-link::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:1px;
    background:#FFFFFF; /* White underline */
    transition:width .35s var(--ease-premium);
}

/* Initial state */
.nav-link:hover,
.nav-link.active{
    color:#0B0B0B;
}

.nav-link:hover::after,
.nav-link.active::after{
    width:100%;
}

/* Scrolled state */
.header.scrolled .nav-link{
    color:#FFFFFF;
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active{
    color:#FFFFFF;
}

.header.scrolled .nav-link::after{
    background:var(--primary); /* Orange underline on black header */
}

.header-search { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--text); transition: border-color .3s, color .3s, transform .3s; }
.header-search svg { width: 18px; height: 18px; }
.header-search:hover { border-color: var(--primary); color: var(--primary); }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; z-index: 600; }
.hamburger span { display: block; height: 2px; width: 100%; background: #fff; transition: transform .35s var(--ease-premium), opacity .3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 400; background: rgba(11,11,11,.98); backdrop-filter: blur(20px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 34px; transform: translateY(-100%); transition: transform .55s var(--ease-premium); }
.mobile-menu.active { transform: translateY(0); }
.mobile-link { font-family: var(--font-heading); font-size: 32px; font-weight: 600; }
.mobile-cta { margin-top: 10px; }


/* ---------- Scroll indicator (shared) ---------- */
.scroll-indicator { display: flex; flex-direction: column; align-items: center; gap: 10px; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-secondary); }
.scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.15); position: relative; overflow: hidden; }
.scroll-line i { position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--primary); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* ==========================================================
   TRUE EDGE HERO
========================================================== */

.true-edge-hero {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 700px;

    margin: 0;
    padding: 0;

    background: #ED472B;

    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================
   PICTURE
========================================================== */

.true-edge-hero picture {
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}


/* ==========================================================
   HERO IMAGE
========================================================== */

.true-edge-hero .hero-image {
    display: block;

    width: 100%;
    height: 100%;

    max-width: none;

    object-fit: contain;
    object-position: center center;
}


/* ==========================================================
   SCREEN READER TEXT
========================================================== */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* ==========================================================
   DESKTOP
========================================================== */

@media (min-width: 768px) {

    .true-edge-hero {
        height: 100vh;
        min-height: 700px;
    }

    .true-edge-hero .hero-image {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .true-edge-hero {
        height: 100vh;
        min-height: 600px;
    }

    .true-edge-hero .hero-image {
        width: 100%;
        height: 100%;

        object-fit: contain;
    }

}
/*==================================================
TRUSTED BY
==================================================*/

.trusted{

    background:#0B0B0B;

    padding:45px 0 25px;

    overflow:hidden;

}

/* Heading */

.trusted-heading{

    text-align:center;

    margin-bottom:18px;

}

.trusted-heading h2{

    font-size:clamp(26px,3vw,42px);

    font-weight:700;

    line-height:1.1;

    letter-spacing:-1px;

    color:#ECECEC;

    margin-bottom:8px;

    text-transform:uppercase;

}

.trusted-heading p{

    font-size:13px;

    font-weight:300;

    color:rgba(255,255,255,.45);

    text-transform:uppercase;

    letter-spacing:2px;

}

/* Slider */

.trusted-slider{

    position:relative;

    overflow:hidden;

    width:100%;

    padding:15px 0;

}

/* Left Fade */

.trusted-slider::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:120px;

    height:100%;

    z-index:10;

    background:linear-gradient(to right,#0B0B0B,transparent);

}

/* Right Fade */

.trusted-slider::after{

    content:"";

    position:absolute;

    right:0;

    top:0;

    width:120px;

    height:100%;

    z-index:10;

    background:linear-gradient(to left,#0B0B0B,transparent);

}

/* Logo Track */

.trusted-track{

    display:flex;

    align-items:center;

    gap:80px;

    width:max-content;

    animation:logoScroll 28s linear infinite;

}

/* Pause on Hover */

.trusted-slider:hover .trusted-track{

    animation-play-state:paused;

}

/* Logos */

.trusted-track img{

    height:70px;

    width:auto;

    object-fit:contain;

    opacity:.65;

    filter:grayscale(100%) brightness(1.8);

    transition:all .35s ease;

}

.trusted-track img:hover{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

/* Infinite Scroll */

@keyframes logoScroll{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* Tablet */

@media(max-width:992px){

.trusted{

    padding:40px 0 20px;

}

.trusted-heading h2{

    font-size:34px;

}

.trusted-track{

    gap:60px;

}

.trusted-track img{

    height:55px;

}

}

/* Mobile */

@media(max-width:768px){

.trusted{

    padding:35px 0 18px;

}

.trusted-heading{

    margin-bottom:12px;

}

.trusted-heading h2{

    font-size:24px;

}

.trusted-heading p{

    font-size:11px;

    letter-spacing:1px;

}

.trusted-track{

    gap:40px;

}

.trusted-track img{

    height:42px;

}

.trusted-slider::before,

.trusted-slider::after{

    width:60px;

}

}

/* ============================================================
   WOW FEATURE
   ============================================================ */
.wow-feature { padding: 140px 0; background: var(--primary); color: #0B0B0B; overflow: hidden; }
.wow-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.wow-media-slot { aspect-ratio: 4/5; border-radius: var(--radius-lg); border-color: rgba(11,11,11,.25); }
.wow-title { font-size: clamp(28px, 3.6vw, 46px); text-transform: uppercase; color: #0B0B0B; }
.wow-badge { display: inline-block; background: #0B0B0B; color: var(--primary); padding: 4px 18px; border-radius: 8px; margin: 6px 0; transition: transform .35s var(--ease-premium), background .35s; }
.wow-badge:hover { transform: scale(1.05) rotate(-2deg); }
.wow-copy p { margin-top: 26px; max-width: 480px; color: rgba(11,11,11,.75); font-weight: 500; }
.explore-btn {
  margin-top: 40px; display: inline-flex; align-items: center; justify-content: center;
  width: 140px; height: 140px; border-radius: 50%; border: 1px solid rgba(11,11,11,.4);
  font-size: 13px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #0B0B0B;
  transition: transform .5s var(--ease-premium), background .5s, color .5s;
}
.explore-btn:hover { background: #0B0B0B; color: var(--primary); transform: rotate(10deg) scale(1.05); }

/* ============================================================
   SERVICES (PREMIUM ACCORDION & SLIDER - FINAL UPDATED)
============================================================ */

.services {
    position: relative;
    background: var(--bg);
    /* Reduced overall section padding */
    padding: clamp(30px, 5vw, 50px) 0;
    overflow: hidden;
}

.services .container {
    max-width: 1320px;
    margin: auto;
}

/* --- INTRO TYPOGRAPHY --- */
.services-tagline {
    display: block;
    text-align: center;
    font-size: clamp(18px, 3vw, 28px); 
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7); 
    margin-bottom: 12px;
}

.services-sub {
    display: block;
    text-align: center;
    font-size: clamp(14px, 2vw, 18px); 
    line-height: 1.5;
    font-weight: 400; 
    color: rgba(255, 255, 255, 0.4); 
    max-width: 100%; 
    margin: 0 auto clamp(30px, 5vw, 50px); 
}

/* ============================================================
   ACCORDION ROW & DYNAMIC BACKGROUND
============================================================ */

.service-accordion {
    width: 100%;
    border-top: 1px solid rgba(255,255,255,.08);
}

.service-row {
    border-bottom: 1px solid rgba(255,255,255,.08);
    transition: background-color 0.6s ease, border-color 0.6s ease;
}

/* Dynamic active state: Orange background */
.service-row.active {
    background-color: var(--primary);
    border-color: transparent; 
}

/* Add breathing room to the body content */
.service-row-body {
    padding-left: 4vw;
    padding-right: 4vw;
}

/* ============================================================
   ROW HEADER (Fixed Uniform Height)
============================================================ */

.service-row-head {
    position: relative;
    /* Drastically reduced from max 70px down to a flat 45px for a super sleek look */
    height: 45px; 
    cursor: pointer;
    margin: 0; /* Ensures no stray margins push the boxes apart */
    padding: 0 4vw;
}
/* ============================================================
   ROW TITLE (Absolute Mathematical Center & No Invisible Gaps)
============================================================ */

.service-row-title {
    /* Forces the text into the exact dead center of the row */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    /* Safely contains the text so it never overlaps the mobile plus icon */
    width: 75%; 
    
    font-size: clamp(14px, 2.5vw, 20px); 
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    line-height: 1; /* Removes the invisible gap below the text */
    color: rgba(255,255,255,.35);
    transition: color .35s ease;
    margin: 0;
    padding: 0; 
}

/* Color inversion for typography when active or hovered */
.service-row:hover .service-row-title { color: #fff; }
.service-row.active .service-row-title,
.service-row.active .service-meta-title,
.service-row.active .service-nav-btn .nav-text {
    color: #0B0B0B;
}

/* ============================================================
   PLUS / MINUS ICON (Pinned Exactly to Middle)
============================================================ */

.service-row-icon {
    position: absolute; 
    right: 4vw; 
    /* Force the icon perfectly into the vertical middle */
    top: 50%;
    transform: translateY(-50%); 
    width: 28px; 
    height: 28px;
}

.service-row-icon::before,
.service-row-icon::after {
    content: "";
    position: absolute;
    background: #fff;
    left: 50%;
    top: 50%;
    transition: background-color 0.35s ease, transform 0.35s ease, opacity 0.35s ease;
}

.service-row-icon::before {
    width: 20px;
    height: 2px;
    transform: translate(-50%,-50%);
}

.service-row-icon::after {
    width: 2px;
    height: 20px;
    transform: translate(-50%,-50%);
}

.service-row.active .service-row-icon::after {
    opacity: 0; /* Turns plus into minus */
}

/* Invert icon color when active */
.service-row.active .service-row-icon::before,
.service-row.active .service-row-icon::after {
    background-color: #0B0B0B;
}

/* ============================================================
   CINEMATIC ACCORDION BODY (MODERN GRID METHOD)
============================================================ */

.service-row-body {
    display: grid;
    grid-template-rows: 0fr; /* Starts completely collapsed */
    transition: grid-template-rows 1.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.service-row.active .service-row-body {
    grid-template-rows: 1fr; /* Expands perfectly to exact content height */
}

/* ============================================================
   PREMIUM SERVICE SLIDER (The Staggered Float)
============================================================ */

.service-slider {
    /* overflow hidden is completely REQUIRED for the 0fr grid trick to work */
    overflow: hidden; 
    width: 100%;
    
    /* Reduced padding to remove the large orange gap at the bottom */
    padding: 20px 0 25px; 
    
    /* Hidden State */
    opacity: 0;
    transform: translateY(30px) scale(0.98); 
    transition: opacity 0.5s ease, transform 0.6s ease;
}

.service-row.active .service-slider {
    /* Reveal State */
    opacity: 1;
    transform: translateY(0) scale(1);
    /* Delays the content slightly so the box starts opening first */
    transition: opacity 1.5s ease 0.15s, transform 2s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

/* --- GRID ALIGNMENT --- */
.service-grid {
    width: 100%;
    max-width: 1280px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr; 
    align-items: center;
    gap: 40px;
}

.service-left {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.service-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

/* ============================================================
   NAVIGATION BUTTONS
============================================================ */

.service-nav-btn {
    background: none;
    border: none;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform .35s ease;
}

.service-nav-btn:hover {
    transform: translateY(-3px);
}

.service-nav-btn .nav-text {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .18em;
    color: #fff;
    transition: color 0.35s ease;
}

.nav-line {
    width: 65px;
    height: 2px;
    background: #fff;
    transition: width 0.35s ease, background-color 0.35s ease;
}

/* Hover effects */
.service-nav-btn:hover .nav-line { width: 90px; }
.service-nav-btn.service-prev:hover .nav-line { width: 90px; background: #0B0B0B; }
.service-nav-btn.service-next:hover .nav-line { width: 90px; background: #0B0B0B; }

/* Invert nav lines when active */
.service-row.active .nav-line {
    background-color: #0B0B0B;
}

/* ============================================================
   TILTED IMAGE CARD
============================================================ */

.service-card-wrapper {
    position: relative;
    width: clamp(240px, 25vw, 360px); 
    aspect-ratio: 3/4;
    perspective: 1000px;
    margin: 0 auto;
}

.service-card-layer {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card-layer.layer-1 {
    background: #2d2d2d;
    transform: rotate(-4deg);
    opacity: .55;
    z-index: 2; /* Behind main image */
}

.service-card-layer.layer-2 {
    background: #444;
    transform: rotate(-8deg);
    opacity: .25;
    z-index: 1; /* Furthest back */
}

.service-card-main {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 24px;
    background: #fff;
    transform: rotate(3deg);
    transition: transform 0.55s cubic-bezier(0.22,1,.36,1);
    box-shadow: 0 45px 90px rgba(0,0,0,.35);
    z-index: 5; /* Forces image to the front */
}

.service-card-wrapper:hover .service-card-main { transform: rotate(0deg) scale(1.03); }
.service-card-wrapper:hover .layer-1 { transform: rotate(-2deg) translate(10px, 10px) scale(0.98); }
.service-card-wrapper:hover .layer-2 { transform: rotate(2deg) translate(20px, 20px) scale(0.95); }

.service-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* ============================================================
   META TITLE
============================================================ */

.service-meta {
    margin-top: 30px;
}

.service-meta-title {
    font-size: clamp(28px, 5vw, 42px); 
    line-height: 1.05;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    transition: color 0.35s ease;
}

/* ============================================================
   RESPONSIVE LOGIC (DESKTOP / MOBILE DYNAMICS)
============================================================ */

/* --- DESKTOP (No plus icon at all) --- */
@media (min-width: 992px) {
    .service-row-icon {
        display: none !important; 
    }
}

/* --- MOBILE (Plus icon visible and blinking when active, stacked grid) --- */
@media (max-width: 991px) {
    .service-row-icon {
        display: block; 
    }

    /* Mobile Icon Blinking */
    @keyframes iconPulseBlink {
        0%, 100% { opacity: 1; transform: scale(1); }
        50% { opacity: 0.2; transform: scale(0.85); }
    }

    .service-row.active .service-row-icon {
        animation: iconPulseBlink 2s infinite ease-in-out;
    }
    
    /* Fixed Mobile Grid Layout */
    .service-grid {
        grid-template-columns: 1fr 1fr;
        row-gap: 30px;
        column-gap: 10px;
        text-align: center;
    }
    
    /* Image centered on top */
    .service-center {
        grid-column: 1 / 3;
        grid-row: 1;
        margin-bottom: 0;
    }
    
    /* Unwrap the right container to separate NEXT and Title */
    .service-right {
        display: contents; 
    }
    
    /* Title centered in the middle */
    .service-meta {
        grid-column: 1 / 3;
        grid-row: 2;
        margin: 0; 
    }
    
    /* PREV button aligned on bottom left */
    .service-left {
        grid-column: 1 / 2;
        grid-row: 3;
        justify-content: flex-end; 
        padding-right: 15px;
    }
    
    /* NEXT button aligned on bottom right */
    .service-nav-btn.service-next {
        grid-column: 2 / 3;
        grid-row: 3;
        justify-self: flex-start; 
        align-self: center;
        margin-left: 15px;
    }
}
/* ============================================================
   C.O.R.E
   ============================================================ */
.core { padding: 140px 0; background: var(--primary); color: #0B0B0B; }
.core-eyebrow {
    color: #0B0B0B;
}
.core-title { color: #0B0B0B; }
.core-grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid rgba(11,11,11,.2); }
.core-item { padding: 40px 30px; border-right: 1px solid rgba(11,11,11,.2); transition: transform .4s var(--ease-premium); }
.core-item:last-child { border-right: none; }
.core-item:hover { transform: translateY(-8px); }
.core-letter { display: block; font-family: var(--font-heading); font-size: 60px; font-weight: 700; line-height: 1; }
.core-index { display: block; font-size: 12px; letter-spacing: .16em; margin-top: 10px; color: rgba(11,11,11,.6); }
.core-item h4 { font-size: 17px; text-transform: uppercase; margin: 14px 0 10px; }
.core-item p { font-size: 13px; color: rgba(11,11,11,.75); }

/* ============================================================
   TESTIMONIALS ("Impact")
   ============================================================ */
.impact { padding: 140px 0; background: var(--bg); }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.impact-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 34px; transition: transform .5s var(--ease-premium), border-color .5s, box-shadow .5s; }
.impact-card:hover { transform: translateY(-8px); border-color: rgba(237,71,43,.4); box-shadow: 0 24px 50px rgba(0,0,0,.35); }
.impact-card p { font-size: 15px; color: var(--text-secondary); margin-bottom: 28px; min-height: 96px; }
.impact-author { display: flex; align-items: center; gap: 14px; }
.impact-avatar { width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0; }
.impact-avatar::after { font-size: 9px; padding: 4px; }
.impact-author h5 { font-size: 14px; }
.impact-author span { font-size: 12px; color: var(--text-secondary); }

/* ============================================================
   NEW CASE STUDY SECTION (ARTBOARD 8 DESIGN)
   ============================================================ */
.case-study-section {
    position: relative;
    width: 100%;
    padding: 60px 0 30px;
    background-color: #F13A18; /* Vibrant reddish-orange from design */
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 1; /* Ensures it sits below the header */
}

.case-container {
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- VERTICAL BACKGROUND TEXT --- */
.case-bg-text-vertical {
    position: absolute;
    /* Pulls it safely inside the right edge of the screen */
    right: 20px; 
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 80px;
    writing-mode: vertical-rl;
    font-family: var(--font-heading);
    /* Uses clamp to keep it a reasonable size on all devices */
    font-size: clamp(60px, 7vw, 120px); 
    font-weight: 800;
    line-height: 1;
    color: rgba(0, 0, 0, 0.04);
    pointer-events: none;
    z-index: 0;
}

/* --- MAIN TITLE --- */
.case-study-main-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    color: #000000;
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

/* --- 3-COLUMN GRID --- */
.case-study-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
    position: relative;
}

/* --- NAVIGATION BUTTONS --- */
.case-col-left { display: flex; justify-content: flex-end; }
.case-col-right { display: flex; flex-direction: column; align-items: flex-start; }

.case-nav-btn {
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    padding: 10px;
    transition: transform 0.3s ease;
}

.case-nav-btn:hover {
    transform: scale(1.05);
}

.nav-text {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 800;
    font-style: italic;
    color: #000000;
    letter-spacing: 0.05em;
}

.nav-line {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #000000;
}

/* --- META INFO (Right Side) --- */
.case-meta-info {
    margin-top: 40px;
    margin-left: 20px;
    text-align: center;
}

.meta-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    font-style: italic;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.meta-date {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 0.4);
}

/* --- TILTED CENTER CARD STACK --- */
.case-card-wrapper {
    position: relative;
    /* Reduced min-width, viewport width, and max-width */
    width: clamp(220px, 22vw, 340px); 
    aspect-ratio: 3/4;
    perspective: 1000px;
    margin: 0 auto; /* Ensures it stays centered */
}

/* Main Image */
.case-card-main {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-6deg); /* The signature tilt */
    box-shadow: 0 30px 60px rgba(0,0,0,0.2);
    z-index: 3;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.case-card-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Stacked shadow layers behind the image */
.case-card-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.15); /* Dark shadow overlay */
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.layer-1 {
    transform: rotate(-2deg) translate(10px, 10px) scale(0.98);
    z-index: 2;
}

.layer-2 {
    transform: rotate(2deg) translate(20px, 20px) scale(0.95);
    z-index: 1;
}

/* Interactive hover lift */
.case-card-wrapper:hover .case-card-main { transform: rotate(-4deg) translateY(-10px); }
.case-card-wrapper:hover .layer-1 { transform: rotate(-1deg) translate(15px, 15px) scale(0.98); }
.case-card-wrapper:hover .layer-2 { transform: rotate(4deg) translate(30px, 30px) scale(0.95); }

/* --- MOBILE RESPONSIVENESS (UPDATED) --- */
@media (max-width: 991px) {
    .case-study-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* Creates two columns for side-by-side buttons */
        gap: 20px;
        align-items: center;
    }
    
    /* This removes the column wrappers from the layout equation on mobile */
    .case-col-left,
    .case-col-right,
    .case-col-center {
        display: contents; 
    }

    /* 1. Image on top, full width */
    .case-card-wrapper {
        grid-column: 1 / 3; /* Spans across both columns */
        grid-row: 1;
        margin: 0 auto 30px;
    }

    /* 2. Meta Title (JAPANESE CUISINE) neatly under the image */
    .case-meta-info {
        grid-column: 1 / 3;
        grid-row: 2;
        margin: 0 auto 30px; /* Replaces the awkward margins from desktop */
        text-align: center;
    }

    /* 3. PREV button sits on the bottom left */
    .case-nav-btn.prev {
        grid-column: 1 / 2;
        grid-row: 3;
        justify-self: end;
        margin-right: 10px;
    }

    /* 4. NEXT button sits on the bottom right */
    .case-nav-btn.next {
        grid-column: 2 / 3;
        grid-row: 3;
        justify-self: start;
        margin-left: 10px;
    }

    .case-bg-text-vertical {
        display: none;
    }
}
/* ==========================================================
   WHY CHOOSE US SECTION
========================================================== */
.why { 
    padding: 100px 0; 
    background: var(--bg-section, #0B0B0B); 
}

.why-heading { 
    font-size: clamp(32px, 5vw, 64px); 
    text-transform: uppercase; 
    margin-bottom: 60px; 
}

/* ---------- Row 1: Text & Rings ---------- */
.why-row { 
    display: grid; 
    grid-template-columns: 1fr minmax(auto, 600px); 
    gap: 50px; 
    margin-bottom: 20px; /* Reduced gap between rings and numbers */
}

.why-copy h3 { 
    font-size: clamp(22px, 3vw, 32px); 
    line-height: 1.3;
    text-transform: uppercase;
    max-width: 450px; 
    margin-bottom: 20px; 
}

.why-rings { 
    display: flex; 
    flex-direction: column; 
    gap: 30px; 
}

.ring-item { 
    position: relative; 
    display: grid;
    grid-template-columns: 120px 1fr;
    align-items: center; 
    gap: 30px; 
}

.ring-svg { width: 120px; height: 120px; transform: rotate(-90deg); flex-shrink: 0; }
.ring-track { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 2; }

.ring-fill { 
    fill: none; 
    stroke: var(--primary, #FF5722); 
    stroke-width: 2; 
    stroke-linecap: round; 
    transition: stroke-dashoffset 1.6s var(--ease-premium, ease); 
}

.ring-pct { 
    position: absolute; 
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading, sans-serif); 
    font-size: 22px; 
    font-weight: 700; 
}

.ring-item-text-container {
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.ring-item h5 { font-size: 16px; font-weight: 700; text-transform: uppercase; margin: 0 0 8px 0; }
.ring-item p { font-size: 14px; color: var(--text-secondary, #999); margin: 0; line-height: 1.6; }

/* ---------- Row 2: Stats & V Image ---------- */
.why-row-stats { 
    display: grid; 
    grid-template-columns: .5fr 1fr 1.5fr; 
    align-items: center; 
    gap: 50px;
}

.why-stats { 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 40px 20px; 
}

.why-stats h3 { 
    font-size: clamp(40px, 5vw, 56px); 
    font-weight: 700;
    margin: 0 0 5px 0;
}

/* 1. This keeps the descriptions at the bottom small and on their own line */
.why-stats div > span:last-child {
    font-size: 16px;
    color: var(--text-secondary, #999);
    display: block;
    max-width: 150px;
    line-height: 1.4;
    margin: 0 auto; 
    text-align: center;
}

/* 2. This forces the numbers to stay large and perfectly inline with the +, %, and M+ */
.why-stats h3 { 
    display: flex;
    justify-content: center;
    align-items: baseline;
}

.why-stats h3 span.counter {
    display: inline;
    font-size: inherit;
    color: inherit;
}

/* ---------- V Image Collage ---------- */
.why-collage {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

.collage-slot { 
    position: relative; 
    width: 100%; 
    max-width: 700px; 
    height: 600px; 
    background-size: contain !important; 
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-color: transparent !important; 
    border: none !important; 
    box-shadow: none !important; 
    border-radius: 0 !important; 
    clip-path: none !important;
    transform: none !important;
}

.collage-slot::before,
.collage-slot::after {
    display: none !important;
}

/* ==========================================================
   MOBILE RESPONSIVENESS (Max-Width: 900px)
========================================================== */
@media (max-width: 900px) {
    
    /* Header overrides */
    .nav { display: none; } 
    .header-cta { display: none; }
    
    .hamburger { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        width: 26px; 
        z-index: 600; 
        cursor: pointer;
        border: none; 
        background: transparent;
        padding: 0;
    } 
    
    .logo {
        height: 45px; 
        width: 110px; 
        flex-shrink: 0; 
        display: flex;
        align-items: center;
    }

    .hamburger span {
        display: block; 
        height: 2px;
        background: #0B0B0B;
        transition: width .3s ease, opacity .3s, transform .35s ease, background .35s ease;
    }

    .header.scrolled .hamburger span { background: #FFFFFF; }
    .hamburger span:nth-child(1) { width: 100%; }
    .hamburger span:nth-child(2) { width: 65%; margin-left: auto; }
    .hamburger span:nth-child(3) { width: 100%; }

    .hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); background: #FFF; }
    .hamburger.active span:nth-child(2) { width: 100%; opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); background: #FFF; }

    /* Why Choose Us Mobile overrides */
    .why-row, .why-row-stats {
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .why-stats {
        margin-bottom: 10px; 
    }
    
    .collage-slot {
        height: 280px; /* Snug fit for mobile */
        max-width: 100%;
        margin-top: 0;
    }
}
/* ============================================================
   CONTACT
============================================================ */

.get-in-touch {
    padding: 140px 0;
    background: var(--bg);
}

.touch-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 80px;
}

.touch-desc {
    color: var(--text-secondary);
    max-width: 420px;
    margin-bottom: 40px;
}

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--primary);
    font-weight: 700;
}

/* ============================================================
   FORM
============================================================ */

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 44px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 26px;
}

.form-group .wpcf7-form-control-wrap{
    display:block;
}

/* Inputs */

.form-group input,
.form-group textarea{

    width:100%;

    display:block;

    background:transparent;

    color:var(--text);

    border:none;

    border-bottom:1px solid var(--border);

    padding:30px 0 12px;

    font-size:16px;

    line-height:1.5;

    outline:none;

    box-sizing:border-box;

    transition:border-color .3s;

}

.form-group textarea{

    min-height:140px;

    resize:vertical;

}
.form-group input:focus,
.form-group textarea:focus{

    border-color:var(--primary);

}

/* Floating Labels */

.form-group label{

    position:absolute;

    left:0;

    top:32px;

    font-size:15px;

    color:var(--text-secondary);

    pointer-events:none;

    transition:all .25s ease;

}

.form-group:focus-within label,
.form-group.has-value label{

    transform: translateY(-20px);

    font-size: 12px;

    color: var(--primary);

}

/* Button */

.submit-wrapper{

    margin-top:15px;

}

.btn-submit{

    width:100%;

}

/* ============================================================
   CONTACT FORM 7
============================================================ */

.wpcf7-spinner{

    display:none;

}

.wpcf7-response-output{

    margin:20px 0 0 !important;

    padding:14px 18px !important;

    border-radius:12px;

    font-size:14px;

}

.wpcf7 form.sent .wpcf7-response-output{

    border:1px solid #24c16c !important;

    color:#24c16c;

}

.wpcf7 form.invalid .wpcf7-response-output{

    border:1px solid #ff4b4b !important;

    color:#ff4b4b;

}

.wpcf7-not-valid-tip{

    margin-top:8px;

    font-size:12px;

    color:#ff4b4b;

}
/* ============================================================
   FAQ
   ============================================================ */
.faq{
    padding:140px 0 60px;
    background:var(--bg-section);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 26px 0; text-align: left; font-size: 16px; font-weight: 600; transition: color .3s; }
.faq-question:hover { color: var(--primary); }
.faq-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: var(--text); transition: transform .35s var(--ease-premium); }
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-icon::after { left: 50%; top: 0; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.active .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item.active .faq-question { color: var(--primary); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-premium); }
.faq-answer p { padding-bottom: 24px; color: var(--text-secondary); font-size: 14px; max-width: 640px; }

/* ============================================================
   FOOTER
============================================================ */

.footer.te-footer{
    background:linear-gradient(180deg,var(--bg-section),#170805);
    border-top:1px solid var(--border);
    padding:22px 0;
}

/* =========================
   Desktop
========================= */

.footer-minimal{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

.footer-copyright{
    flex:1;
    font-size:13px;
    color:var(--text-secondary);
    text-align:left;
    white-space:nowrap;
}

.social-icons{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
}

.social-icons a{
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid var(--border);

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:11px;
    font-weight:700;

    transition:all .35s var(--ease-premium);
}

.social-icons a:hover{
    color:var(--primary);
    border-color:var(--primary);
    transform:translateY(-3px);
}

.footer-links{
    flex:1;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    gap:10px;

    font-size:15px;
    font-weight:500;
}

.footer-links a{
    color:var(--text-secondary);
    transition:color .3s;
}

.footer-links a:hover{
    color:var(--primary);
}

.footer-links span{
    color:var(--text-secondary);
}

/* =========================
   Tablet
========================= */

@media (max-width:992px){

    .footer-minimal{
        gap:20px;
    }

    .footer-links{
        font-size:14px;
    }

}

/* =========================
   Mobile
========================= */

@media (max-width:768px){

    .footer.te-footer{
        padding:30px 0;
    }

    .footer-minimal{
        display:flex;
        flex-direction:column;
        align-items:center;
        justify-content:center;
        text-align:center;
        gap:18px;
    }

    .footer-copyright{
        order:3;
        flex:none;
        text-align:center;
        white-space:normal;
    }

    .social-icons{
        order:1;
        flex:none;
        justify-content:center;
    }

    .footer-links{
        order:2;
        flex:none;
        justify-content:center;
        font-size:14px;
    }

}

/* =========================
   Small Mobile
========================= */

@media (max-width:480px){

    .footer.te-footer{
        padding:24px 0;
    }

    .social-icons a{
        width:36px;
        height:36px;
        font-size:10px;
    }

    .footer-links{
        font-size:13px;
        gap:8px;
    }

    .footer-copyright{
        font-size:12px;
    }

}
/* ==========================================
   MOBILE FAQ SPACING
========================================== */

@media (max-width:768px){

    .faq{
        padding:80px 0 20px;
    }

    .faq-answer p{
        padding-bottom:18px;
    }

    .footer.te-footer{
        margin-top:0;
        padding-top:18px;
    }

}
/* ==============================
   HEADER CTA
============================== */

.header-cta{
    display:flex;
    align-items:center;
    justify-content:center;

    min-width:140px;
    height:40px;
    padding:0 22px;

    background:#0B0B0B;
    color:#fff;

    border-radius:999px;

    transition:all .35s ease;
}
.header.scrolled .header-cta{
    background:var(--primary);
    color:#fff;
}

/* Initial state (Orange header + Black button) */
.header-cta:hover{
    background:#222;
    border-color:#222;
    color:#fff;
    transform:translateY(-2px);
}

/* Scrolled state (Black header + Orange button) */
.header.scrolled .header-cta{
    background:var(--primary);
    border-color:var(--primary);
    color:#fff;
}

.header.scrolled .header-cta:hover{
    background:var(--secondary);
    border-color:var(--secondary);
    color:#fff;
    transform:translateY(-2px);
}
@media (max-width:768px){

    .header{
        padding:4px 0;
    }

    .header-inner{
        height:56px;
        padding:0 18px;
    }

    .logo img{
        height:36px;
    }

    .nav{
        display:none;
    }

    .header-cta{
        display:none;
    }

    .hamburger{
        display:flex;
    }

}
/*====================================================
  FAQ PAGE
====================================================*/

.faq-page-main{
    background:var(--bg-dark);
}

/*===================================
  HERO
===================================*/

.faq-hero{
    padding:180px 0 110px;
    background:var(--bg-dark);
    text-align:center;
}

.faq-hero .container{
    max-width:900px;
}

.faq-title{
    font-size:clamp(60px,8vw,110px);
    line-height:.92;
    font-weight:800;
    color:var(--text-light);
    margin:24px 0 30px;
    letter-spacing:-3px;
}

.faq-subtitle{
    max-width:720px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:var(--text-secondary);
}

/*===================================
 FAQ SECTION
===================================*/

.faq-page{
    padding:0 0 140px;
}

.faq-page .container{
    max-width:950px;
}

.faq-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    overflow:hidden;
    transition:.35s;
}

.faq-item:hover{
    border-color:var(--primary);
    transform:translateY(-3px);
}

.faq-question{
    width:100%;
    padding:30px 35px;
    background:none;
    border:none;
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-align:left;
    cursor:pointer;
}

.faq-question span{
    font-size:22px;
    font-weight:600;
    line-height:1.5;
    color:var(--text-light);
    max-width:90%;
}

.faq-icon{
    width:26px;
    height:26px;
    position:relative;
    flex-shrink:0;
}

.faq-icon::before,
.faq-icon::after{
    content:"";
    position:absolute;
    left:50%;
    top:50%;
    width:18px;
    height:2px;
    background:var(--primary);
    transition:.35s;
    transform:translate(-50%,-50%);
}

.faq-icon::after{
    transform:translate(-50%,-50%) rotate(90deg);
}

.faq-item.active .faq-icon::after{
    transform:translate(-50%,-50%) rotate(0);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .45s ease;
}

.faq-answer p{
    padding:0 35px 30px;
    color:var(--text-secondary);
    line-height:1.9;
    font-size:17px;
}

/*===================================
 CTA
===================================*/

.faq-cta{
    padding:120px 0 140px;
    border-top:1px solid rgba(255,255,255,.08);
    text-align:center;
}

.faq-cta .container{
    max-width:850px;
}

.faq-cta-text{
    margin:24px auto 45px;
    max-width:620px;
    color:var(--text-secondary);
    font-size:18px;
    line-height:1.8;
}

.faq-cta .btn{
    margin-top:10px;
}
/* ============================================================
   PRIVACY POLICY
============================================================ */

.privacy-page{

    background:#0d0d0d;

    color:#ffffff;

    min-height:100vh;

}

/* ============================================================
   HERO
============================================================ */

.privacy-hero{

    padding:180px 0 100px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.privacy-hero::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at center,
    rgba(238,56,37,.18),
    transparent 70%);

    pointer-events:none;

}

.privacy-tag{

    display:inline-block;

    padding:8px 18px;

    border:1px solid rgba(255,255,255,.15);

    border-radius:100px;

    font-size:13px;

    letter-spacing:.2em;

    text-transform:uppercase;

    color:#ee3825;

    margin-bottom:22px;

}

.privacy-hero h1{

    font-size:clamp(52px,7vw,90px);

    font-weight:800;

    line-height:1;

    margin-bottom:24px;

    letter-spacing:-2px;

}

.privacy-hero p{

    max-width:700px;

    margin:auto;

    color:#bdbdbd;

    font-size:20px;

    line-height:1.8;

}

/* ============================================================
   CONTENT
============================================================ */

.privacy-content{

    padding:0 0 120px;

}

.privacy-article{

    max-width:900px;

    margin:auto;

    background:#161616;

    border:1px solid rgba(255,255,255,.06);

    border-radius:30px;

    padding:70px;

    box-shadow:

        0 40px 120px rgba(0,0,0,.35);

}

.last-updated{

    color:#888;

    margin-bottom:50px;

    font-size:15px;

}

.privacy-article h2{

    font-size:32px;

    margin-top:55px;

    margin-bottom:18px;

    color:#fff;

}

.privacy-article p{

    color:#c7c7c7;

    font-size:18px;

    line-height:1.9;

}

/* ============================================================
   LINKS
============================================================ */

.privacy-article a{

    color:#ee3825;

    text-decoration:none;

}

.privacy-article a:hover{

    text-decoration:underline;

}
/* ============================================================
   CHROME AUTOFILL FIX
============================================================ */

.contact-form input:-webkit-autofill,
.contact-form input:-webkit-autofill:hover,
.contact-form input:-webkit-autofill:focus,
.contact-form textarea:-webkit-autofill,
.contact-form textarea:-webkit-autofill:hover,
.contact-form textarea:-webkit-autofill:focus{

    -webkit-box-shadow: 0 0 0 1000px var(--bg-card) inset !important;

    -webkit-text-fill-color: var(--text) !important;

    caret-color: var(--text);

    transition: background-color 9999s ease-in-out 0s;

}
/* 1. Center the grid columns themselves */
.why-stats {
    justify-items: center !important;
}

/* 2. Center the text and stack the number/label inside each block */
.why-stats > div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
/* ==========================================================
   MOBILE VIEW & HAMBURGER OVERRIDES
========================================================== */
@media (max-width: 900px) {
    
    /* 1. Hide Desktop Nav, Show Mobile Hamburger */
    .nav { 
        display: none; 
    } 
    .hamburger { 
        display: flex; 
        cursor: pointer;
        border: none; 
        background: transparent;
    } 

    /* 2. Fix Logo Placement and Size */
    .logo {
        height: 45px; 
        width: 110px; 
        flex-shrink: 0; /* Prevents the menu from squishing the logo */
        display: flex;
        align-items: center;
    }

    /* 3. Hamburger Lines - Default to Black */
    .hamburger span {
        background: #0B0B0B;
        transition: width .3s ease, opacity .3s, transform .35s var(--ease-premium), background .35s ease;
    }

    /* Make Hamburger Lines White when header scrolls to Black */
    .header.scrolled .hamburger span {
        background: #FFFFFF;
    }

    /* 4. Asymmetrical Hamburger Lines (Bigger / Smaller look) */
    .hamburger span:nth-child(1) {
        width: 100%;
    }
    
    .hamburger span:nth-child(2) {
        width: 65%; /* Makes the middle line smaller */
        margin-left: auto; /* Pushes the shorter line to the right edge */
    }
    
    .hamburger span:nth-child(3) {
        width: 100%;
    }

    /* 5. Fix the "X" when clicked */
    /* We must reset the middle line to 100% when active so the animation is smooth */
    .hamburger.active span:nth-child(2) {
        width: 100%;
        opacity: 0;
    }
    
    /* Hide the CTA button to save space on small screens (Optional) */
    .header-cta {
        display: none;
    }
}
