
.lg-intro{
  position: fixed; inset: 0; z-index: 9999; background: #000;
  display: grid; place-items: center;
  height: 100vh;           /* fallback */
  height: 100dvh;          /* accurate on mobile UI chrome */
  opacity: 1; transition: opacity .4s ease;
}
.lg-intro--hide{ opacity: 0; pointer-events: none }

/* Make the Lottie box much larger on phones */
.lg-intro__box{
  /* desktop/tablet default (already fine) */
  width: min(86vw, 720px);
  aspect-ratio: 16 / 9;
}

/* Mobile: scale nearly full-screen and square for max presence */
@media (max-width: 640px){
  .lg-intro__box{
    width: 94vmin;          /* grows with the smaller viewport side */
    height: 94vmin;         /* square box gives maximum area on phones */
    aspect-ratio: auto;     /* let width/height control the box */
  }
}

/* Optional: if you prefer a wide rectangle instead of square on phones */
@media (max-width: 640px){
  .lg-intro__box.lg-intro--wide{
    width: 96vw;
    height: min(78dvh, 640px);  /* accurate mobile fullscreen sizing */
    aspect-ratio: 16 / 9;
  }
}



:root {
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
}
html,
body {
  height: 100%;
  margin: 0;
  scroll-behavior: smooth;
  background-color: #000;
}
a {
  color: inherit;
  text-decoration: none;
}
/* Hero: exact viewport height, responsive on mobile */
body {
  margin: 0;
}

:root {
  --container: 1200px;
  --pad: 2rem;
  --bg: #0b0b0c;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--pad));
  margin-inline: auto;
  padding-inline: var(--pad);
}

.hero {
  position: relative;
  block-size: 100svh; /* small viewport height for iOS/Chrome UI */
  display: grid;
  align-items: stretch;
  overflow: clip; /* avoid sub-pixel scrollbars */
  background: var(--bg);
}
@supports (height: 100dvh) {
  .hero {
    block-size: 100dvh;
  } /* precise dynamic viewport on modern browsers */
}

/* Background image fills and crops nicely */
.hero-media {
  position: absolute;
  inset: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  inline-size: 100%;
  block-size: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(102%);
}

/* Subtle vignette to match the reference */
.hero-scrim {
  position: absolute;
  inset: 0;
  background: radial-gradient(
      1200px 1200px at 15% 30%,
      rgba(0, 0, 0, 0.15),
      rgba(0, 0, 0, 0.3)
    ),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.15));
}

/* Reserve space for future text/CTA without altering height */
.hero-inner {
  position: relative;
  z-index: 1;
  min-block-size: 100%;
  display: grid;
  align-content: center;
  padding-block: 0; /* keep exact viewport height */
}



/* Typography */
.navbar .nav-link {
  color: rgba(255, 255, 255, 0.88) !important;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}
.navbar .nav-link.active {
  color: #fff !important;
}

.btn-shop {
  background: #fff;
  color: #000;
  border: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 12px;
  /* Add padding, border-radius, etc. if needed */
}

/* Remove or comment out these if present */
.btn-shop:hover,
.btn-shop:focus,
.btn-shop:active {
  /* No effect, keep same style as default */
  background: #fff;
  color: #000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}


/* Container width */
.navbar .container {
  max-width: 1240px;
}

/* Borderless toggler */
.navbar-toggler {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  background: transparent;
  -webkit-tap-highlight-color: transparent;
}
.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:hover {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/* Custom bars + morph */
.toggler-bars {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
}
.toggler-bars span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
}

/* Animation timing tokens */
:root {
  --nav-dur: 0.24s;
  --nav-ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}
.toggler-bars span {
  transition: transform var(--nav-dur) var(--nav-ease),
    opacity var(--nav-dur) var(--nav-ease);
}
.navbar-toggler[aria-expanded="true"] .toggler-bars span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .toggler-bars span:nth-child(2) {
  opacity: 0;
}
.navbar-toggler[aria-expanded="true"] .toggler-bars span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Simple, smooth shutter — MOBILE ONLY */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: rgba(11, 11, 12, 0.92);
    padding: 1rem 1.25rem;
    margin-inline: -12px;
    border-radius: 0.5rem;
    will-change: height, opacity;
    transition: opacity var(--nav-dur) var(--nav-ease);
    opacity: 0;
  }
  .navbar-collapse.show {
    opacity: 1;
  }
  .collapsing {
    overflow: hidden;
    transition: height var(--nav-dur) var(--nav-ease);
  }
}

