@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Raleway:wght@600;700&display=swap');

/* WARCLY Global Styles */

/* -- Reset & Base ---------------------------------------- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%;font-size:16px}
body{font-family:'Plus Jakarta Sans',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  color:var(--text);background:var(--bg-white);line-height:1.6;overflow-x:hidden;
  -webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}
button{font:inherit;border:none;background:none;cursor:pointer}
input,textarea,select{font:inherit}

/* -- Tokens ---------------------------------------------- */
:root{
  --blue:#006596;
  --blue-deep:#004d73;
  --purple:#7C3AED;
  --purple-deep:#5B21B6;
  --violet:#B5A1DA;
  --chrome:#C8D3E4;
  --silver:#EEF2F7;

  --primary:var(--blue);
  --primary-dark:var(--blue-deep);
  --accent:var(--purple);
  --accent-dark:var(--purple-deep);
  --gradient:linear-gradient(135deg, var(--blue) 0%, var(--blue-deep) 100%);
  --gradient-rev:linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  --gradient-dark:linear-gradient(135deg, #f7fbfd 0%, #ffffff 100%);

  --bg-white:#F9F9F9;
  --bg-light:#F2F4F7;
  --bg-dark:#006596;
  --bg-darker:#004d73;

  --text:#0A0B0B;
  --text-light:#6B7280;
  --text-muted:#8A93A3;
  --text-white:#ffffff;
  --text-on-dark:rgba(255,255,255,.85);

  --border:#DFE4EA;
  --border-light:#EBEEF2;

  --section-dark-bg:#006f95;
  --section-dark-text:#ffffff;

  --radius:4px;
  --radius-lg:12px;
  --shadow:0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:0 4px 16px rgba(0,0,0,.08);
  --shadow-lg:0 10px 36px rgba(0,0,0,.1);
  --transition:.3s cubic-bezier(.4,0,.2,1);

  --max-width:1216px;
  --nav-height:64px;
}

/* -- Typography ------------------------------------------ */
h1,h2,h3,h4,h5,h6{line-height:1.12;font-weight:400;letter-spacing:-.03em}
h1{font-size:clamp(2.2rem,5vw,4.5rem)}
h2{font-size:clamp(1.75rem,3.5vw,2.75rem)}
h3{font-size:clamp(1.25rem,2vw,1.5rem)}

.accent-word{
  background:var(--gradient);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* -- Container ------------------------------------------- */
.container{width:100%;max-width:var(--max-width);margin:0 auto;padding:0 1rem}
@media(min-width:768px){.container{padding:0 2rem}}
@media(min-width:1200px){.container{padding:0}}

/* -- Section helpers ------------------------------------- */
.section{padding:5rem 0}
.section-label{
  font-size:.8rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;
  color:var(--primary);margin-bottom:.75rem;
}
.section-title{margin-bottom:1rem;max-width:32ch}
.section-sub{color:var(--text-light);font-size:1.1rem;max-width:56ch;line-height:1.65}

.section-dark{
  background:var(--section-dark-bg);
  color:var(--section-dark-text);
  padding:5rem 0;position:relative;overflow:hidden;
}

/* -- Wave Dividers --------------------------------------- */
.wave-divider{width:100%;overflow:hidden;line-height:0;position:relative;z-index:2}
.wave-divider svg{display:block;width:100%;height:auto;min-height:60px}
.wave-divider.flip{transform:scaleY(-1)}

/* -- Navigation ------------------------------------------ */
.nav{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  background:rgba(249,249,249,.94);backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(223,228,234,.75);
  height:var(--nav-height);
}
.nav__inner{display:flex;align-items:center;height:100%;gap:2rem}
.nav__logo{display:flex;align-items:center;gap:.6rem;flex-shrink:0}
.nav__logo-img{width:30px;height:30px;object-fit:contain}
.nav__logo-text{display:none}
.nav__links{display:none;gap:2rem;margin-left:auto}
.nav__link{font-size:.875rem;font-weight:500;color:var(--text-light);transition:color var(--transition);position:relative}
.nav__link:hover,.nav__link.active{color:var(--text)}
.nav__link::after{content:'';position:absolute;bottom:-4px;left:0;width:0;height:1px;background:var(--primary);transition:width var(--transition)}
.nav__link:hover::after,.nav__link.active::after{width:100%}
.nav__cta-desktop{display:none;margin-left:auto}
@media(min-width:900px){
  .nav__links{display:flex}
  .nav__cta-desktop{display:flex}
}

/* Hamburger */
.nav__hamburger{display:flex;flex-direction:column;gap:5px;padding:8px;cursor:pointer;margin-left:auto}
.nav__hamburger span{width:22px;height:2px;background:var(--text);border-radius:2px;transition:var(--transition)}
.nav__hamburger.open span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.nav__hamburger.open span:nth-child(2){opacity:0}
.nav__hamburger.open span:nth-child(3){transform:rotate(-45deg) translate(5px,-5px)}
@media(min-width:900px){.nav__hamburger{display:none}}

/* Mobile menu */
.nav__mobile{
  display:none;flex-direction:column;gap:1rem;padding:1.5rem 2rem;
  position:fixed;top:var(--nav-height);left:0;right:0;
  background:var(--bg-white);border-bottom:1px solid var(--border);
  box-shadow:var(--shadow-md);z-index:999;
}
.nav__mobile.open{display:flex}
.nav__mobile-link{font-size:1rem;font-weight:500;color:var(--text);padding:.5rem 0;border-bottom:1px solid var(--border-light)}
.nav__mobile-cta{padding-top:.5rem}

/* -- Buttons --------------------------------------------- */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.5rem;
  font-size:.9rem;font-weight:500;border-radius:var(--radius);
  padding:.72rem 1.45rem;transition:all var(--transition);cursor:pointer;border:1px solid transparent;
}
.btn-primary{
  background:var(--primary);color:#fff;border-color:var(--primary);
  box-shadow:none;
}
.btn-primary:hover{
  background:var(--primary-dark);border-color:var(--primary-dark);transform:translateY(-1px);
}
.btn-ghost{
  background:transparent;color:var(--text);border:1px solid var(--border);
}
.btn-ghost:hover{border-color:var(--primary);color:var(--primary)}
.btn-outline{
  background:transparent;color:var(--primary);border:1px solid var(--primary);
}
.btn-outline:hover{background:var(--primary);color:#fff}
.btn-outline-white{
  background:transparent;color:#fff;border:1px solid rgba(255,255,255,.4);
}
.btn-outline-white:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn-lg{padding:.95rem 2rem;font-size:1rem}
.btn-sm{padding:.55rem 1rem;font-size:.75rem}

.link-arrow{
  font-size:.9rem;font-weight:600;color:var(--primary);
  display:inline-flex;align-items:center;gap:.35rem;transition:gap var(--transition);
}
.link-arrow::after{content:'›';transition:transform var(--transition);font-size:1.1em}
.link-arrow:hover{gap:.6rem}
.link-arrow:hover::after{transform:translateX(3px)}

/* -- Hero ------------------------------------------------ */
.hero{
  min-height:clamp(640px,76vh,760px);display:flex;align-items:center;
  padding:112px 0 58px;
  position:relative;overflow:hidden;background:var(--bg-white);
}
.hero__grid-bg{
  position:absolute;inset:0;
  background-image:
    linear-gradient(rgba(0,101,150,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,101,150,.045) 1px, transparent 1px);
  background-size:60px 60px;
  pointer-events:none;
}
.hero__content{max-width:820px;position:relative;z-index:1}
.hero__eyebrow{
  font-size:.88rem;font-weight:400;letter-spacing:normal;text-transform:none;
  color:var(--text-light);margin-bottom:1.5rem;
  display:flex;align-items:center;gap:.75rem;
}
.hero__eyebrow::before{
  content:'';width:32px;height:1px;background:var(--primary);flex-shrink:0;
}
.hero__title{margin-bottom:1.5rem;color:var(--text);font-weight:400;max-width:760px;perspective:900px;overflow:visible}
.hero-word-clip{display:inline-block;overflow:hidden;vertical-align:bottom;padding-bottom:.04em;margin-bottom:-.04em}
.hero-word-clip:not(:last-child){margin-right:.13em}
.hero-word{display:inline-block;will-change:transform,opacity,filter;transform-origin:50% 90% -22px;animation:heroWordIntro .72s cubic-bezier(.16,1,.3,1) both;animation-delay:calc(var(--i,0) * 52ms)}
@keyframes heroWordIntro{0%{transform:translateY(112%) rotateX(-70deg) rotateZ(2deg);opacity:0;filter:blur(8px)}100%{transform:translateY(0) rotateX(0) rotateZ(0);opacity:1;filter:blur(0)}}
.hero__rotator,.hero__sub,.hero__actions{animation:heroContentIntro .62s cubic-bezier(.16,1,.3,1) both;animation-delay:.44s}
.hero__sub{animation-delay:.52s}.hero__actions{animation-delay:.6s}
@keyframes heroContentIntro{0%{transform:translateY(18px);opacity:0}100%{transform:translateY(0);opacity:1}}
.hero__rotator{font-size:clamp(1.05rem,2vw,1.25rem);line-height:1.55;color:var(--text);margin-bottom:1rem;max-width:760px}
.word-slot{display:inline-grid;place-items:center;min-width:7.2ch;height:1.45em;overflow:hidden;color:var(--primary);font-weight:500;position:relative}
.word-slot::after{content:'';position:absolute;left:0;right:0;bottom:0;height:1px;background:var(--primary);opacity:.55}
.word-slot span{display:inline-block;transform-origin:50% 50% -18px;will-change:transform,opacity,filter}
.hero__sub{font-size:1.12rem;color:var(--text-light);line-height:1.65;margin-bottom:2rem;max-width:690px}
.hero__actions{display:flex;gap:1rem;flex-wrap:wrap}

/* -- Stats Strip ----------------------------------------- */
.stats-strip{padding:4rem 0;background:var(--bg-light);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light)}
.stats-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(180px,1fr));gap:2rem;text-align:center}
.stat__value{
  font-size:clamp(2rem,4vw,2.75rem);font-weight:300;
  color:var(--primary);
  margin-bottom:.35rem;
}
.stat__label{font-size:.85rem;color:var(--text-light);line-height:1.5}

