*{margin:0;padding:0;box-sizing:border-box}
html,body{height:100%}
body{
  font-family:'Poppins',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}
a{color:inherit}
img{max-width:100%;display:block}
.container{
  width:min(var(--container), 100% - 2rem);
  margin-inline:auto;
}

/* ===== HEADER ===== */
/* ================= NAV BAR ================= */
/* ================= HEADER ================= */

.site-header{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: #ffffff; /* SOLID, clean */
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.header-inner{
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= BRAND ================= */

.brand{
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img{
  height: 42px;
  width: auto;
}

/* ================= DESKTOP NAV ================= */

.nav-links{
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a{
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  transition: color .25s ease;
}

.nav-links a:hover{
  color: #38bdf8; /* sky blue */
}

/* ================= MENU TOGGLE ================= */

.menu-toggle{
  display: none;
  font-size: 26px;
  cursor: pointer;
  color: #0f172a;
  user-select: none;
}

/* ================= MOBILE ================= */

@media (max-width: 900px){

  .menu-toggle{
    display: block;
  }

  .nav-links{
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;

    background: #ffffff; /* SOLID background (IMPORTANT) */
    padding: 28px 20px;

    display: none;
    flex-direction: column;
    gap: 22px;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0,0,0,.18);
    z-index: 1100;
  }

  .nav-links.active{
    display: flex;
  }

  .nav-links a{
    font-size: 17px;
    font-weight: 600;
    color: #0f172a;
  }
}



/* ===== HERO (BAVE STYLE) ===== */
.hero-bave{
  position: relative;
  min-height: 92vh;
  display:grid;
  place-items:center;
  overflow:hidden;
  padding-top: 120px; /* space under fixed header */
  background:
    radial-gradient(1200px 600px at 50% 0%, rgba(0,198,255,.22), transparent 55%),
    linear-gradient(135deg, var(--bg), #2b385e);
}

.hero-bave__bg{
  position:absolute;
  inset:-30%;
  pointer-events:none;
  background:
    radial-gradient(650px 340px at 18% 58%, rgba(0,255,255,.25), transparent 60%),
    radial-gradient(720px 400px at 82% 55%, rgba(0,198,255,.22), transparent 62%),
    radial-gradient(800px 420px at 50% 90%, rgba(0,255,255,.14), transparent 65%);
  filter: blur(20px);
  opacity: .95;
  transform: rotate(-4deg);
}

.hero-bave::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.18;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.2'/%3E%3C/svg%3E");
}

.hero-bave__inner{
  position:relative;
  z-index:2;
  text-align:center;
  max-width: 980px;
}

.hero-bave__title{
  margin:0 0 14px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: .2px;
  line-height: 1.05;
  font-size: clamp(36px, 5vw, 78px);
  text-shadow: 0 10px 34px rgba(0,0,0,.55);
}

.hero-bave #typed-text{
  border-right: 3px solid var(--primary);
  white-space: normal;
  display:inline-block;
  overflow:hidden;
  max-width:100%;
}

.hero-bave__sub{
  margin: 0 auto 26px;
  max-width: 720px;
  color: var(--text-soft);
  font-size: clamp(14px, 1.25vw, 16.5px);
}

.hero-bave__actions{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.btn-bave{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration:none;
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  backdrop-filter: blur(8px);
}

.btn-bave--solid{
  background: rgba(0,255,255,.92);
  color: #001a2c;
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}
.btn-bave--solid:hover{
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(0,255,255,.55);
}

.btn-bave--outline{
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-color: rgba(216,234,255,.28);
}
.btn-bave--outline:hover{
  transform: translateY(-1px);
  border-color: rgba(0,255,255,.55);
}

.hero-bave__dots{
  margin-top: 22px;
  display:flex;
  justify-content:center;
  gap: 8px;
  opacity: .9;
}
.hero-bave__dots .dot{
  width: 6px; height: 6px;
  border-radius: 99px;
  background: rgba(216,234,255,.35);
}
.hero-bave__dots .dot--active{
  width: 18px;
  background: rgba(216,234,255,.92);
}


/* ===== HERO MEDIA LAYER (IMAGE + OVERLAY + ANIMATION) ===== */
.hero-media{
  position: relative;
}

/* Background Image */
.hero-media__bg{
  position:absolute;
  inset:0;
  background-image: url("../img/hero/hero.jpg"); /* change file name */
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  animation: heroZoom 18s ease-in-out infinite alternate;
  z-index:0;
}

/* Dark overlay so text pops */
.hero-media__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65)),
    radial-gradient(900px 480px at 50% 20%, rgba(0,198,255,.16), transparent 60%);
  z-index:1;
}

/* Animated glow waves (your cyan theme) */
.hero-media__glow{
  position:absolute;
  inset:-30%;
  pointer-events:none;
  background:
    radial-gradient(650px 340px at 18% 58%, rgba(0,255,255,.22), transparent 60%),
    radial-gradient(720px 400px at 82% 55%, rgba(0,198,255,.20), transparent 62%),
    radial-gradient(800px 420px at 50% 90%, rgba(0,255,255,.12), transparent 65%);
  filter: blur(22px);
  opacity: .95;
  transform: rotate(-4deg);
  animation: glowFloat 10s ease-in-out infinite alternate;
  z-index:2;
}

/* Make sure your text stays above everything */
.hero-bave__inner{ z-index: 5; position: relative; }

