/* ============================================================
   FELE PROFILES — Landing Page
   ============================================================ */

:root {
  /* Theme derived from the FELE Profiles logo mark: graphite arrow, charcoal arrow, red "F" */
  --primary: #232221;
  --secondary: #707070;
  --accent: #E21E24;
  --bg: #FFFFFF;
  --bg-light: #F8F9FB;
  --text: #1A1A1A;
  --muted: #6B7280;
  --border: #E5E7EB;

  --grad: linear-gradient(120deg, #707070 0%, #2B2A28 55%, #E21E24 100%);
  --grad-soft: linear-gradient(120deg, rgba(43,42,40,.10), rgba(226,30,36,.10));

  --shadow-sm: 0 4px 16px rgba(20, 20, 20, .07);
  --shadow-md: 0 18px 44px rgba(20, 20, 20, .13);
  --shadow-lg: 0 40px 90px rgba(20, 20, 20, .22);

  --r-sm: 16px;
  --r: 22px;
  --r-lg: 28px;

  --ff-head: 'Poppins', system-ui, sans-serif;
  --ff-body: 'Poppins', system-ui, sans-serif;

  --container: 1200px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }
.icon { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

.container { width: min(100% - 44px, var(--container)); margin-inline: auto; }
.section { padding: clamp(64px, 8vw, 110px) 0; position: relative; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 { font-family: var(--ff-head); font-weight: 800; line-height: 1.1; letter-spacing: -.02em; color: var(--text); }
.eyebrow {
  display: inline-block; font-family: var(--ff-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--secondary); margin-bottom: 14px;
}
.section__title { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.section__head { max-width: 640px; margin-bottom: clamp(36px, 5vw, 56px); }
.section__head--center { max-width: 640px; margin-inline: auto; text-align: center; }
.section__lead { color: var(--muted); font-size: 1.05rem; }

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

/* ---------- Buttons ---------- */
.btn {
  --pad: 15px 28px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 100px; font-family: var(--ff-head);
  font-weight: 700; font-size: .93rem; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s;
  will-change: transform;
}
.btn i { font-style: normal; transition: transform .35s var(--ease); }
.btn:hover i { transform: translateX(4px); }
.btn--sm { --pad: 11px 22px; font-size: .85rem; }
.btn--lg { --pad: 17px 34px; font-size: .98rem; }
.btn--primary { background: var(--accent); color: #fff; box-shadow: 0 10px 26px rgba(226,30,36,.28); }
.btn--primary:hover { background: #C11A1F; transform: translateY(-3px); box-shadow: 0 16px 34px rgba(226,30,36,.36); }
.btn--outline-light { background: rgba(255,255,255,.1); color: #fff; border: 2px solid rgba(255,255,255,.7); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.btn--outline-light:hover { background: #fff; color: var(--accent); border-color: #fff; transform: translateY(-3px); }
.btn--outline { background: #fff; color: var(--accent); border: 2px solid var(--accent); }
.btn--outline:hover { background: var(--accent); color: #fff; transform: translateY(-3px); }
.btn .ripple {
  position: absolute; border-radius: 50%; transform: scale(0);
  background: rgba(255,255,255,.5); animation: ripple .6s var(--ease); pointer-events: none;
}
@keyframes ripple { to { transform: scale(3.2); opacity: 0; } }

/* ---------- Scroll progress ---------- */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0; background: var(--grad); z-index: 1000; }

/* ---------- Preloader ---------- */
.preloader { position: fixed; inset: 0; background: #14181d; z-index: 10000; display: grid; place-items: center; overflow: hidden; transition: opacity .7s var(--ease), visibility .7s; }
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); animation: preZoom 3s ease-out forwards; }
@keyframes preZoom { to { transform: scale(1); } }
.preloader__overlay { position: absolute; inset: 0; background: radial-gradient(circle at 50% 42%, rgba(20,24,29,.25), rgba(20,24,29,.75)); }
.preloader__inner { position: absolute; z-index: 2; left: 50%; bottom: 12%; transform: translateX(-50%); text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.preloader__bar { width: min(60vw, 240px); height: 3px; background: rgba(255,255,255,.18); border-radius: 4px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 0; background: var(--accent); box-shadow: 0 0 12px var(--accent); border-radius: 4px; transition: width .2s ease; }
.preloader__pct { font-family: var(--ff-head); font-weight: 700; font-size: .85rem; letter-spacing: .16em; color: rgba(255,255,255,.85); }

/* ============================================================
   NAV
   ============================================================ */
.nav { position: fixed; top: 0; left: 0; width: 100%; z-index: 900; padding: 18px 0; background: #fff; border-bottom: 1px solid var(--border); box-shadow: 0 1px 0 rgba(20,20,20,.02); transition: box-shadow .35s, padding .3s; }
.nav.is-scrolled { box-shadow: var(--shadow-sm); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo { display: flex; align-items: center; flex: none; transition: transform .35s var(--ease); }
.nav__logo:hover { transform: scale(1.035); }
.nav__logo-badge { height: 66px; display: flex; align-items: center; justify-content: flex-start; overflow: hidden; transition: height .3s; }
.nav.is-scrolled .nav__logo-badge { height: 54px; }
.nav__logo-badge img { height: 66px; width: auto; max-width: none; display: block; object-fit: contain; transition: height .3s; }
.nav.is-scrolled .nav__logo-badge img { height: 54px; }
.nav__links { display: flex; gap: 2px; background: var(--bg-light); padding: 6px; border-radius: 100px; }
.nav__links a { font-family: var(--ff-head); font-weight: 600; font-size: .9rem; color: var(--text); position: relative; padding: 9px 18px; border-radius: 100px; transition: color .3s, background .3s; }
.nav__links a:hover { color: var(--accent); }
.nav__links a.is-active { color: #fff; background: var(--accent); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__burger { display: none; flex-direction: column; gap: 6px; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: 50%; transition: background .3s; }
.nav__burger:hover { background: var(--bg-light); }
.nav__burger span { width: 24px; height: 2px; background: var(--text); transition: .35s var(--ease); }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }
.nav__scrim { position: fixed; inset: 0; background: rgba(8,8,8,.45); backdrop-filter: blur(2px); z-index: 898; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.nav__scrim.is-open { opacity: 1; pointer-events: auto; }
.nav__mobile { position: fixed; inset: 0 0 0 auto; width: min(80vw, 340px); height: 100vh; background: #fff; box-shadow: var(--shadow-lg); transform: translateX(100%); transition: transform .5s var(--ease); z-index: 899; display: flex; flex-direction: column; gap: 6px; padding: 100px 30px 40px; overflow-y: auto; }
.nav__mobile.is-open { transform: translateX(0); }
.nav__mobile a { font-family: var(--ff-head); font-weight: 700; font-size: 1.2rem; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color .3s, padding-left .3s; }
.nav__mobile a:hover { color: var(--accent); padding-left: 6px; }
.nav__mobile .btn { margin-top: 20px; border-bottom: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: clamp(560px, 62vw, 760px); display: flex; align-items: center; overflow: hidden; padding: 110px 0 70px; }
.hero__bg { position: absolute; inset: -6%; z-index: 0; }
.hero__img {
  position: absolute; inset: 0;
  background: url('../public/banner_img.webp') center/cover;
  background-color: #1a2230;
  transform: scale(1.04); animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1.13); } }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, rgba(255,255,255,.95) 26%, rgba(255,255,255,.6) 48%, rgba(255,255,255,.15) 68%, transparent 84%),
    linear-gradient(180deg, rgba(255,255,255,.35) 0%, transparent 34%, rgba(255,255,255,.25) 100%);
}
/* soft animated red glow accent behind the headline */
.hero__glow { position: absolute; z-index: 1; top: 26%; left: 4%; width: 340px; height: 340px; border-radius: 50%; background: radial-gradient(circle, rgba(226,30,36,.16), transparent 68%); filter: blur(10px); animation: heroGlow 6s ease-in-out infinite alternate; pointer-events: none; }
@keyframes heroGlow { 0% { transform: translate(0,0) scale(1); opacity: .7; } 100% { transform: translate(30px,-16px) scale(1.15); opacity: 1; } }
.hero__content { position: relative; z-index: 2; max-width: 640px; }
.hero__eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--ff-head); font-weight: 700; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; opacity: 0; animation: fadeUp .7s var(--ease) .2s forwards; }
.hero__eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 2px; }
.hero__title { font-size: clamp(1.4rem, 6.2vw, 3.1rem); line-height: 1.2; margin-bottom: 20px; color: var(--text); }
.hero__title .line { display: block; overflow: hidden; }
.hero__accent-word { color: var(--accent); }
.hero__sub { font-size: clamp(1rem, 1.2vw, 1.1rem); line-height: 1.65; max-width: 460px; color: var(--muted); margin-bottom: 32px; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust { position: relative; z-index: 6; margin-top: -56px; padding-bottom: 0; }
.trust__card { background: #fff; border-radius: var(--r); box-shadow: var(--shadow-lg); display: grid; grid-template-columns: repeat(4,1fr); padding: 26px clamp(18px,3vw,40px); }
.stat { position: relative; display: flex; align-items: center; justify-content: center; gap: 14px; }
.stat:not(:last-child)::after { content: ''; position: absolute; right: 0; top: 8%; height: 84%; width: 1px; background: var(--border); }
.stat__icon { flex: none; transition: transform .4s var(--ease); }
.stat:hover .stat__icon { transform: translateY(-3px) scale(1.06); }
.stat__icon svg { width: 40px; height: 40px; fill: none; stroke: var(--accent); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.stat__text { text-align: left; }
.stat__num { font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.5rem,2.4vw,2rem); color: var(--text); letter-spacing: -.02em; line-height: 1; }
.stat__num .suffix { color: var(--accent); }
.stat__label { color: var(--muted); font-weight: 600; font-family: var(--ff-head); margin-top: 4px; font-size: .82rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about { position: relative; min-height: clamp(460px, 46vw, 620px); display: flex; align-items: center; overflow: hidden; padding: clamp(140px, 16vw, 190px) 0 60px; }
.about__bg {
  position: absolute; inset: -4%;
  background: url('../public/who_we_are.webp') center/cover;
  background-color: #e8e8e8;
  transform: scale(1.03); animation: heroZoom 22s ease-in-out infinite alternate;
}
.about__card { position: relative; z-index: 2; max-width: 560px; padding: clamp(30px, 4vw, 44px); }
.about__card--right { margin-left: auto; }
.glass { background: rgba(255,255,255,.9); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.6); box-shadow: var(--shadow-lg); border-radius: var(--r-lg); }
.about__card p { color: var(--muted); margin: 4px 0 26px; font-size: 1.05rem; }

/* ============================================================
   OFFER (What We Offer)
   ============================================================ */
.offer { overflow: hidden; }
.offer__list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.offer__card {
  display: flex; flex-direction: column; border-radius: var(--r-lg); background: #fff;
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
}
.offer__card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.offer__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--bg-light); }
.offer__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.offer__card:hover .offer__media img { transform: scale(1.08); }
.offer__media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(8,8,8,.12)); }
.offer__text { padding: 22px 24px 26px; }
.offer__text h3 { font-size: 1.15rem; margin-bottom: 8px; }
.offer__text p { color: var(--muted); font-size: .95rem; line-height: 1.55; }

/* ============================================================
   WHY US + SEE OUR WORK
   ============================================================ */
.why-work { background: var(--bg-light); }
.why-work__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px,5vw,60px); margin-bottom: clamp(40px,6vw,64px); }
.why-work__col p { color: var(--muted); font-size: 1.05rem; margin-bottom: 22px; }
.why-work__list { display: grid; gap: 18px; }
.why-work__list li { display: flex; align-items: flex-start; gap: 14px; font-family: var(--ff-head); font-weight: 600; color: var(--text); }
.why-icon { width: 34px; height: 34px; border-radius: 50%; background: var(--grad-soft); border: 1px solid rgba(226,30,36,.18); display: grid; place-items: center; flex: none; }
.why-icon svg { width: 17px; height: 17px; fill: none; stroke: var(--accent); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.why-work__cta { display: flex; align-items: center; gap: 12px; }
.social-btn { width: 46px; height: 46px; border-radius: 12px; background: var(--accent); display: grid; place-items: center; flex: none; transition: transform .35s var(--ease), background .3s; }
.social-btn svg { width: 20px; height: 20px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.social-btn:hover { transform: translateY(-3px); background: var(--primary); }

.check { width: 24px; height: 24px; border-radius: 50%; background: var(--grad-soft); position: relative; flex: none; margin-top: 1px; }
.check::after { content: ''; position: absolute; left: 8px; top: 6px; width: 6px; height: 10px; border: solid var(--accent); border-width: 0 2px 2px 0; transform: rotate(45deg); }

.work__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.work__item { position: relative; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; box-shadow: var(--shadow-sm); background: var(--bg-light) var(--img) center/cover; transition: box-shadow .4s, transform .4s var(--ease); }
.work__item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,8,8,.35), transparent 50%); opacity: 0; transition: opacity .4s; }
.work__item:hover::after { opacity: 1; }
.work__item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.work__item-tag { position: absolute; left: 10px; bottom: 10px; z-index: 2; color: #fff; font-family: var(--ff-head); font-weight: 700; font-size: .7rem; padding: 5px 11px; border-radius: 100px; background: rgba(20,20,20,.55); backdrop-filter: blur(6px); }
.work__item--photo { cursor: pointer; }
.work__item--photo::before {
  content: ''; position: absolute; z-index: 2; top: 50%; left: 50%; width: 34px; height: 34px;
  transform: translate(-50%,-50%) scale(.6); border-radius: 50%; background: rgba(255,255,255,.9);
  opacity: 0; transition: opacity .3s, transform .3s var(--ease);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23111827' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m21 21-3.5-3.5M11 8v6M8 11h6'/%3E%3C/svg%3E");
  background-size: 18px; background-position: center; background-repeat: no-repeat;
}
.work__item--photo:hover::before { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 2000; background: rgba(8,8,8,.92); display: none; align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: min(90vw, 1100px); max-height: 84vh; border-radius: var(--r-sm); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__close { position: absolute; top: 24px; right: 24px; width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 1.8rem; line-height: 1; display: grid; place-items: center; transition: background .3s, transform .3s; }
.lightbox__close:hover { background: var(--accent); transform: rotate(90deg); }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.1); color: #fff; font-size: 1.4rem; display: grid; place-items: center; transition: background .3s, transform .3s var(--ease); }
.lightbox__nav:hover { background: var(--accent); }
.lightbox__nav--prev { left: 24px; }
.lightbox__nav--prev:hover { transform: translateY(-50%) translateX(-4px); }
.lightbox__nav--next { right: 24px; }
.lightbox__nav--next:hover { transform: translateY(-50%) translateX(4px); }

/* ---------- Floating social dock ---------- */
.social-dock { position: fixed; right: 18px; bottom: 22px; z-index: 850; display: flex; flex-direction: column; gap: 12px; }
.social-dock__btn { position: relative; width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; box-shadow: 0 8px 22px rgba(20,20,20,.28); transition: transform .35s var(--ease), box-shadow .35s; opacity: 0; animation: dockIn .5s var(--ease) forwards; }
.social-dock__btn:nth-child(1) { animation-delay: 1.1s; }
.social-dock__btn:nth-child(2) { animation-delay: 1.2s; }
.social-dock__btn:nth-child(3) { animation-delay: 1.3s; }
@keyframes dockIn { from { opacity: 0; transform: translateY(16px) scale(.7); } to { opacity: 1; transform: translateY(0) scale(1); } }
.social-dock__btn svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.social-dock__btn:hover { transform: translateY(-4px) scale(1.08); box-shadow: 0 12px 28px rgba(20,20,20,.36); }
.social-dock__btn--wa { background: #25D366; }
.social-dock__btn--ig { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.social-dock__btn--fb { background: #1877F2; }
.social-dock__btn--wa::after { content: ''; position: absolute; width: 50px; height: 50px; border-radius: 50%; border: 2px solid #25D366; animation: ping 2.2s ease-out infinite; }
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 100% { transform: scale(1.8); opacity: 0; } }

/* ---------- Floating decorative service icons ---------- */
.float-icon { position: absolute; z-index: 1; color: var(--accent); opacity: .10; pointer-events: none; animation: floatY 7s ease-in-out infinite; }
.float-icon svg { width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; }
@keyframes floatY { 0%,100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(6deg); } }

/* ============================================================
   PROCESS
   ============================================================ */
.process__track-wrap { overflow-x: auto; scrollbar-width: none; padding-bottom: 10px; }
.process__track-wrap::-webkit-scrollbar { display: none; }
.process__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(200px, 1fr); gap: 24px; position: relative; padding-top: 10px; min-width: 880px; }
.process__line { position: absolute; top: 34px; left: 32px; right: 32px; height: 0; border-top: 2px dashed var(--border); z-index: 0; }
.process__line span { display: block; height: 2px; width: 0; background: var(--accent); transition: width .1s linear; margin-top: -2px; }
.pstep { position: relative; text-align: center; }
.pstep__num { width: 64px; height: 64px; border-radius: 50%; background: #fff; border: 2px solid var(--border); display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; font-size: 1.3rem; color: var(--secondary); margin: 0 auto 20px; position: relative; z-index: 2; transition: background .4s, border-color .4s, color .4s, transform .4s; }
.pstep.is-active .pstep__num { background: var(--grad); border-color: transparent; color: #fff; transform: scale(1.08); box-shadow: 0 0 0 6px rgba(227,30,37,.15); }
.pstep h4 { font-size: 1.05rem; margin-bottom: 8px; }
.pstep p { color: var(--muted); font-size: .9rem; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi__track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 30px; }
.tcard { padding: 34px 30px; border-radius: var(--r-lg); background: var(--bg-light); border: 1px solid var(--border); position: relative; }
.tcard__quote { font-family: var(--ff-head); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; opacity: .35; margin-bottom: 4px; }
.tcard__stars { color: #f5a623; letter-spacing: 3px; margin-bottom: 14px; font-size: .95rem; }
.tcard p { color: var(--text); font-size: 1rem; line-height: 1.6; margin-bottom: 22px; }
.tcard__who { display: flex; align-items: center; gap: 14px; }
.tcard__avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--grad); color: #fff; display: grid; place-items: center; font-family: var(--ff-head); font-weight: 800; font-size: 1.1rem; flex: none; }
.tcard__who strong { display: block; font-family: var(--ff-head); font-size: .95rem; }
.tcard__who em { color: var(--muted); font-style: normal; font-size: .85rem; }
.testi__dots { display: flex; justify-content: center; gap: 10px; }
.testi__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border); transition: background .3s, transform .3s; }
.testi__dot.is-active { background: var(--accent); transform: scale(1.3); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--bg-light); }
.contact__grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(28px,4vw,48px); align-items: start; }
.form { display: grid; gap: 24px; background: #fff; padding: clamp(30px, 4vw, 48px); border-radius: var(--r-lg); border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.field { position: relative; }
.field input, .field textarea { width: 100%; padding: 20px 18px 8px; border: 1px solid var(--border); border-radius: var(--r-sm); background: var(--bg); font-family: var(--ff-body); font-size: 1rem; color: var(--text); transition: border-color .3s, box-shadow .3s; resize: vertical; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(227,30,37,.10); }
.field label { position: absolute; left: 18px; top: 17px; color: var(--muted); font-size: .95rem; pointer-events: none; transition: .25s var(--ease); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label { top: 7px; font-size: .7rem; color: var(--accent); font-weight: 600; }
.form__note { font-size: .9rem; font-weight: 600; min-height: 20px; }
.form__note.ok { color: #16a34a; }
.form__note.err { color: #dc2626; }

.contact__side { display: grid; gap: 28px; }
.contact__info-card { background: #6E0F13; color: #fff; border-radius: var(--r-lg); padding: clamp(32px, 4vw, 40px); box-shadow: var(--shadow-md); }
.contact__info { display: grid; gap: 26px; margin-bottom: 30px; }
.contact__info li { display: flex; align-items: flex-start; gap: 16px; }
.ci-icon { width: 46px; height: 46px; flex: none; border-radius: 13px; background: rgba(255,255,255,.14); display: grid; place-items: center; }
.ci-icon svg { width: 21px; height: 21px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact__info strong { display: block; font-family: var(--ff-head); margin-bottom: 4px; }
.contact__info a { color: rgba(255,255,255,.8); font-size: .95rem; line-height: 1.5; }
.contact__info a:hover { color: #fff; }
.contact__social { padding-top: 22px; border-top: 1px solid rgba(255,255,255,.16); display: flex; flex-wrap: wrap; align-items: center; gap: 16px; font-size: .88rem; }
.contact__social span { color: rgba(255,255,255,.65); font-family: var(--ff-head); font-weight: 600; }
.contact__social a { display: inline-flex; align-items: center; gap: 6px; color: rgba(255,255,255,.9); font-weight: 600; }
.contact__social a svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 1.8; }
.contact__social a:hover { color: #fff; }
.map { border-radius: var(--r-lg); overflow: hidden; height: 260px; box-shadow: var(--shadow-sm); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) contrast(1.05); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #6E0F13; color: rgba(255,255,255,.8); padding-top: 4px; position: relative; }
.footer__top-border { height: 3px; width: 100%; background: linear-gradient(90deg, transparent, var(--accent), var(--secondary), var(--accent), transparent); background-size: 200% 100%; animation: borderSlide 6s linear infinite; }
@keyframes borderSlide { to { background-position: 200% 0; } }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding: clamp(48px,6vw,74px) 0 34px; }
.footer__logo-badge { display: inline-flex; background: #fff; border-radius: var(--r-sm); padding: 12px 20px; margin-bottom: 18px; box-shadow: var(--shadow-md); transition: transform .4s var(--ease); }
.footer__logo-badge:hover { transform: translateY(-4px); }
.footer__logo-badge img { height: 56px; width: auto; display: block; }
.footer__brand p { max-width: 320px; line-height: 1.7; }
.footer__col h5 { color: #fff; font-size: .95rem; margin-bottom: 18px; letter-spacing: .04em; text-transform: uppercase; position: relative; padding-bottom: 12px; }
.footer__col h5::after { content: ''; position: absolute; left: 0; bottom: 0; width: 28px; height: 2px; background: var(--accent); border-radius: 2px; }
.footer__col a { display: block; padding: 5px 0; transition: color .3s, padding-left .3s; }
.footer__col a:hover { color: #fff; padding-left: 6px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.12); display: grid; place-items: center; transition: .35s var(--ease); }
.footer__social svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.footer__social a:hover { background: #fff; transform: translateY(-3px); }
.footer__social a:hover svg { stroke: var(--accent); }
.footer__bottom { display: flex; justify-content: center; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.1); font-size: .85rem; text-align: center; color: rgba(255,255,255,.55); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.js .reveal, .js .reveal-left, .js .reveal-right { opacity: 0; transition: opacity .8s var(--ease), transform .8s var(--ease); will-change: transform, opacity; }
.js .reveal { transform: translateY(36px); }
.js .reveal-left { transform: translateX(-48px); }
.js .reveal-right { transform: translateX(48px); }
.js .reveal.is-in, .js .reveal-left.is-in, .js .reveal-right.is-in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__actions { display: none; }
  .nav__burger { display: flex; }
  .about__card { max-width: 100%; }
  .offer__list { grid-template-columns: repeat(2, 1fr); }
  .why-work__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .trust__card { grid-template-columns: 1fr 1fr; row-gap: 30px; }
  .stat:nth-child(2)::after { display: none; }
  .work__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .hero__cta { flex-direction: column; align-items: stretch; }
  .trust { margin-top: -36px; }
  .trust__card { padding: 20px 16px; row-gap: 26px; }
  .stat { justify-content: flex-start; }
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .testi__track { grid-template-columns: 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .trust__card { grid-template-columns: 1fr 1fr; }
  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .offer__list { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}