/* Desktop: ensure visible and inline */
@media (min-width: 992px) {
  .navbar-collapse {
    opacity: 1 !important;
    background: transparent;
    padding: 0;
    margin: 0;
    border-radius: 0;
    transition: none;
  }
  .navbar-nav.me-auto {
    margin-right: auto !important;
  }
  .navbar-nav.ms-auto {
    margin-left: auto !important;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .navbar-collapse,
  .collapsing,
  .toggler-bars span {
    transition: none !important;
  }
}

/* A11y helper for SEO heading */
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* Viewport sizing that adapts to mobile browser UI */
.hero {
  position: relative;
  block-size: 100svh; /* fallback for iOS/Chrome UI bars */
  display: grid;
  align-items: stretch;
  overflow: clip;
  color: #fff;
}
@supports (height: 100dvh) {
  .hero {
    block-size: 100dvh;
  } /* exact dynamic viewport height */
}

/* Top offset controlled by measured navbar height */
:root {
  --nav-h: 64px;
  --hero-gap: clamp(12px, 2.5vw, 28px);
}
.hero-inner {
  position: relative;
  z-index: 1;
  min-block-size: 100%;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: min(2.2vw, 1.25rem);
  padding-top: calc(var(--nav-h) + var(--hero-gap));
}

/* Tagline (H3): force two lines on md+, balanced wrapping */
.hero-tagline {
  font-family: "Inclusive Sans", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.01em;
  line-height: 1.28;
  font-size: clamp(1.25rem, 2.2vw + 0.5rem, 2rem);
  max-inline-size: clamp(30ch, 34ch, 36ch); /* forces 2 lines on md+ */
  text-wrap: balance; /* cleaner line breaks */
}
/* CTA pill */
.btn.hero-cta {
  width: 180px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: #fff;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  font-size: 12px;
}

/* Display title (H1) at bottom-left */
.hero-title {
  font-family: "Jaldi", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400; /* Regular */
  letter-spacing: 0.02em;
  line-height: 0.9;
  font-size: clamp(5rem, 18vw, 16rem);
  padding-top: 50px;
}

/* Small phones */
/* Phones: center stack and place tagline+CTA directly above the title */
@media (max-width: 575.98px){ /* Bootstrap xs breakpoint */
  .hero-inner{
    display: flex;                 /* switch from grid to flex for easy ordering */
    flex-direction: column;        /* vertical stack */
    justify-content: center;       /* center vertically */
    align-items: center;           /* center horizontally */
    min-block-size: calc(100% - var(--nav-h));
    padding-top: var(--nav-h);
    text-align: center;
    gap: clamp(.6rem, 2.5vh, 1rem);/* tidy spacing between blocks */
     place-self: center;             /* center the item within its grid area [web:211] */
    inline-size: min(92vw, 640px);  /* stable width across phones */
    margin: 0;                      /* remove any external margins */
    text-align: center;
  }

  /* Tagline + CTA block directly above the title */
  .hero-copy{
    order: 1;                      /* renders first, just above title */
    max-inline-size: 30ch;
    margin-inline: auto;
  }
  .hero-tagline{ margin: 0 0 .6rem 0; }

  /* Title sits immediately below the tagline+CTA, still centered */
  .hero-title{
    position: static;              /* join the flow so it centers */
    order: 2;                      /* renders after hero-copy */
    margin: 0;                     /* keep spacing governed by gap */
    font-size: 110px;
    line-height: .9;
  }
}


/* Safe-area */
@supports (padding: env(safe-area-inset-top)) {
  .hero-inner {
    padding-top: calc(
      var(--nav-h) + var(--hero-gap) + env(safe-area-inset-top)
    );
  }
}


/* Section shell */
.intro-section{
  background:#0a0a0a;
  color:#fff;
  padding-block: clamp(60px, 10vh, 120px);
  font-family: "Inria Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; /* Inria Sans everywhere in this section */
  font-weight: 400; /* Regular as default */
}

/* Two-column desktop, centered stack on mobile */
.intro-grid{
  display:grid;
  grid-template-columns: 1fr minmax(0, 820px);
  gap: clamp(16px, 4vw, 48px);
  align-items:center;
  max-width: 1240px;          /* match navbar container */
  margin-inline:auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

/* Left kicker */
.intro-kicker{
  margin:0;
  font-weight:700;                /* Inria Sans Bold */
  font-size:.78rem;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:#cfcfcf;
  opacity:.95;
}

/* Right column content */
.intro-content{ justify-self:start }

/* Main message */
.intro-heading{
  margin:0 0 clamp(16px,2.2vw,22px) 0;
  line-height:1.15;
  font-weight:400;                /* Regular */
  font-size: 30px; /* matches image scale */
  max-inline-size: 100ch !important;
  text-wrap: balance;
}
.intro-heading .muted{
  display:block;
  color:#bdbdbd;
  font-weight:600;
}
.intro-heading .strong{
  display:block;
  color:#ffffff;
  font-weight:700;
}

/* CTA button */
.btn.intro-cta{
  display:inline-flex; align-items:center; justify-content:center;
  padding:.7rem 1.15rem;
  border-radius:999px;
  background:#fff; color:#000; text-decoration:none;
  font-weight:800; letter-spacing:.06em; font-size:.88rem;
  box-shadow:0 10px 30px rgba(0,0,0,.35);
}

/* Mobile: center everything */
@media (max-width: 767.98px){
  .intro-grid{
    grid-template-columns: 1fr;
    place-items:start;
    text-align:start;
  }
  .intro-content{ justify-self:start}
  .intro-kicker{ order:-1; margin-bottom: .75rem } /* optional: move on top */
  .intro-heading{ 
    font-weight: 100px;
    max-inline-size: 22ch }
}

/* Very large screens: modestly widen right column */
@media (min-width: 1400px){
  .intro-grid{ grid-template-columns: 1fr minmax(0, 900px) }
}
.intro-heading span {
  opacity: 0.15;
  transition: opacity 0.25s ease-out, transform 0.35s ease-out;
  display: inline-block;
}
.intro-heading .word {
  display: inline-block;       /* keep letters inside a word together */
  white-space: nowrap;          /* prevent line break inside a word */
}

.intro-heading span.letter {
  display: inline-block;
  opacity: 0.15;
  transform: translateY(10px);
  transition: opacity 0.25s ease-out, transform 0.35s ease-out;
}





/* Provide a tall scroll span; JS will overwrite min-block-size precisely */
.reveal-strip{
  min-block-size: 400vh;
  background:#000;
  overflow: visible; /* allow sticky child to work */
}

/* Sticky stage with explicit fallbacks */
.rs-sticky{
  position: sticky; top: 0;
  height: 100vh;                      /* baseline fallback */
  display: grid; place-items: center;
  overflow: hidden;
}
@supports (height: 100svh){ .rs-sticky{ height: 100svh } } /* iOS/Chrome small-view */
@supports (height: 100dvh){ .rs-sticky{ height: 100dvh } } /* dynamic viewport */

/* Track fills the sticky stage height to avoid top/bottom gaps */
.rs-track{
  display: flex; gap: 0; align-items: center;
  height: 100%;                       /* tie to sticky height for all browsers */
  will-change: transform;
  transform: translate3d(0,0,0);
}

/* Big square tiles without rounded corners */
.tile{
  --side: min(92vmin, 96vh);          /* desktop fallback uses vh here */
  width: var(--side);
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  background:#111;
  /* box-shadow: 0 20px 50px rgba(0,0,0,.42); */
  user-select: none; -webkit-user-drag:none;
}
@supports (height: 100dvh){
  .tile{ --side: min(92vmin, 96dvh); } /* prefer dvh when available */
}

.tile:not(.intro){
  display:block; width: var(--side); height: var(--side);
  object-fit: cover; object-position: center;
}

.tile.intro{
  display:flex; flex-direction:column; justify-content:center;
  padding: clamp(16px, 4vmin, 32px);
  color:#fff;
  background-color: #000;
}
.intro-title{ margin:0 0 .35em 0; font-weight:800; letter-spacing:.01em; font-size: clamp(1.25rem, 2.2vmin + .6rem, 2rem) }
.intro-sub{   margin:0; opacity:.92; line-height:1.35; font-size: clamp(.95rem, 1.4vmin + .35rem, 1.125rem) }

/* Motion preference */
@media (prefers-reduced-motion: reduce){
  .rs-track{ transform: none !important }
}

/* Intro Tile */
.tile.intro {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8vw 6vw;
  min-width: 55vw;
  background: transparent;
 
}

/* Modern Title */
.intro-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
   font-family: "Jaldi", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  font-weight: 400; /* Regular */
  letter-spacing: -0.015em;
  line-height: 1.;
  color: #fff;
  margin-bottom: 1.2rem;
  position: relative;
}

/* Subtle Underline Accent */
.intro-title::after {
  content: "";
  position: absolute;
  bottom: -0.6rem;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  opacity: 0.9;
}

/* Subtitle */
.intro-sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 400;
  line-height: 1.6;
  max-width: 520px;
  margin-top: 1.8rem;
}