/* Smooth animation keyframes */
@keyframes heroZoom{
  from{ transform: scale(1.06) translateY(0); }
  to{ transform: scale(1.16) translateY(-10px); }
}

@keyframes glowFloat{
  from{ transform: rotate(-4deg) translateY(0); }
  to{ transform: rotate(-2deg) translateY(-18px); }
}
.hero-bave__inner{
  margin-inline:auto;
  padding: 0 6px;
}

/* ===== SIMPLE AGENCY HERO (CLEAN) ===== */
.hero-simple{
  text-align: left;
  max-width: 760px;
}

.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(216,234,255,.9);
  font-size: 13px;
  backdrop-filter: blur(10px);
}

.k-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0,255,255,.9);
  box-shadow: 0 0 16px rgba(0,255,255,.45);
}

.hero-title-stack{
  margin: 10px 0 14px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: .6px;
  font-size: clamp(44px, 6vw, 78px);
  text-shadow: 0 10px 30px rgba(0,0,0,.55);
}

.hero-accent{
  color: rgba(0,255,255,.95);
  text-shadow: 0 0 22px rgba(0,255,255,.18);
}

.hero-bave__sub{
  max-width: 560px;
}

/* Buttons left on desktop */
.hero-bave__actions{
  justify-content: flex-start;
}

/* Mobile alignment */
@media (max-width: 768px){
  .hero-simple{
    text-align: center;
    margin-inline: auto;
  }
  .hero-bave__actions{
    justify-content: center;
  }
  .hero-bave__sub{
    margin-inline: auto;
  }
}

/* ===== HERO SIZE & BEAUTY FIX ===== */
.hero-title-stack{
  font-size: clamp(34px, 4.5vw, 58px); /* smaller */
  line-height: 1.08;                  /* tighter */
  letter-spacing: .3px;
  margin-bottom: 12px;
}

.hero-bave__sub{
  font-size: 15px;
  max-width: 520px;
  margin-bottom: 22px;
  color: rgba(216,234,255,.9);
}

.hero-kicker{
  margin-bottom: 14px;
  font-size: 12px;
  opacity: .9;
}

/* Reduce glow dominance */
.hero-media__glow{
  opacity: .6;
  filter: blur(28px);
}

/* Reduce vertical pressure */
.hero-bave{
  min-height: 85vh;
}

/* ===== MINIMAL HERO STYLE ===== */
.hero-minimal{
  max-width: 720px;
  text-align: center;
  margin-inline: auto;
}

.hero-title-minimal{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4.5vw, 56px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
  text-shadow: 0 6px 24px rgba(0,0,0,.45);
}

.hero-sub-minimal{
  font-size: 15.5px;
  color: rgba(216,234,255,.9);
  max-width: 520px;
  margin: 0 auto 26px;
}

/* Calm background */
.hero-media__glow{
  display: none; /* removes busy glow */
}

.hero-bave{
  min-height: 80vh;
}



/* ===== HERO DESKTOP FIX (ONLY DESKTOP) ===== */
@media (min-width: 992px){

  /* bring hero content up + give it proper space */
  .hero-bave{
    min-height: 88vh;
    padding-top: 140px;      /* header space */
    padding-bottom: 80px;
    place-items: center;     /* ensure true center */
  }

  /* center the block properly */
  .hero-minimal{
    text-align: center;
    max-width: 820px;
    margin-inline: auto;
  }

  /* make title look premium on desktop */
  .hero-title-minimal{
    font-size: 56px;         /* clean desktop size */
    line-height: 1.08;
    letter-spacing: .2px;
    margin-bottom: 16px;
  }

  .hero-sub-minimal{
    font-size: 16px;
    max-width: 620px;
    margin: 0 auto 28px;
  }

  /* center buttons and make them feel balanced */
  .hero-bave__actions{
    justify-content: center;
    gap: 14px;
  }

  .btn-bave{
    padding: 13px 20px;
    border-radius: 12px;
  }

  /* make background calmer + text clearer */
  .hero-media__overlay{
    background:
      linear-gradient(180deg, rgba(0,0,0,.62), rgba(0,0,0,.72)),
      radial-gradient(900px 480px at 50% 20%, rgba(0,198,255,.10), transparent 60%);
  }
}
/* FORCE hero container centering (desktop-safe) */
.hero .container {
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

/* FORCE hero content to be centered */
.hero-content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  max-width: 820px;
}


/* ===== BRAND MARQUEE (LIGHT) ===== */
.brand-marquee{
  background: #ffffff;
  overflow: hidden;
  padding: 16px 0;
  border-top: 1px solid rgba(2,6,23,.08);
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.brand-marquee__track{
  display:flex;
  gap: 44px;
  width:max-content;
  animation: marqueeScroll 22s linear infinite;
  will-change: transform;
}

.brand-marquee span{
  font-size: 14.5px;
  font-weight: 600;
  color: rgba(15,23,42,.85);
  white-space: nowrap;
  position: relative;
  padding-left: 16px;
}

.brand-marquee span::before{
  content:"Рюд";
  position:absolute;
  left:0;
  color: var(--accent);
  opacity: .9;
}

@keyframes marqueeScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}