/* -- Process / Problem Section --------------------------- */
.process-list{display:flex;flex-direction:column;gap:2.5rem;
  border-left:2px solid rgba(255,255,255,.15);padding-left:2rem;margin-top:1rem;position:relative}
.process-item{position:relative;padding-left:.5rem}
.process-item::before{
  content:'';position:absolute;left:-2.6rem;top:.5rem;
  width:10px;height:10px;border-radius:50%;
  background:var(--blue);border:2px solid rgba(255,255,255,.3);
}
.process-item__num{font-size:3.5rem;font-weight:300;color:rgba(255,255,255,.18);line-height:1;margin-bottom:.5rem}
.process-item__title{font-size:1.35rem;font-weight:500;color:#fff;margin-bottom:.75rem}
.process-item__body{color:rgba(255,255,255,.7);line-height:1.7;max-width:56ch}
.process-tags{display:flex;flex-wrap:wrap;gap:.5rem;margin-top:1rem}
.process-tag{
  font-size:.75rem;font-weight:500;padding:.35rem .85rem;
  border:1px solid rgba(255,255,255,.2);border-radius:100px;
  color:rgba(255,255,255,.7);
}

/* -- Service Cards Grid ---------------------------------- */
.cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:1.5rem}
.solution-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:2rem;display:flex;flex-direction:column;transition:all var(--transition);
}
.solution-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.solution-card__tag{
  font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;
  color:var(--primary);margin-bottom:.75rem;
}
.solution-card__title{font-size:1.2rem;margin-bottom:.75rem}
.solution-card__body{color:var(--text-light);font-size:.9rem;line-height:1.65;margin-bottom:1rem}
.solution-card__list{list-style:none;margin-bottom:1rem}
.solution-card__list li{
  font-size:.85rem;color:var(--text-light);padding:.25rem 0;
  padding-left:1.2rem;position:relative;
}
.solution-card__list li::before{
  content:'•';position:absolute;left:0;color:var(--text-muted);
}