/* Entry Animation */
.tile.intro {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .tile.intro {
    min-width: 80vw;
    padding: 12vw 6vw;
  }

  .intro-title {
    font-size: clamp(1.8rem, 6vw, 2.8rem);
  }

  .intro-sub {
    font-size: clamp(0.95rem, 3vw, 1.1rem);
  }
}

.tech-destination {
  overflow-x: hidden;
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 8rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-destination h2 {
font-family: "Jaldi", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;  font-weight: 500;
  font-size: 7rem;
  line-height: 1.2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .tech-destination {
    padding: 5rem 1rem;
  }
  .tech-destination h2 {
    font-size: 3rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .tech-destination h2 {
    font-size: 2.5rem;
  }
}


/* ====== TECH DESTINATION ====== */
.tech-destination {
  overflow-x: hidden;
  background: #000;
  color: #fff;
  padding-block: clamp(3rem, 10vh, 6.5rem);
  display: grid;
  align-items: center;
  text-align: center;
}

.tech-destination .container {
  /* keep the container centering behavior from your existing .container */
  display: flex;
  justify-content: center;
  align-items: center;
}

.tech-title {
  font-family: "Jaldi", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  margin: 0;
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  /* responsive size: min 2.6rem, prefers 11vw, max 9.5rem */
  font-size: clamp(2.6rem, 11vw, 9.5rem);
  font-weight: 400;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  word-break: break-word; /* avoid overflow on tiny screens */
}

/* tighten spacing on very small screens to avoid 2-line overflow issues */
@media (max-width: 420px) {
  .tech-title {
    font-size: clamp(1.6rem, 9.5vw, 4.8rem);
    line-height: 1;
  }
}

/* ====== FEATURES ====== */
/* section shell */
.features-section {
  overflow-x: hidden;
  background: #000;
  color: #fff;
  padding-left: 10px;
  padding-block: clamp(2.5rem, 6.5vh, 4.5rem);
}

/* inner grid uses your container width and a responsive CSS grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 3.2vw, 2.5rem);
  align-items: start;
  justify-items: start;
  padding-inline: 0; /* container already handles horizontal padding */
}

/* single feature card */
.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  min-width: 0; /* prevents overflow with long text */
}