/* ===== WHAT WE DO — CLEAN + SKY BLUE BRAND ===== */
.services-bave{
  padding: 100px 0;
  background:
    linear-gradient(
      180deg,
      rgba(0,198,255,0.08),
      #f8f9fb 45%
    );
}

/* section title */
.services-title{
  text-align: center;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4vw, 52px);
  margin-bottom: 56px;
  color: #0f172a;
}

/* grid */
.services-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* base card */
.service-card{
  position: relative;
  border-radius: 18px;
  padding: 32px 30px;
  min-height: 300px;

  /* NOT pure white */
  background: linear-gradient(135deg, #f3f9fc, #eef6fb);

  border: 1px solid rgba(0,198,255,.18);
  box-shadow: 0 12px 28px rgba(15,23,42,.08);

  color: #0f172a;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .25s ease,
    color .25s ease,
    border-color .25s ease;
}

/* hover = sky blue */
.service-card:hover{
  transform: translateY(-6px);
  background: linear-gradient(135deg, #00c6ff, #009ecf);
  color: #ffffff;
  border-color: rgba(255,255,255,.35);
  box-shadow:
    0 20px 40px rgba(15,23,42,.18),
    0 0 0 1px rgba(0,198,255,.45);
}

/* icon */
.service-icon{
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
}

.service-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter .25s ease;
}

.service-card:hover .service-icon img{
  filter: brightness(0) invert(1);
}

/* heading */
.service-card h3{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 22px;
  margin-bottom: 12px;
  transition: color .25s ease;
}

/* text */
.service-card p{
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  transition: color .25s ease;
}

.service-card:hover p{
  color: rgba(255,255,255,.9);
}

/* arrow */
.service-arrow{
  position: absolute;
  right: 20px;
  bottom: 18px;
  font-size: 18px;
  color: #00c6ff;
  transition: color .25s ease, transform .25s ease;
}

.service-card:hover .service-arrow{
  color: #ffffff;
  transform: translateX(4px);
}




/* ===== WHAT WE DO – FINAL POLISH ===== */
.service-card{
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    background .3s ease,
    color .3s ease,
    border-color .3s ease;
}

.service-card:hover{
  background: linear-gradient(135deg, #1bb4e8, #0099cc);
}

.service-card:hover h3{
  color: #ffffff;
}

.service-card:hover .service-arrow{
  transform: translateX(6px);
}

@media (hover: none){
  .service-card:active{
    transform: scale(.98);
  }
}


/* ===== LIGHT MARQUEE (BREATHING SPACE) ===== */
.marquee-light{
  padding: 26px 0;
  background: #f5f6fa; /* soft off-white */
  border-top: 1px solid rgba(15,23,42,.08);
  border-bottom: 1px solid rgba(15,23,42,.08);
}

.marquee-light__wrap{
  position: relative;
  overflow: hidden;
}

/* fade edges */
.marquee-light__wrap::before,
.marquee-light__wrap::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 120px;
  z-index: 2;
  pointer-events:none;
}
.marquee-light__wrap::before{
  left:0;
  background: linear-gradient(90deg, #f5f6fa, rgba(245,246,250,0));
}
.marquee-light__wrap::after{
  right:0;
  background: linear-gradient(270deg, #f5f6fa, rgba(245,246,250,0));
}

.marquee-light__track{
  display: flex;
}

.marquee-light__row{
  display: inline-flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
  padding: 10px 0;
  animation: marqueeLightMove 24s linear infinite;
}

/* visible but calm */
.marquee-light__row span{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(18px, 2.1vw, 28px);
  letter-spacing: .6px;
  color: #0f172a;
}

.marquee-light__row i{
  font-style: normal;
  font-size: clamp(14px, 1.4vw, 18px);
  color: var(--accent);
}

/* pause on hover */
.marquee-light:hover .marquee-light__row{
  animation-play-state: paused;
}

@keyframes marqueeLightMove{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}


/* ===== PORTFOLIO SHOWCASE (PREMIUM HOVER PREVIEW) ===== */
.portfolio-showcase{
  padding: 120px 0;
  background: #f5f6fa;
}

/* header */
.portfolio-header{
  max-width: 720px;
  margin: 0 auto 70px;
  text-align: center;
}

.portfolio-header h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(36px, 4vw, 56px);
  margin-bottom: 14px;
  color: #0f172a;
}

.portfolio-header p{
  color: #475569;
  font-size: 16px;
}

/* grid */
.showcase-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
}

/* card */
.site-card{
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  border: 1px solid rgba(15,23,42,.06);
  transition: transform .25s ease, box-shadow .25s ease;
  cursor: default;
}

.site-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 30px 85px rgba(56,189,248,.25);
  border-color: rgba(56,189,248,.35);
}

/* frame */
.site-frame{
  height: 340px;
  overflow: hidden;
  position: relative;
  background: #0b1226;
}

/* scroll indicator */
.site-frame::before{
  content:"↓ Scroll Preview";
  position:absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,.85);
  background: rgba(15,23,42,.65);
  padding: 6px 12px;
  border-radius: 20px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.site-card:hover .site-frame::before{
  opacity: 1;
}

/* glare */
.site-frame::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,.08), transparent 40%);
  pointer-events:none;
}

/* screenshot */
.site-shot{
  width: 100%;
  display:block;
  transform: translateY(0);
  transition: transform 9s ease; /* SLOW + PREMIUM */
  will-change: transform;
}