/* -- Services Page - Expandable -------------------------- */
.service-block{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius-lg);
  padding:3rem;margin-bottom:2rem;overflow:hidden;transition:all var(--transition);
}
.service-block:hover{box-shadow:var(--shadow-md)}
.service-block__icon{
  width:56px;height:56px;border-radius:var(--radius);
  background:var(--primary);display:flex;align-items:center;justify-content:center;
  margin-bottom:1.5rem;font-size:1.5rem;color:#fff;
}
.service-block__title{font-size:1.75rem;margin-bottom:1rem}
.service-block__desc{color:var(--text-light);font-size:1.05rem;line-height:1.7;margin-bottom:1.5rem;max-width:56ch}
.service-block__actions{display:flex;align-items:center;gap:.8rem;flex-wrap:wrap;margin-bottom:.2rem}
.service-block__toggle{cursor:pointer}
.service-block__details{
  max-height:0;overflow:hidden;transition:max-height .5s cubic-bezier(.4,0,.2,1);
}
.service-block__details.open{max-height:2000px}
.service-detail-grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:1.5rem;
  padding-top:2rem;border-top:1px solid var(--border);margin-top:1.5rem;
}
.service-detail{padding:1.5rem;border-radius:var(--radius);background:var(--bg-light)}
.service-detail__title{font-size:1rem;font-weight:600;margin-bottom:.5rem}
.service-detail__desc{font-size:.875rem;color:var(--text-light);line-height:1.6}

/* -- Case / Portfolio Cards ------------------------------ */
.case-cards-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.case-card{
  border:1px solid var(--border);border-radius:var(--radius-lg);overflow:hidden;
  display:flex;flex-direction:column;transition:all var(--transition);
}
.case-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.case-card__stripe{height:4px;background:var(--primary)}
.case-card__content{padding:2rem;flex:1}
.case-card__tag{font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:.5rem}
.case-card__title{font-size:1.15rem;margin-bottom:.75rem;line-height:1.35}
.case-card__text{color:var(--text-light);font-size:.9rem;line-height:1.65}
.case-card__footer{padding:1.25rem 2rem;border-top:1px solid var(--border-light)}

/* -- Logos Strip ----------------------------------------- */
.logos-strip{padding:3rem 0;border-top:1px solid var(--border);border-bottom:1px solid var(--border)}
.logos-strip__label{
  text-align:center;font-size:.75rem;font-weight:600;letter-spacing:.12em;
  text-transform:uppercase;color:var(--text-muted);margin-bottom:1.5rem;
}
.logos-row{display:flex;justify-content:center;gap:3rem;flex-wrap:wrap;align-items:center}
.logo-placeholder{font-size:.85rem;font-weight:600;color:var(--text-muted);letter-spacing:.08em;text-transform:uppercase;opacity:.5}

/* -- FAQ ------------------------------------------------- */
.faq-list{display:flex;flex-direction:column}
.faq-item{border-bottom:1px solid var(--border)}
.faq-trigger{
  display:flex;justify-content:space-between;align-items:center;width:100%;
  padding:1.25rem 0;font-size:1rem;font-weight:600;text-align:left;
  color:var(--text);cursor:pointer;gap:1rem;
}
.faq-trigger svg{flex-shrink:0;transition:transform var(--transition);color:var(--text-muted)}
.faq-trigger[aria-expanded="true"] svg{transform:rotate(45deg);color:var(--primary)}
.faq-body{
  max-height:0;overflow:hidden;transition:max-height .4s ease,padding .4s ease;
  font-size:.95rem;color:var(--text-light);line-height:1.7;
}
.faq-body.open{max-height:500px;padding-bottom:1.25rem}