/* icon */
.icon {
  flex: 0 0 44px;
  height: 44px;
  display: grid;
  place-items: center;
  font-size: clamp(20px, 2.5vw, 28px);
  color: #fff;
}

/* text */
.text h3 {
  margin: 0 0 0.5rem 0;
  font-size: clamp(1rem, 1.1vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}

.text p {
  margin: 0;
  color: #cfcfcf;
  font-size: clamp(.875rem, 1vw, .95rem);
  line-height: 1.6;
  max-width: 42ch;
}

/* responsive breakpoints */
@media (max-width: 1100px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .text p { max-width: 48ch; }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature {
    gap: 0.9rem;
    margin-bottom: 0.5rem;
  }
  .text p { max-width: 60ch; }
}

/* optional small hover micro-interaction (non-essential) */
.feature:hover .icon {
  transform: translateY(-3px);
  transition: transform .22s cubic-bezier(.2,.9,.3,1);
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .feature:hover .icon { transform: none; transition: none; }
}



.about-section {
  overflow-x: hidden;
  background-color: #000;
  color: #fff;
  padding: 80px 10%;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 60px;
}

.about-text {
  flex: 1 1 480px;
  max-width: 580px;
}

.about-text h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.about-text p {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 40px;
}

.about-btn {
  display: inline-block;
  border: 1.5px solid #fff;
  border-radius: 30px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background-color: #fff;
  color: #000;
}

.about-image {
  flex: 1 1 420px;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* ===== Responsive Design ===== */

@media (max-width: 992px) {
  .about-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 18px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-btn {
    padding: 10px 24px;
  }
}


.featured-products {
  overflow-x: hidden;
  background: #000;
  color: #fff;
  padding: 40px 0 56px 0;
  text-align: left;
}
.fp-head {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
.fp-title {
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: .02em;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.fp-sub {
  font-size: .98rem;
  font-weight: 400;
  color: #ccc;
  margin-bottom: 42px;
}

/* Responsive grid: 4 per row desktop, 2 on mobile */
.fp-grid {
  max-width: 1240px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 32px;
  margin-bottom: 36px;
  padding-inline: 20px;
}
@media (max-width: 950px){
  .fp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px){
  .fp-grid { gap: 20px 14px; padding-inline:10px; }
}

/* Card styles */
.fp-card {
  background: #181818;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.fp-card img {
  width: 100%;
  aspect-ratio: 1/1;        /* makes image square */
  object-fit: cover;
  display: block;
  background:#222;
}
.fp-info {
  padding: 16px 16px 16px 14px;
}
.fp-name {
  font-size: 1.01em;
  margin: 0 0 6px 0;
  font-weight: 400;
  line-height: 1.26;
}

.fp-stars {
  color: #FFC90B;
  font-size: 1.09em;
  letter-spacing: 1px;
  font-family: system-ui, Arial, sans-serif;
}

.fp-price {
  color: #FFD;
  margin-top: 7px;
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.fp-more {
  display: block;
  margin: 32px auto 0 auto;
  padding: 12px 32px;
  border: none;
  border-radius: 40px;
  background: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background .18s;
  letter-spacing: .06em;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}
.fp-more:active, .fp-more:focus { background: #eee; }

@media (max-width: 520px){
  .fp-head { padding-inline:6px; }
  .fp-title { font-size: 1.08rem; }
  .fp-sub { font-size: .90rem; }
  .fp-grid { grid-template-columns: 1fr 1fr; }
  .fp-info { padding: 10px 10px 12px 8px; }
  .fp-card { border-radius: 9px; }
}


.testimonial-section {
  overflow-x: hidden;
  background: #000000;
  color: #fcfcfc;
  padding: 60px 0 68px 0;
}
.testimonial-head {
  text-align: center;
  margin-bottom: 36px;
}
.testimonial-head h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 9px;
  letter-spacing: -.015em;
}
.testimonial-head p {
  color: #babec7;
  font-size: 1.08rem;
}
.testimonial-carousel-wrap {
  width: 100vw;
  max-width: 1280px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding-block: 12px 4px;
}
.testimonial-carousel {
  display: flex;
  gap: 32px;
  animation: testimonial-loop 26s linear infinite;
  will-change: transform;
}
.testimonial-carousel.paused {
  animation-play-state: paused !important;
}

@keyframes testimonial-loop {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Testimonial Card */
.tcard {
  min-width: 320px; max-width: 340px;
  background: linear-gradient(180deg,rgba(32,34,38,.93) 70%,rgba(36,38,44,.88) 100%);
  border-radius: 18px;
  border: 1.5px solid rgba(210, 210, 220, .09);
  padding: 24px 20px 20px 18px;
  display: flex; flex-direction: column; align-items: flex-start;
  box-shadow: 0 3px 26px rgba(25,35,41,0.13);
  font-size: 1em;
  text-align: left;
  transition: box-shadow .22s;
}
.tcard:hover {
  box-shadow: 0 10px 40px rgba(30,70,120,.13);
  border-color: rgba(130,170,255,0.45);
}
.tcard-profile {
  display: flex; align-items: center; gap: 12px; margin-bottom: 13px;
}
.tcard-avatar {
  width: 46px; height: 46px;
  border-radius: 50%; object-fit: cover;
  background: #25262d;
  border: 1px solid #20242c;
}
.tcard-author-group {
  display: flex; flex-direction: column;
}
.tcard-name {
  font-weight: 700; font-size: 1.13em; margin-bottom: 1.5px;
}
.tcard-handle {
  font-size: 1em; color: #777e8b; 
}
.tcard-text {
  color: #d1d2d5;
  margin-bottom: 0;
  font-size: 1.07em;
  line-height: 1.6;
  word-break: break-word;
}

@media (max-width: 850px) {
  .tcard { min-width: 82vw; max-width:92vw; padding: 18px 8px 16px 9px;}
  .testimonial-carousel { gap: 14px;}
}

@media (max-width: 500px){
  .testimonial-section { padding: 32px 0 32px 0; }
  .testimonial-head h2 { font-size: 1.13rem;}
  .testimonial-head p { font-size:.93rem;}
  .testimonial-carousel { gap:8px;}
  .tcard { border-radius:10px; font-size:.98em;}
}

@media (max-width: 640px) {
  .testimonial-carousel {
    animation-duration: 5s !important; /* faster scroll on mobile */
  }

}
@media (max-width: 640px) {
  .testimonial-head h2,
  .testimonial-head p {
    padding-left: 1.25rem;  /* 20px */
    padding-right: 1.25rem; /* 20px */
  }
}




.contact-minimal {
  overflow-x: hidden;
  background: #000000;
  color: #f5f5f3;
  padding: 70px 0 70px 0;
}

.contact-minimal-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 56px;
  align-items: flex-start;
  justify-content: center;
  padding: 0 28px;
  flex-wrap: wrap;
}

.contact-minimal-details {
  flex: 1 1 370px;
  max-width: 480px;
}

.contact-label {
  font-size: 1.04rem;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.49;
  margin-bottom: 8px;
  letter-spacing: .13em;
  display: block;
}

.contact-minimal-head {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  letter-spacing: -.012em;
}

.contact-minimal-sub {
  color: #bbb8b5;
  font-size: 1.10rem;
  margin-bottom: 33px;
  line-height: 1.6;
}

.contact-minimal-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-minimal-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-height: 40px;
}

.icon.gold {
  color: #e0c961;
  font-size: 1.45rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-minimal-link {
  color: #f5f5f3;
  font-size: 1.06rem;
  text-decoration: none;
  transition: color 0.17s;
  font-weight: 600;
  letter-spacing: .01em;
}
.contact-minimal-link:hover,
.contact-minimal-link:focus-visible {
  color: #e0c961;
  outline: none;
}

.contact-minimal-address-title {
  color: #e0c961;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 2px;
}

.contact-minimal-address {
  color: #f5f5f3;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 2px;
  letter-spacing: .01em;
  line-height: 1.45;
}

.contact-minimal-img {
  flex: 1 1 400px;
  max-width: 500px;
  min-width: 260px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}
.contact-minimal-img img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
  background: #232323;
  min-height: 220px;
}

/* Responsive adjustments */
@media (max-width: 900px){
  .contact-minimal-grid { flex-direction: column; align-items: center; gap: 40px; padding: 0 5vw; }
  .contact-minimal-details, .contact-minimal-img { max-width: 99vw; }
  .contact-minimal-img { margin-bottom: 0; }
  .contact-minimal-head { font-size: 1.45rem;}
}

@media (max-width: 600px){
  .contact-minimal { padding: 32px 0; }
  .contact-minimal-grid { padding: 0 2vw; gap: 26px;}
  .contact-minimal-head { font-size: 1.07rem;}
  .contact-minimal-sub { font-size: .98rem;}
}
/* ---------------- CONTACT FORM (REPLACES IMAGE) ---------------- */

.contact-minimal-form {
  flex: 1 1 400px;
  max-width: 500px;
  min-width: 260px;
  margin: 0 auto;
  background: #0f0f0f;
  border-radius: 12px;
  padding: 28px;
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #bbb8b5;
  letter-spacing: .03em;
}

.contact-form input,
.contact-form textarea {
  background: #141414;
  border: 1px solid #232323;
  color: #f5f5f3;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color .2s, background .2s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7d7b78;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #e0c961;
  background: #111;
}

.contact-submit-btn {
  margin-top: 10px;
  background: #e0c961;
  color: #000;
  border: none;
  border-radius: 9px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s;
}

.contact-submit-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(224, 201, 97, 0.25);
  opacity: 0.95;
}

.contact-submit-btn:active {
  transform: translateY(0);
}

/* Mobile refinement */
@media (max-width: 600px){
  .contact-minimal-form {
    padding: 22px;
  }
}

.footer-dark {
  background: #090909;
  color: #fff;
  padding: 60px 0 34px 0;
  font-family: "Inria Sans", Arial, sans-serif;
}
.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.footer-head {
  margin-bottom: 28px;
  text-align: left;
}
.footer-title {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.13;
  margin: 0 0 15px 0;
  letter-spacing: -.01em;
}
.footer-desc {
  font-size: 1.08rem;
  color: #ececec;
  margin-bottom: 34px;
  font-weight: 400;
}

.footer-links-row {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.footer-col {
  flex: 1 1 140px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-col-title {
  font-weight: 700;
  margin-bottom: 11px;
  font-size: 1.03rem;
}
.footer-col a {
  color: #cececd;
  text-decoration: none;
  font-size: 1.01rem;
  padding: 2px 0;
  transition: color .19s;
}
.footer-col a:hover,
.footer-col a:focus-visible {
  color: #e0c961;
  outline: none;
}

.footer-avatars-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.footer-avatars {
  display: flex;
  gap: -10px;
  align-items: center;
}
.footer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -10px;
  box-shadow: 0 1px 8px rgba(35,35,35,0.13);
  border: 2px solid #13120f;
  background: #161616;
}

.footer-social {
  display: flex;
  gap: 16px;
}
.footer-social a {
  color: #e0c961;
  font-size: 1.34rem;
  transition: color .15s;
}
.footer-social a:hover {
  color: #fff;
}

.footer-divider {
  border: none;
  border-top: 1px solid #222;
  margin: 25px 0 18px 0;
  opacity: .6;
}
.footer-bottom {
  text-align: left;
  color: #b6b6ae;
  font-size: .96rem;
  padding-bottom: 0;
}

/* Responsive */
@media (max-width: 970px){
  .footer-title { font-size: 1.55rem;}
  .footer-links-row { gap: 14px; }
}
@media (max-width: 700px){
  .footer-head { margin-bottom: 13px;}
  .footer-links-row { flex-wrap: wrap; gap: 8px; }
  .footer-col { flex: 1 1 120px; font-size: .94rem;}
  .footer-title { font-size: 1.12rem;}
  .footer-avatars-social { justify-content: center; }
}
@media (max-width: 480px){
  .footer-content { padding: 0 5px;}
  .footer-links-row { flex-direction: column; gap: 18px; }
  .footer-col { flex: none;}
  .footer-title { font-size: .96rem;}
  .footer-avatar { width: 34px; height: 34px;}
  .footer-social a { font-size: 1.03rem;}
}
@media (max-width: 600px) {
  .footer-content {
    padding: 0 6px;
    max-width: 99vw;
  }
  .footer-head {
    margin-bottom: 18px;
    text-align: center;
  }
  .footer-title {
    font-size: 1.07rem;
    line-height: 1.17;
    margin-bottom: 10px;
  }
  .footer-desc {
    font-size: 0.97rem;
    margin-bottom: 24px;
  }

  /* Use 2 column grid for footer links */
  .footer-links-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 12px;
    margin-bottom: 24px;
  }
  .footer-col {
    flex: none;
    margin-bottom: 0;
    gap: 2px;
    min-width: 0;
  }
  .footer-col-title {
    font-size: 0.99rem;
    margin-bottom: 6px;
    font-weight: 600;
  }
  .footer-col a {
    font-size: 0.96rem;
    padding: 1px 0;
  }
  .footer-avatars-social {
    flex-direction: column;
    gap: 7px;
    justify-content: center;
    align-items: center;
    margin-bottom: 18px;
  }
  .footer-avatars {
    gap: 0;
    justify-content: center;
  }
  .footer-avatar {
    width: 32px;
    height: 32px;
    margin-left: -4px;
  }
  .footer-social {
    gap: 9px;
    justify-content: center;
  }
  .footer-social a {
    font-size: 0.98rem;
  }
  .footer-divider {
    margin: 16px 0 10px 0;
  }
  .footer-bottom {
    text-align: center;
    font-size: 0.86rem;
    padding-bottom: 0;
  }
}