/* hover scroll */
.site-card:hover .site-shot{
  transform: translateY(calc(-100% + 340px));
}

/* meta */
.site-meta{
  padding: 20px 20px 24px;
}

.site-meta h3{
  font-size: 16px;
  color: #0f172a;
  margin-bottom: 6px;
}

.site-meta span{
  font-size: 13px;
  color: #64748b;
}

/* CTA */
.portfolio-cta{
  margin-top: 60px;
  text-align: center;
}

/* ===== DISABLE CLICK, KEEP HOVER SCROLL ===== */

/* stop navigation */
.site-card{
  pointer-events: none;
}

/* re-enable hover behavior */
.site-card *{
  pointer-events: auto;
}

/* keep cursor visual */
.site-frame{
  cursor: pointer;
}


/* disable navigation but keep hover */
.site-card{
  pointer-events: none;
}

.site-card .site-frame,
.site-card .site-meta{
  pointer-events: auto;
}

/* scroll indicator */
.site-frame::before{
  content: "↕ Hover to scroll";
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  color: rgba(255,255,255,.75);
  background: rgba(0,0,0,.55);
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.site-card:hover .site-frame::before{
  opacity: 1;
}

/* ===== WHY CHOOSE US — PREMIUM + MOTION ===== */
.why-radial{
  padding: 120px 0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(0,198,255,.12), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.28), rgba(0,0,0,.12)),
    var(--bg);
}

/* header */
.why-head{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 70px;
}

.why-head h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 12px;
}

.why-head p{
  color: var(--text-soft);
  font-size: 16px;
}

/* layout */
.why-layout{
  display:grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 30px;
  align-items:center;
}

/* columns */
.why-col{
  display:flex;
  flex-direction: column;
  gap: 22px;
}

/* cards */
.why-item{
  display:flex;
  gap: 14px;
  align-items:flex-start;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 18px 45px rgba(0,0,0,.28);
  transition: transform .25s ease, box-shadow .25s ease;
}

.why-item:hover{
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,.38);
}

.why-item--left{ justify-content:flex-end; text-align:right; }
.why-item--left .why-txt{ margin-left:auto; }

.why-item--right{ justify-content:flex-start; text-align:left; }

/* icon */
.why-ic{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-size: 20px;

  background: rgba(0,198,255,.18);
  border: 1px solid rgba(0,198,255,.35);
  box-shadow: 0 0 22px rgba(0,198,255,.18);
  flex: 0 0 auto;
}

/* text */
.why-txt h3{
  font-size: 18px;
  margin-bottom: 6px;
  color: var(--text);
}

.why-txt p{
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ===== CENTER VISUAL (ANIMATED) ===== */
.why-center{
  position: relative;
  display:grid;
  place-items:center;
  min-height: 420px;
  animation: whyFloat 9s ease-in-out infinite;
}

/* floating motion */
@keyframes whyFloat{
  0%{ transform: translateY(0); }
  50%{ transform: translateY(-16px); }
  100%{ transform: translateY(0); }
}

/* rotating glow */
.why-center__bg{
  position:absolute;
  inset: 10%;
  border-radius: 999px;
  background:
    radial-gradient(closest-side, rgba(0,198,255,.22), rgba(0,198,255,0) 70%);
  filter: blur(10px);
  opacity: .9;
  animation: glowRotate 18s linear infinite;
}

@keyframes glowRotate{
  from{ transform: rotate(0deg); }
  to{ transform: rotate(360deg); }
}

/* center ring */
.why-center__ring{
  width: 320px;
  height: 320px;
  border-radius: 999px;
  display:grid;
  place-items:center;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.18);
  outline: 1px solid rgba(0,198,255,.22);
  outline-offset: -12px;
  box-shadow: 0 30px 90px rgba(0,0,0,.45);
  overflow:hidden;
}

/* image breathing */
.why-center__ring img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: imagePulse 6s ease-in-out infinite;
}