/* -- Pricing --------------------------------------------- */
.pricing-section{background:var(--bg-white);padding-top:3.4rem}
.pricing-head{display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);gap:2rem;align-items:end;margin-bottom:2rem}
.pricing-head .section-title{margin-bottom:0}
.pricing-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem}
.price-card{border:1px solid var(--border);border-radius:var(--radius-lg);background:#fff;padding:1.35rem;min-height:178px;display:flex;flex-direction:column;justify-content:space-between;box-shadow:var(--shadow);will-change:transform,opacity}
.price-card span{font-size:.84rem;color:var(--text-muted);line-height:1.45}
.price-card strong{font-size:clamp(1.65rem,3vw,2.25rem);font-weight:400;letter-spacing:-.04em;color:var(--primary);margin:.9rem 0 .5rem}
.price-card p{font-size:.86rem;line-height:1.55;color:var(--text-light);margin:0}
.pricing-note{margin-top:1rem;border:1px solid rgba(0,101,150,.18);border-radius:var(--radius-lg);background:var(--primary-light);padding:1.2rem 1.35rem;display:flex;align-items:center;justify-content:space-between;gap:1.5rem}
.pricing-note p{margin:0;max-width:760px;color:var(--text);line-height:1.62}
.price-explorer{border:1px solid var(--border);border-radius:var(--radius-xl);background:linear-gradient(180deg,#fff,#f7fbfd);box-shadow:var(--shadow-lg);overflow:hidden}
.price-explorer__top{display:flex;align-items:flex-end;justify-content:space-between;gap:2rem;padding:1.45rem 1.55rem;border-bottom:1px solid var(--border);background:#fff}
.price-explorer__eyebrow{display:block;font-size:.72rem;letter-spacing:.12em;text-transform:uppercase;color:var(--primary);font-weight:700;margin-bottom:.45rem}
.price-explorer__top h3{font-size:clamp(1.45rem,2.3vw,2.15rem);font-weight:400;letter-spacing:-.04em;margin:0;color:var(--text)}
.price-explorer__top p{max-width:470px;margin:0;color:var(--text-muted);line-height:1.6;font-size:.95rem}
.price-explorer__tabs{display:flex;gap:.55rem;overflow-x:auto;padding:.85rem 1rem;border-bottom:1px solid var(--border);background:var(--bg-soft)}
.price-tab{border:1px solid var(--border);background:#fff;color:var(--text);border-radius:999px;padding:.72rem 1rem;font:inherit;font-size:.9rem;white-space:nowrap;cursor:pointer;transition:background .2s ease,border-color .2s ease,color .2s ease,transform .2s ease}
.price-tab.is-active{background:var(--primary);border-color:var(--primary);color:#fff}
.price-tab:hover{transform:translateY(-1px);border-color:rgba(0,101,150,.4)}
.price-explorer__body{display:grid;grid-template-columns:minmax(210px,.36fr) minmax(0,1fr);min-height:520px}
.price-explorer__models{border-right:1px solid var(--border);background:#fff;padding:1rem;display:flex;flex-direction:column;gap:.6rem}
.price-explorer__hint{font-size:.86rem;line-height:1.55;color:var(--text-muted);margin:.1rem .1rem .5rem}
.price-model{border:1px solid var(--border);border-radius:var(--radius-md);background:#fff;color:var(--text);padding:.9rem .95rem;text-align:left;font:inherit;line-height:1.25;cursor:pointer;transition:background .2s ease,border-color .2s ease,box-shadow .2s ease}
.price-model span{display:block;margin-top:.35rem;font-size:.72rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.08em}
.price-model.is-active{background:var(--primary-light);border-color:rgba(0,101,150,.35);box-shadow:inset 3px 0 0 var(--primary)}
.price-more-link{display:inline-flex;margin-top:.35rem;color:var(--primary);font-weight:700;text-decoration:none;font-size:.9rem}
.price-explorer__panel{padding:1.35rem;min-width:0}
.price-panel__header{display:grid;gap:.35rem;margin-bottom:1rem}
.price-panel__header span{font-size:.75rem;color:var(--primary);text-transform:uppercase;letter-spacing:.12em;font-weight:700}
.price-panel__header h4{font-size:clamp(1.55rem,2.2vw,2.1rem);font-weight:400;letter-spacing:-.04em;margin:0;color:var(--text)}
.price-panel__header p{margin:0;color:var(--text-muted);line-height:1.6;max-width:680px}
.price-repair-list{display:grid;gap:.75rem;margin-bottom:1rem}
.price-repair{display:grid;grid-template-columns:minmax(0,1fr) auto;gap:1rem;align-items:center;width:100%;border:1px solid var(--border);border-radius:var(--radius-lg);background:#fff;padding:1rem;text-align:left;font:inherit;cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease}
.price-repair strong{display:block;font-size:1rem;font-weight:700;color:var(--text);margin-bottom:.25rem}
.price-repair small{display:block;color:var(--text-muted);line-height:1.45;font-size:.86rem}
.price-repair em{font-style:normal;font-size:1.3rem;color:var(--primary);letter-spacing:-.04em;white-space:nowrap}
.price-repair.is-active{border-color:rgba(0,101,150,.45);box-shadow:0 14px 30px rgba(0,47,73,.08);transform:translateY(-1px)}
.quick-booking{display:grid;grid-template-columns:.72fr 1fr;gap:1rem;border:1px solid rgba(0,101,150,.18);border-radius:var(--radius-lg);background:var(--primary-light);padding:1rem;margin-top:1rem}
.quick-booking__summary{background:#fff;border:1px solid rgba(0,101,150,.12);border-radius:var(--radius-md);padding:1rem;display:flex;flex-direction:column;gap:.35rem}
.quick-booking__summary span{font-size:.72rem;color:var(--text-muted);text-transform:uppercase;letter-spacing:.1em;font-weight:700}
.quick-booking__summary strong{font-size:1.05rem;line-height:1.35;color:var(--text)}
.quick-booking__summary em{font-style:normal;font-size:1.65rem;color:var(--primary);letter-spacing:-.04em}
.quick-booking__summary p{margin:.25rem 0 0;color:var(--text-muted);font-size:.86rem;line-height:1.5}
.quick-booking__form{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
.quick-booking__form label{display:grid;gap:.35rem;font-size:.82rem;color:var(--text-muted);font-weight:700}
.quick-booking__form input,.quick-booking__form textarea{border:1px solid var(--border);border-radius:var(--radius-md);background:#fff;padding:.82rem .9rem;font:inherit;color:var(--text);width:100%;min-width:0}
.quick-booking__notes{grid-column:1/-1}
.quick-booking__form button{grid-column:1/-1;width:100%}
.quick-booking__response{grid-column:1/-1;font-size:.88rem;color:var(--text);line-height:1.45;min-height:1.2rem}
.quick-booking__response.is-success{background:#fff;border:1px solid rgba(0,101,150,.22);border-radius:var(--radius-md);padding:.85rem .9rem;display:grid;gap:.3rem}
.quick-booking__response.is-success strong{font-size:1rem;color:var(--text)}
.quick-booking__response.is-success span{display:inline-flex;width:max-content;max-width:100%;background:var(--primary);color:#fff;border-radius:999px;padding:.32rem .65rem;font-weight:800;letter-spacing:.03em}
.quick-booking__response.is-fail{background:#fff7ed;border:1px solid rgba(234,88,12,.24);border-radius:var(--radius-md);padding:.85rem .9rem}
.quick-booking__fast{grid-column:1/-1;display:flex;align-items:center;gap:.7rem;flex-wrap:wrap;color:var(--text-muted);font-size:.9rem}
.quick-booking__fast a{color:var(--primary);font-weight:800;text-decoration:none;border-bottom:1px solid rgba(0,101,150,.35)}
.price-explorer__body{display:block;min-height:0}
.price-explorer__models{border-right:none;background:#fff;padding:1.2rem;display:block}
.price-explorer__panel{padding:0 1.2rem 1.2rem}
.wizard-progress{display:flex;align-items:center;gap:.5rem;min-width:max-content}
.wizard-progress span{display:inline-flex;align-items:center;justify-content:center;border:1px solid var(--border);background:#fff;color:var(--text-muted);border-radius:999px;padding:.48rem .78rem;font-size:.82rem;font-weight:700;white-space:nowrap}
.wizard-progress span.is-active{background:var(--primary);border-color:var(--primary);color:#fff}
.wizard-progress span.is-done{border-color:rgba(0,101,150,.28);color:var(--primary);background:var(--primary-light)}
.wizard-back{margin-left:auto;border:1px solid var(--border);background:#fff;color:var(--primary);border-radius:999px;padding:.48rem .8rem;font:inherit;font-size:.82rem;font-weight:800;cursor:pointer}
.wizard-step-head{margin-bottom:1rem;max-width:720px}
.wizard-step-head h4,.wizard-nested h4{font-size:clamp(1.35rem,2vw,1.8rem);font-weight:400;letter-spacing:-.04em;margin:0 0 .35rem;color:var(--text)}
.wizard-step-head p{margin:0;color:var(--text-muted);line-height:1.6}
.wizard-choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem}
.wizard-choice-grid--models{margin-top:.75rem}
.wizard-choice-grid--repairs{grid-template-columns:1fr}
.wizard-choice{display:grid;gap:.28rem;text-align:left;border:1px solid var(--border);border-radius:var(--radius-lg);background:#fff;color:var(--text);padding:1rem;font:inherit;cursor:pointer;transition:border-color .2s ease,box-shadow .2s ease,transform .2s ease,background .2s ease}
.wizard-choice strong{font-size:1rem;font-weight:700;line-height:1.3;color:var(--text)}
.wizard-choice span{font-size:.88rem;line-height:1.5;color:var(--text-muted)}
.wizard-choice em{font-style:normal;font-size:.86rem;font-weight:800;color:var(--primary);margin-top:.15rem}
.wizard-choice:hover{border-color:rgba(0,101,150,.38);box-shadow:0 12px 28px rgba(0,47,73,.07);transform:translateY(-1px)}
.wizard-choice.is-active{background:var(--primary-light);border-color:rgba(0,101,150,.45);box-shadow:inset 3px 0 0 var(--primary)}
.wizard-nested{border-top:1px solid var(--border);margin-top:.25rem;padding-top:1rem}
.quick-booking--wizard{grid-template-columns:.76fr 1fr;margin-top:0}
[hidden]{display:none!important}
.faq-section{padding-top:3.8rem}


/* -- CTA Band -------------------------------------------- */
.cta-band{
  background:var(--primary-dark);
  padding:4rem 0;text-align:center;position:relative;overflow:hidden;
}
.cta-band__title{
  font-size:clamp(1.75rem,4vw,2.5rem);color:#fff;margin-bottom:1rem;
}
.cta-band__sub{color:rgba(255,255,255,.65);font-size:1.05rem;margin-bottom:2rem;max-width:48ch;margin-left:auto;margin-right:auto;line-height:1.65}
.cta-band__actions{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap}

/* -- Footer ---------------------------------------------- */
.footer{
  background:#004d73;color:var(--text-on-dark);
  padding:4rem 0 2rem;position:relative;
}
.footer__top{
  display:grid;grid-template-columns:1fr;gap:3rem;margin-bottom:3rem;
}
@media(min-width:768px){.footer__top{grid-template-columns:1.1fr 2fr}}
.footer__logo{display:flex;align-items:center;gap:.6rem;margin-bottom:.75rem}
.footer__logo-img{width:30px;height:30px;object-fit:contain}
.footer__logo-text{display:none}
.footer__tagline{color:var(--text-muted);font-size:.9rem;line-height:1.6}
.footer__nav{display:grid;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:2rem}
.footer__col h4{font-size:.75rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1rem}
.footer__col a{display:block;font-size:.9rem;color:var(--text-on-dark);padding:.3rem 0;transition:color var(--transition)}
.footer__col a:hover{color:var(--blue)}
.footer__bottom{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:1rem;
  border-top:1px solid rgba(255,255,255,.08);padding-top:1.5rem;
}
.footer__copy{font-size:.8rem;color:var(--text-muted)}
.footer__social{display:flex;gap:.75rem}
.footer__social a{color:var(--text-muted);transition:color var(--transition)}
.footer__social a:hover{color:#fff}
.back-to-top{
  font-size:.8rem;font-weight:500;color:var(--text-muted);
  display:flex;align-items:center;gap:.4rem;transition:color var(--transition);cursor:pointer;
}
.back-to-top:hover{color:#fff}

/* -- Contact Form ---------------------------------------- */
.contact-grid{display:grid;grid-template-columns:1fr;gap:3rem}
@media(min-width:768px){.contact-grid{grid-template-columns:1fr 1fr}}
.form-group{margin-bottom:1.25rem}
.form-label{display:block;font-size:.85rem;font-weight:600;color:var(--text);margin-bottom:.4rem}
.form-input,.form-textarea{
  width:100%;padding:.75rem 1rem;border:1px solid var(--border);
  border-radius:var(--radius);font-size:.95rem;color:var(--text);
  transition:border-color var(--transition);background:#fff;
}
.form-input:focus,.form-textarea:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 3px rgba(0,101,150,.1)}
.form-textarea{resize:vertical;min-height:120px}
.form-status{margin-top:.9rem;font-size:.9rem;color:var(--text-light);line-height:1.5}
.form-status.is-success{color:var(--primary);font-weight:700}
.form-status.is-error{color:#9a3412;font-weight:700}
.form-select{
  width:100%;padding:.75rem 1rem;border:1px solid var(--border);
  border-radius:var(--radius);font-size:.95rem;color:var(--text);
  background:#fff;appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M6 8L1 3h10z' fill='%236b7280'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;
}

/* -- Blog Cards ------------------------------------------ */
.blog-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:1.5rem}
.blog-card{
  display:block;color:inherit;background:#fff;
  border:1px solid var(--border);border-radius:var(--radius-lg);
  overflow:hidden;transition:all var(--transition);
}
.blog-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.blog-card:focus-visible{outline:2px solid var(--primary);outline-offset:4px}
.blog-card__img{width:100%;height:220px;object-fit:cover;background:var(--bg-light);display:block}
.blog-card__content{padding:1.5rem}
.blog-card__tag{font-size:.7rem;font-weight:600;letter-spacing:.1em;text-transform:uppercase;color:var(--primary);margin-bottom:.5rem}
.blog-card__title{font-size:1.1rem;margin-bottom:.5rem;line-height:1.35}
.blog-card__excerpt{color:var(--text-light);font-size:.875rem;line-height:1.6;margin-bottom:1rem}
.blog-card__meta{font-size:.75rem;color:var(--text-muted);margin-bottom:1rem}
.blog-card__link{font-size:.85rem;color:var(--primary);font-weight:600}

/* -- Privacy Page ---------------------------------------- */
.prose{max-width:760px;margin:0 auto}
.prose h2{font-size:1.5rem;margin:2.5rem 0 1rem;color:var(--text)}
.prose h3{font-size:1.15rem;margin:2rem 0 .75rem;color:var(--text)}
.prose p{margin-bottom:1rem;color:var(--text-light);line-height:1.75}
.prose ul,.prose ol{margin-bottom:1rem;padding-left:1.5rem;color:var(--text-light)}
.prose li{margin-bottom:.5rem;line-height:1.65}
.prose ul{list-style:disc}
.prose ol{list-style:decimal}
.prose strong{color:var(--text);font-weight:600}
.prose a{color:var(--primary);text-decoration:underline}
.article-page{background:var(--bg-white)}
.article-hero{padding:calc(var(--nav-height) + 4rem) 0 3rem;background:var(--bg-light);border-bottom:1px solid var(--border-light)}
.article-back{display:inline-flex;margin-bottom:1.5rem;font-size:.875rem;font-weight:600;color:var(--primary)}
.article-title{max-width:820px;margin-bottom:1rem}
.article-summary{max-width:720px;color:var(--text-light);font-size:1.12rem;line-height:1.7;margin-bottom:1rem}
.article-hero__image{width:100%;height:clamp(260px,42vw,520px);object-fit:cover;border-radius:var(--radius-xl);margin-top:2rem;border:1px solid var(--border);box-shadow:var(--shadow-md)}
.article-body-section{background:#fff}
.article-prose{font-size:1.02rem}
.article-cta{margin-top:3rem;padding:2rem;border:1px solid var(--border);border-radius:var(--radius-lg);background:var(--bg-light)}
.article-cta h2{margin-top:0}
.article-cta .btn{margin-top:.5rem;text-decoration:none;color:#fff}

/* -- Cookie Banner --------------------------------------- */
.cookie-banner{
  position:fixed;bottom:0;left:0;right:0;z-index:9999;
  background:var(--bg-darker);color:var(--text-on-dark);
  padding:1rem 2rem;
  display:none;align-items:center;justify-content:space-between;gap:1rem;flex-wrap:wrap;
  box-shadow:0 -4px 20px rgba(0,0,0,.2);
}
.cookie-banner.show{display:flex}
.cookie-banner__text{font-size:.875rem;color:var(--text-on-dark);max-width:600px;line-height:1.5}
.cookie-banner__text a{color:var(--blue);text-decoration:underline}
.cookie-banner__actions{display:flex;gap:.75rem}

/* -- GSAP reveal helpers --------------------------------- */
.reveal{opacity:1;transform:none}
.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

/* -- Page header for inner pages ------------------------- */
.page-header{
  padding:calc(var(--nav-height) + 4rem) 0 3rem;
  background:var(--bg-light);border-bottom:1px solid var(--border-light);
}
.page-header__title{margin-bottom:.5rem}
.page-header__sub{color:var(--text-light);font-size:1.1rem;max-width:48ch}

/* -- Responsive ------------------------------------------ */
@media(max-width:767px){
  .section{padding:3.4rem 0}
  .hero{padding:96px 0 42px;min-height:auto;align-items:flex-start}
  .hero__title{font-size:clamp(2rem,8.2vw,2.15rem);line-height:1.06;letter-spacing:-.03em;max-width:13.5ch;margin-bottom:1.25rem}
  .hero__eyebrow{font-size:.85rem;line-height:1.4;margin-bottom:1.75rem;max-width:34ch}
  .hero__rotator{font-size:1rem;line-height:1.55;display:block;max-width:35ch}
  .word-slot{display:inline-grid;vertical-align:bottom;min-width:6.8ch}
  .hero__sub{font-size:1rem;line-height:1.65;margin-bottom:1.5rem;max-width:34ch}
  .hero__actions{display:grid;grid-template-columns:1fr;gap:1rem}
  .whatsapp-float{right:12px;bottom:12px;width:44px;height:44px;box-shadow:0 10px 22px rgba(13,92,48,.22)}
  .whatsapp-float svg{width:26px;height:26px}
  .hero__actions .btn{width:100%}
  .process-list{padding-left:1.25rem}
  .process-item::before{left:-1.85rem}
  .stats-grid{grid-template-columns:repeat(2,1fr)}
  .cookie-banner{left:1rem;right:auto;bottom:1rem;width:min(300px,calc(100vw - 5.5rem));border-radius:12px;padding:.8rem;box-shadow:0 10px 32px rgba(0,0,0,.18);gap:.65rem}
  .cookie-banner__text{font-size:.76rem;line-height:1.35;margin:0}
  .cookie-banner__actions{width:100%;gap:.55rem}.cookie-banner__actions .btn{flex:1;padding:.7rem .75rem;font-size:.78rem}
  .footer__bottom{flex-direction:column;align-items:flex-start}
}

/* -- Horizontal scroll section --------------------------- */
.horizontal-section{overflow:hidden;position:relative}
.horizontal-wrapper{display:flex;flex-wrap:nowrap;width:max-content}
.horizontal-panel{
  width:100vw;height:100vh;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;padding:2rem;
}

/* -- Magnetic / Floating elements ------------------------ */
.float-element{will-change:transform}

/* -- Text reveal ----------------------------------------- */
.text-reveal-line{overflow:hidden;display:block}
.text-reveal-word{display:inline-block}

/* -- Parallax image -------------------------------------- */
.parallax-img{overflow:hidden;border-radius:var(--radius-lg)}
.parallax-img img{width:100%;height:120%;object-fit:cover;will-change:transform}

/* -- Cursor glow (desktop only) -------------------------- */
.cursor-glow{
  position:fixed;width:260px;height:260px;border-radius:50%;
  background:radial-gradient(circle,rgba(79,125,232,.05) 0%,transparent 70%);
  pointer-events:none;z-index:0;transform:translate(-50%,-50%);
  transition:opacity .3s;opacity:0;
}
.cursor-glow.active{opacity:1}

/* -- Animated counter ------------------------------------ */
.counter{display:inline-block}

/* -- Scroll progress bar --------------------------------- */
.scroll-progress{
  position:fixed;top:0;left:0;height:3px;
  background:var(--gradient);z-index:1001;
  width:100%;transform:scaleX(0);transform-origin:left;transition:none;
}

/* -- Contact info cards ---------------------------------- */
.contact-info{display:flex;flex-direction:column;gap:1.5rem}
.contact-info-card{
  padding:1.5rem;border:1px solid var(--border);border-radius:var(--radius);
  transition:all var(--transition);
}
.contact-info-card:hover{box-shadow:var(--shadow);border-color:var(--primary)}
.contact-info-card--link{display:block;text-decoration:none;color:inherit}
.contact-info-card__icon{font-size:.72rem;font-weight:600;letter-spacing:.12em;text-transform:uppercase;color:var(--primary);margin-bottom:.6rem}
.contact-info-card__icon--svg{letter-spacing:0;text-transform:none}
.contact-svg{width:28px;height:28px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round}
.brand-logo{width:28px;height:28px;display:block}
.contact-info-card__title{font-size:.95rem;font-weight:600;margin-bottom:.25rem}
.contact-info-card__text{font-size:.875rem;color:var(--text-light)}
.contact-info-card__text a{color:var(--primary);font-weight:600;text-decoration:none}
.contact-info-card__text a:hover{text-decoration:underline}
.form-note{margin-top:1rem;font-size:.85rem;line-height:1.6;color:var(--text-light)}
.form-note a{color:var(--primary);font-weight:600;text-decoration:none}
.form-note a:hover{text-decoration:underline}
.footer__tagline a{color:var(--text-on-dark);text-decoration:none}
.footer__tagline a:hover{color:#fff;text-decoration:underline}
.whatsapp-float{position:fixed;right:22px;bottom:22px;z-index:1200;width:58px;height:58px;border-radius:999px;background:#25D366;color:#fff;display:grid;place-items:center;box-shadow:0 16px 34px rgba(13,92,48,.28);transition:transform var(--transition),box-shadow var(--transition)}
.whatsapp-float:hover{transform:translateY(-3px) scale(1.03);box-shadow:0 20px 42px rgba(13,92,48,.34)}
.whatsapp-float svg{width:34px;height:34px;display:block}

/* -- Trust strip, proof without invented numbers ---------- */
.trust-strip{padding:3.6rem 0;background:var(--bg-light);border-top:1px solid var(--border-light);border-bottom:1px solid var(--border-light)}
.trust-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:0;border:1px solid var(--border);background:#fff;border-radius:var(--radius-lg);overflow:hidden}
.trust-item{padding:1.65rem;border-right:1px solid var(--border-light);min-height:210px}
.trust-item:last-child{border-right:none}
.trust-item__label{font-size:.72rem;font-weight:600;letter-spacing:.12em;color:var(--primary);margin-bottom:1.25rem;text-transform:uppercase}
.trust-item__brand{display:flex;align-items:center;gap:.55rem;font-size:.72rem;font-weight:600;letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin-bottom:1.1rem}
.trust-item__title{font-size:1.05rem;font-weight:500;letter-spacing:-.02em;margin-bottom:.7rem;color:var(--text)}
.trust-item__text{font-size:.86rem;line-height:1.68;color:var(--text-light);margin-bottom:.85rem}

/* -- Purposeful post-hero pathway section ---------------- */
.pathway-section{background:var(--primary);color:#fff;position:relative;overflow:hidden;padding:0 0 3.8rem}
.pathway-section::before{content:'';position:absolute;inset:0;background:radial-gradient(circle at 76% 20%,rgba(181,161,218,.13),transparent 30%),linear-gradient(135deg,#006596 0%,#004d73 100%);pointer-events:none}
.pathway-pin{position:relative;z-index:1}
.pathway-layout{display:grid;grid-template-columns:.88fr 1.12fr;gap:3.5rem;align-items:start;padding:4.4rem 0 3.4rem}
.pathway-label{color:rgba(255,255,255,.72)}
.pathway-copy{position:sticky;top:130px}
.pathway-copy .section-title{color:#fff;max-width:13ch;margin-bottom:1.25rem}
.pathway-sub{color:rgba(255,255,255,.72);max-width:42ch}
.pathway-progress{width:100%;max-width:320px;height:2px;background:rgba(255,255,255,.18);margin-top:2rem;overflow:hidden;border-radius:100px}
.pathway-progress span{display:block;width:100%;height:100%;background:#fff;transform:scaleX(.08);transform-origin:left;will-change:transform}
.pathway-stage{display:grid;gap:1.2rem;perspective:none}
.pathway-card{position:relative;width:100%;min-height:auto;border:1px solid rgba(255,255,255,.2);border-radius:18px;padding:2rem;background:rgba(255,255,255,.1);box-shadow:0 18px 48px rgba(0,22,38,.2);display:flex;flex-direction:column;justify-content:flex-start;will-change:transform,opacity}
.pathway-card--repairs{background:linear-gradient(145deg,rgba(255,255,255,.14),rgba(255,255,255,.07))}
.pathway-card--web{background:linear-gradient(145deg,rgba(181,161,218,.16),rgba(255,255,255,.08))}
.pathway-card__kicker{font-size:.75rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:rgba(255,255,255,.7);margin-bottom:1rem}
.pathway-card h3{font-size:clamp(1.35rem,2vw,1.9rem);line-height:1.12;letter-spacing:-.035em;color:#fff;margin-bottom:1rem;max-width:18ch}
.pathway-card p:not(.pathway-card__kicker){font-size:.96rem;line-height:1.65;color:rgba(255,255,255,.74);margin-bottom:1.5rem;max-width:48ch}
.pathway-card .btn{align-self:flex-start;margin-top:auto}

@media(min-width:768px){
  .hero__title{max-width:820px}
}

@media(max-width:1024px){
  .trust-grid{grid-template-columns:repeat(2,1fr)}
  .trust-item:nth-child(2){border-right:none}
  .trust-item:nth-child(-n+2){border-bottom:1px solid var(--border-light)}
  .pathway-layout{grid-template-columns:1fr;gap:2.5rem;min-height:auto;padding:3rem 0 2rem}
  .pathway-copy{position:relative;top:auto}
  .pathway-copy .section-title{max-width:18ch}
  .pathway-stage{min-height:auto;display:grid;gap:1rem;perspective:none}
  .pathway-card{position:relative;width:100%;min-height:auto;transform:none!important;opacity:1!important}
}

@media(max-width:767px){
  .trust-strip{padding:3rem 0}
  .trust-grid{grid-template-columns:1fr}
  .trust-item{border-right:none;border-bottom:1px solid var(--border-light);min-height:auto;padding:1.35rem}
  .trust-item:last-child{border-bottom:none}
  .pathway-section{padding-bottom:2.8rem}
  .pathway-layout{padding:1.6rem 0 .8rem;gap:1.6rem}
  .pathway-copy .section-title{max-width:12ch}
  .pathway-sub{font-size:1rem;max-width:34ch}
  .pathway-card{padding:1.5rem;border-radius:12px}
  .pathway-card h3{font-size:1.45rem}
}

@media(max-width:900px){
  .pricing-head{grid-template-columns:1fr;gap:.75rem;margin-bottom:1.5rem}
  .pricing-grid{grid-template-columns:repeat(2,1fr)}
  .pricing-note{align-items:flex-start;flex-direction:column}
  .price-explorer__top{align-items:flex-start;flex-direction:column;gap:.8rem}
  .price-explorer__body{display:block;grid-template-columns:1fr;min-height:auto}
  .price-explorer__models{border-right:none;border-bottom:1px solid var(--border);display:block;grid-template-columns:none}
  .price-explorer__hint,.price-more-link{grid-column:1/-1}
  .wizard-choice-grid{grid-template-columns:1fr}
  .quick-booking,.quick-booking--wizard{grid-template-columns:1fr}
}
@media(max-width:640px){
  .pricing-grid{grid-template-columns:1fr}
  .price-card{min-height:auto;gap:.55rem}
  .price-card strong{margin:.2rem 0}
  .price-explorer{border-radius:14px;margin-left:-.25rem;margin-right:-.25rem}
  .price-explorer__top{padding:1.1rem}
  .price-explorer__tabs{padding:.75rem;gap:.45rem}
  .price-tab{padding:.62rem .78rem;font-size:.82rem}
  .price-explorer__models{display:block;grid-template-columns:none;padding:.8rem}
  .price-explorer__panel{padding:.85rem}
  .price-repair{grid-template-columns:1fr;gap:.55rem;padding:.9rem}
  .price-repair em{font-size:1.18rem}
  .quick-booking{padding:.85rem}
  .quick-booking__form{grid-template-columns:1fr}
  .quick-booking__fast{align-items:flex-start;flex-direction:column;gap:.35rem}
}

@media(max-width:767px){
  .whatsapp-float{right:12px;bottom:12px;width:44px;height:44px;box-shadow:0 10px 22px rgba(13,92,48,.22)}
  .whatsapp-float svg{width:26px;height:26px}
}