@keyframes imagePulse{
  0%{ transform: scale(1.02); }
  50%{ transform: scale(1.06); }
  100%{ transform: scale(1.02); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px){
  .why-layout{
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-item--left,
  .why-item--right{
    text-align:left;
    justify-content:flex-start;
  }

  .why-item--left .why-txt{
    margin-left:0;
  }
}


/* ===== PROCESS (OPTION B: SPLIT LAYOUT) ===== */
.process-split{
  padding: 120px 0;
  background:
    radial-gradient(900px 420px at 50% 0%, rgba(0,198,255,.10), transparent 60%),
    linear-gradient(180deg, rgba(0,0,0,.26), rgba(0,0,0,.12)),
    var(--bg);
}

.process-wrap{
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.process-left h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 14px;
}

.process-left p{
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 22px;
}

.process-badges{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pill{
  display:inline-flex;
  align-items:center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
}

.process-note{
  display:block;
  margin-top: 14px;
  color: rgba(216,234,255,.75);
}

/* Steps */
.process-right{
  display:flex;
  flex-direction: column;
  gap: 16px;
}

.step-card{
  display:flex;
  gap: 16px;
  align-items:flex-start;
  padding: 20px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.step-card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,255,255,.28);
  box-shadow: 0 28px 70px rgba(0,255,255,.10);
}

.step-num{
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  font-weight: 700;
  color: var(--text);
  background: rgba(0,255,255,.14);
  border: 1px solid rgba(0,255,255,.30);
  box-shadow: 0 0 22px rgba(0,255,255,.12);
  flex: 0 0 auto;
}

.step-body h3{
  margin: 2px 0 6px;
  font-size: 18px;
  color: var(--text);
}

.step-body p{
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 980px){
  .process-wrap{
    grid-template-columns: 1fr;
  }
}

/* ===== CTA BAND ===== */
.cta-band{
  padding: 110px 0;
  background: #f5f6fa; /* light, so it contrasts your dark sections */
}

.cta-card{
  position: relative;
  border-radius: 28px;
  padding: 54px 46px;
  overflow: hidden;

  background:
    radial-gradient(900px 420px at 20% 20%, rgba(0,198,255,.18), transparent 60%),
    linear-gradient(135deg, #0b1226, #141f3f);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 28px 90px rgba(0,0,0,.22);
}

.cta-glow{
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(650px 340px at 18% 58%, rgba(0,255,255,.22), transparent 60%),
    radial-gradient(720px 400px at 82% 55%, rgba(0,198,255,.18), transparent 62%);
  filter: blur(24px);
  opacity: .9;
  animation: ctaFloat 10s ease-in-out infinite alternate;
  pointer-events:none;
}

@keyframes ctaFloat{
  from{ transform: translateY(0) rotate(-2deg); }
  to{ transform: translateY(-14px) rotate(2deg); }
}

.cta-content{
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  color: var(--text);
}

.cta-content h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.6vw, 52px);
  line-height: 1.1;
  margin-bottom: 14px;
}

.cta-content p{
  color: var(--text-soft);
  max-width: 680px;
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.7;
}

.cta-actions{
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.cta-mini{
  display:flex;
  justify-content:center;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-pill{
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(216,234,255,.88);
  font-size: 13px;
}

/* ===== FOOTER ===== */
/* ===== SHARP FOOTER ===== */
.site-footer{
  background: linear-gradient(180deg, #0b1226, #060b1a);
  color: var(--text);
  border-top: 1px solid rgba(0,255,255,.25);
}

/* MAIN */
.footer-main{
  display:grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 48px;
  padding: 90px 0 70px;
}

/* BRAND */
.footer-brand img{
  height: 56px;
  margin-bottom: 14px;
}

.footer-tagline{
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
  letter-spacing: .3px;
}

.footer-desc{
  max-width: 420px;
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--text-soft);
}

/* SOCIALS */
.footer-socials{
  display:flex;
  gap: 14px;
  margin-top: 18px;
}

.footer-socials a{
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-size: 18px;
  transition: .25s ease;
}

.footer-socials a:hover{
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 0 20px rgba(0,255,255,.35);
  color: var(--primary);
}

/* LINKS */
.footer-links{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
}

.footer-col h4{
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 600;
}

.footer-col a,
.footer-col span{
  display:block;
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 9px;
  text-decoration:none;
}

.footer-col a:hover{
  color: var(--primary);
}

/* BOTTOM */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 0;
}

.footer-bottom-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 10px;
  font-size: 13px;
  color: rgba(216,234,255,.7);
}

.footer-mini{
  opacity:.85;
}

/* MOBILE */
@media(max-width:900px){
  .footer-main{
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-links{
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width:560px){
  .footer-links{
    grid-template-columns: 1fr;
  }
  .footer-bottom-inner{
    flex-direction: column;
    align-items:flex-start;
  }
}

/* ===== FAQ (WHITE SECTION) ===== */
.faq-white{
  padding: 120px 0;
  background: #ffffff;
  color: #0f172a;
}

.faq-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.faq-head h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 56px);
  margin-bottom: 12px;
}

.faq-head p{
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* List */
.faq-list{
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.06);
  background: #fff;
}

.faq-q{
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: inherit;
}

.faq-q span:first-child{
  font-weight: 600;
  font-size: 16px;
  color: #0f172a;
}

.faq-ico{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,255,255,.35);
  background: rgba(0,255,255,.10);
  color: #0f172a;
  font-weight: 800;
  flex: 0 0 auto;
  transition: transform .2s ease;
}

/* Answer (collapsed by default) */
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
  border-top: 1px solid rgba(15,23,42,.08);
}

.faq-a p{
  padding: 16px 18px 18px;
  margin: 0;
  color: #475569;
  line-height: 1.75;
  font-size: 15px;
}

/* Active state */
.faq-item.is-open .faq-a{
  max-height: 420px; /* enough for most answers */
}

.faq-item.is-open .faq-ico{
  transform: rotate(45deg);
}

/* Mobile */
@media (max-width: 640px){
  .faq-q{ padding: 16px 14px; }
  .faq-a p{ padding: 14px 14px 16px; }
}


/* ===== CTA (REFINED & LESS REGULAR) ===== */
.cta-refined{
  padding: 110px 0;
  background: #ffffff; /* calm break before footer */
}

.cta-box{
  position: relative;
  border-radius: 26px;
  padding: 60px 56px;
  max-width: 980px;
  margin: 0 auto;

  background:
    radial-gradient(800px 360px at 20% 10%, rgba(0,198,255,.14), transparent 60%),
    linear-gradient(135deg, #0b1226, #141f3f);

  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  overflow: hidden;
}

/* subtle glow (very soft) */
.cta-box::before{
  content:"";
  position:absolute;
  inset:-30%;
  background:
    radial-gradient(650px 340px at 30% 40%, rgba(0,255,255,.18), transparent 60%);
  filter: blur(30px);
  opacity: .6;
  pointer-events:none;
}

.cta-text{
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text);
}

.cta-text h2{
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-text p{
  max-width: 640px;
  margin: 0 auto 28px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-soft);
}

.cta-buttons{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* mobile */
@media (max-width: 768px){
  .cta-box{
    padding: 42px 22px;
  }
}
/* ===== FINAL CTA (PRE-FOOTER) ===== */
.final-cta {
  padding: 90px 0 70px;
  background: linear-gradient(
    180deg,
    #f8fafc,
    #eef6fb
  );
}

.final-cta-box {
  max-width: 820px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  background: linear-gradient(
    135deg,
    #0f172a,
    #020617
  );
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(2, 6, 23, 0.35);
}

.final-cta-box h2 {
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 14px;
  color: #ffffff;
}

.final-cta-box p {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 16px;
  line-height: 1.6;
  color: #cbd5f5;
}

.final-cta-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

/* mobile */
@media (max-width: 640px) {
  .final-cta-box {
    padding: 44px 24px;
  }
}



.about-hero{
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background: linear-gradient(
    180deg,
    #f8fafc 0%,
    #eef2f7 100%
  );
}

.about-hero__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-hero__bg::before,
.about-hero__bg::after{
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 14s ease-in-out infinite;
}

.about-hero__bg::before{
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

.about-hero__bg::after{
  background: #22d3ee;
  bottom: -140px;
  right: -140px;
  animation-delay: 4s;
}

.about-hero__content{
  position: relative;
  z-index: 1;
  text-align: center;
  animation: fadeUp .8s ease forwards;
}

.about-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(14,165,233,.12);
  color: #0369a1;
  font-size: 13px;
  font-weight: 600;
}

.about-hero h1{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(40px, 5vw, 56px);
  margin-bottom: 16px;
  color: #0f172a;
}

.about-hero p{
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
}

/* Animations */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(30px);
  }
}

/* Mobile polish */
@media (max-width: 768px){
  .about-hero{
    padding: 100px 0 70px;
  }
}


.about-intro{
  padding: 100px 0;
  background: #ffffff;
}

.about-intro__grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.about-intro__text h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 18px;
  color: #0f172a;
}

.about-intro__text p{
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 14px;
}

/* Stats cards */
.about-intro__stats{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.stat-card{
  padding: 22px 24px;
  border-radius: 16px;
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
}

.stat-card span{
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: #0ea5e9;
  margin-bottom: 4px;
}

.stat-card p{
  font-size: 14px;
  color: #475569;
}

/* Mobile */
@media (max-width: 900px){
  .about-intro__grid{
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.about-page .why-radial{
  background: #f8fafc;
  color: #0f172a;
}

.about-page .why-head h2{
  color: #0f172a;
}

.about-page .why-head p{
  color: #475569;
}

.about-page .why-item{
  background: #ffffff;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 10px 30px rgba(15,23,42,.06);
}

.about-page .why-ic{
  background: rgba(56,189,248,.15);
  color: #0284c7;
}

.about-page .why-txt h3{
  color: #0f172a;
}

.about-page .why-txt p{
  color: #475569;
}

/* Center ring softer */
.about-page .why-center__bg{
  background: radial-gradient(circle at center,
    rgba(56,189,248,.15),
    transparent 65%);
}


.about-page .process-split{
  background: #ffffff;
  color: #0f172a;
}

.about-page .process-left h2{
  color: #0f172a;
}

.about-page .process-left p{
  color: #475569;
}

.about-page .process-note{
  color: #64748b;
}

.about-page .pill{
  background: rgba(56,189,248,.12);
  color: #0284c7;
}

.about-page .step-card{
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

.about-page .step-num{
  color: #0284c7;
}

.about-page .step-body h3{
  color: #0f172a;
}

.about-page .step-body p{
  color: #475569;
}

.about-cta{
  padding: 90px 0;
  background: #f8fafc;
}

.about-cta__box{
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border-radius: 22px;
  padding: 48px 28px;
  box-shadow: 0 18px 50px rgba(15,23,42,.08);
}

.about-cta h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(28px, 4vw, 38px);
  margin-bottom: 14px;
  color: #0f172a;
}

.about-cta p{
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 15.5px;
  color: #475569;
}


/* ================= SERVICES HERO (UPGRADED) ================= */
/* ================= SERVICES HERO ================= */

.services-hero{
  position: relative;
  padding: 120px 0 90px;
  overflow: hidden;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.services-hero__bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.services-hero__bg::before,
.services-hero__bg::after{
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float 14s ease-in-out infinite;
}

.services-hero__bg::before{
  background: #38bdf8;
  top: -120px;
  left: -120px;
}

.services-hero__bg::after{
  background: #22d3ee;
  bottom: -140px;
  right: -140px;
  animation-delay: 4s;
}

.services-hero__content{
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  animation: fadeUp .8s ease forwards;
}

.services-badge{
  display: inline-block;
  margin-bottom: 18px;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(56,189,248,.15);
  color: #0369a1;
}

.services-hero h1{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(38px, 5vw, 54px);
  margin-bottom: 16px;
  color: #0f172a;
}

.services-hero p{
  max-width: 640px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.7;
  color: #475569;
}

/* Animations */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float{
  0%,100%{
    transform: translateY(0);
  }
  50%{
    transform: translateY(30px);
  }
}

/* Mobile */
@media (max-width: 768px){
  .services-hero{
    padding: 100px 0 70px;
  }
}

/* ================= CORE SERVICES ================= */

.services-core{
  padding: 100px 0;
  background: #ffffff;
}

.services-core__head{
  max-width: 620px;
  margin: 0 auto 60px;
  text-align: center;
}

.services-core__head h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 12px;
  color: #0f172a;
}

.services-core__head p{
  font-size: 15.5px;
  color: #475569;
}

.services-core__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card{
  background: #f8fafc;
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 20px;
  padding: 34px 30px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 45px rgba(15,23,42,.08);
}

.service-card h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p{
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Mobile */
@media (max-width: 900px){
  .services-core__grid{
    grid-template-columns: 1fr;
  }
}

.services-core__grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

@media (max-width: 1100px){
  .services-core__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 700px){
  .services-core__grid{
    grid-template-columns: 1fr;
  }
}
/* ================================
   SERVICES SECTION (LIGHT CLEAN)
================================ */

.services-section{
  padding: 110px 0;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.services-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.services-head h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  color: #0f172a;
  margin-bottom: 14px;
}

.services-head p{
  font-size: 16.5px;
  line-height: 1.7;
  color: #475569;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card{
  background: #ffffff;
  border-radius: 18px;
  padding: 34px 30px;
  box-shadow: 0 20px 45px rgba(15,23,42,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(15,23,42,.12);
}

.service-icon{
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 22px;
  margin-bottom: 18px;
  background: rgba(56,189,248,.15);
  color: #0284c7;
}

.service-card h3{
  font-size: 20px;
  margin-bottom: 10px;
  color: #0f172a;
}

.service-card p{
  font-size: 15.5px;
  line-height: 1.7;
  color: #475569;
}

/* Mobile */
@media (max-width: 900px){
  .services-grid{
    grid-template-columns: 1fr;
  }
}

/* ================================
   PROCESS SECTION
================================ */

.process-section{
  padding: 110px 0;
  background: #ffffff;
}

.process-head{
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.process-head h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  color: #0f172a;
  margin-bottom: 12px;
}

.process-head p{
  font-size: 16.5px;
  line-height: 1.7;
  color: #475569;
}

.process-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-card{
  background: #f8fafc;
  border-radius: 16px;
  padding: 30px 26px;
  border: 1px solid rgba(15,23,42,.06);
}

.process-card h3{
  font-size: 18px;
  color: #0f172a;
  margin-bottom: 8px;
}

.process-card p{
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.step{
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  color: #0284c7;
  background: rgba(56,189,248,.15);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 900px){
  .process-grid{
    grid-template-columns: 1fr;
  }
}


/* ================================
   FAQ SECTION (LIGHT, CLEAN)
================================ */

.faq-white{
  padding: 110px 0;
  background: #ffffff;
}

.faq-head{
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}

.faq-head h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(32px, 4vw, 46px);
  color: #0f172a;
  margin-bottom: 12px;
}

.faq-head p{
  font-size: 16px;
  color: #475569;
}

/* FAQ list */
.faq-list{
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Individual item */
.faq-item{
  background: #f8fafc;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.06);
  overflow: hidden;
}

/* Question button */
.faq-q{
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  text-align: left;
}

/* Icon */
.faq-ico{
  font-size: 18px;
  color: #0284c7;
  transition: transform .25s ease;
}

/* Answer */
.faq-a{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
  padding: 0 22px;
}

.faq-a p{
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

/* Active state (when JS toggles class or aria) */
.faq-item.active .faq-a{
  max-height: 400px;
}

.faq-item.active .faq-ico{
  transform: rotate(45deg);
}

/* Mobile spacing */
@media (max-width: 768px){
  .faq-white{
    padding: 90px 0;
  }
}

/* ================================
   CONTACT HERO (STRONG VERSION)
================================ */

.contact-hero{
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.contact-hero__grid{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}

.contact-badge{
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 999px;
  background: rgba(56,189,248,.15);
  color: #0369a1;
}

.contact-hero__text h1{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.15;
  margin-bottom: 16px;
  color: #0f172a;
}

.contact-hero__text p{
  font-size: 16.5px;
  line-height: 1.7;
  color: #475569;
  max-width: 520px;
}

.contact-trust{
  margin-top: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #334155;
}

/* Visual cards */
.contact-hero__visual{
  display: grid;
  gap: 16px;
}

.contact-card{
  background: #ffffff;
  padding: 20px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(15,23,42,.08);
}

.contact-card strong{
  display: block;
  font-size: 14px;
  color: #0f172a;
  margin-bottom: 6px;
}

.contact-card span{
  font-size: 14px;
  color: #475569;
}

/* Mobile */
@media (max-width: 900px){
  .contact-hero__grid{
    grid-template-columns: 1fr;
    text-align: center;
  }

  .contact-hero__text p{
    margin: 0 auto;
  }

  .contact-trust{
    justify-content: center;
  }

  .contact-hero__visual{
    max-width: 360px;
    margin: 0 auto;
  }
}


.contact-form-section{
  padding: 100px 0;
  background: #f8fafc;
}

.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2{
  font-family: ui-serif, Georgia, serif;
  font-size: 36px;
  margin-bottom: 14px;
  color: #0f172a;
}

.contact-info p{
  color: #475569;
  margin-bottom: 26px;
  max-width: 420px;
}

.contact-details{
  list-style: none;
  padding: 0;
}

.contact-details li{
  margin-bottom: 10px;
  color: #334155;
}

/* FORM */
.contact-form{
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15,23,42,.08);
}

.form-group{
  margin-bottom: 18px;
}

.form-group label{
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #0f172a;
}

.form-group input,
.form-group textarea,
.form-group select{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color: #38bdf8;
}

/* MOBILE */
@media(max-width: 900px){
  .contact-grid{
    grid-template-columns: 1fr;
  }

  .contact-form{
    padding: 30px 22px;
  }
}


/* ================================
   WHAT HAPPENS NEXT
================================ */

.contact-next{
  padding: 100px 0;
  background: #ffffff;
}

.contact-next__head{
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.contact-next__head h2{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(30px, 4vw, 44px);
  color: #0f172a;
  margin-bottom: 10px;
}

.contact-next__head p{
  font-size: 16px;
  color: #475569;
}

.contact-next__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.next-card{
  background: #f8fafc;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.06);
}

.next-card span{
  display: inline-block;
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 13px;
  color: #0284c7;
  background: rgba(56,189,248,.15);
  padding: 6px 12px;
  border-radius: 999px;
}

.next-card h3{
  font-size: 17px;
  margin-bottom: 6px;
  color: #0f172a;
}

.next-card p{
  font-size: 14.5px;
  line-height: 1.6;
  color: #475569;
}

/* Mobile */
@media (max-width: 900px){
  .contact-next__grid{
    grid-template-columns: 1fr;
  }
}


.whatsapp-float{
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,.25);
  z-index: 9999;
}


.service-icon{
  width: 54px;
  height: 54px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  border-radius: 14px;
}

/* Icon colors per card type */
.service-card--dark .service-icon{
  background: rgba(0,255,255,.15);
  color: #7dd3fc;
}

.service-card--light .service-icon{
  background: rgba(56,189,248,.18);
  color: #0369a1;
}

/* Hover polish */
.service-card:hover .service-icon{
  transform: scale(1.05);
  transition: transform .2s ease;
}


.brand-marquee__track span{
  position: relative;
  padding: 0 30px;
  font-weight: 500;
  color: #0f172a;
  white-space: nowrap;
}

.brand-marquee__track span::before{
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
}


/* ===============================
   CONTACT PAGE – FINAL STYLES
================================ */

/* HERO */
/* ================= CONTACT HERO ================= */

.contact-hero{
  position: relative;
  padding: 90px 0 70px;
  background:
    radial-gradient(600px 200px at 15% 0%, rgba(56,189,248,.25), transparent 60%),
    radial-gradient(500px 180px at 85% 10%, rgba(14,165,233,.18), transparent 60%),
    linear-gradient(180deg, #eef6fb, #f8fafc);
  text-align: center;
  overflow: hidden;
}

.contact-hero h1{
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(36px, 4.5vw, 52px);
  color: #0f172a;
  margin-bottom: 14px;
}

.contact-hero p{
  font-size: 16.5px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
}

.contact-badge{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(56,189,248,.18);
  color: #0369a1;
  box-shadow: 0 10px 25px rgba(56,189,248,.25);
}
/* FORM SECTION */
.contact-form-section{
  padding: 70px 0 100px;
  background: #f8fafc;
}

/* FORM CARD */
.contact-form{
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(15,23,42,.08);
  border: 1px solid rgba(15,23,42,.06);
}

/* FORM GROUP */
.form-group{
  margin-bottom: 20px;
}

.form-group label{
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #020617;
}

/* INPUTS */
.form-group input,
.form-group select,
.form-group textarea{
  width: 100%;
  padding: 13px 15px;
  border-radius: 12px;
  border: 1px solid #cbd5e1;
  font-family: inherit;
  font-size: 14.5px;
  background: #ffffff;
  color: #020617;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.form-group textarea{
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 4px rgba(56,189,248,.18);
}

/* SUBMIT BUTTON */
.contact-form button{
  margin-top: 10px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  background: linear-gradient(180deg, #38bdf8, #0ea5e9);
  color: #001b2e;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease;
}

.contact-form button:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 30px rgba(56,189,248,.35);
}

/* MOBILE */
@media (max-width: 768px){
  .contact-hero{
    padding: 100px 0 45px;
    text-align: center;
  }

  .contact-hero p{
    margin-inline: auto;
  }

  .contact-form{
    padding: 26px;
  }
}

/* CONTACT HERO – FINAL */
.contact-hero {
  position: relative;
  padding: 120px 0 60px;
  background:
    radial-gradient(600px 220px at 10% 0%, rgba(56,189,248,.25), transparent 60%),
    radial-gradient(500px 200px at 90% 10%, rgba(14,165,233,.2), transparent 60%),
    linear-gradient(180deg, #eef6fb, #f8fafc);
  text-align: center;
}

.contact-hero h1 {
  font-family: ui-serif, Georgia, serif;
  font-size: clamp(34px, 4.5vw, 48px);
  color: #0f172a;
  margin-bottom: 12px;
}

.contact-hero p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16.5px;
  color: #475569;
  line-height: 1.7;
}
