/* ==========================================================
   StarNex – style.css  (Light Theme)
   Brand palette:
     Red accent  → #C8152A
     Dark gray   → #1A1A2E  (headings)
     Mid gray    → #6B7280  (body text)
     Light bg    → #F8F9FA / #FFFFFF
   ========================================================== */

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

/* ── CSS Variables ── */
:root {
  --red:          #C8152A;
  --red-hover:    #A8101E;
  --red-muted:    rgba(200,21,42,0.08);
  --red-muted-border: rgba(200,21,42,0.18);
  --silver:       #9CA3AF;
  --silver-light: #6B7280;
  --bg:           #F8F9FA;
  --bg-white:     #FFFFFF;
  --bg-card:      #FFFFFF;
  --bg-elevated:  #F1F3F5;
  --bg-section:   #F3F4F6;
  --bg-dark:      #111827;
  --bg-dark-card: #1F2937;
  --bg-dark-elevated: #374151;
  --text-primary:   #111827;
  --text-secondary: #4B5563;
  --text-muted:     #9CA3AF;
  --text-on-dark:   #F9FAFB;
  --text-on-dark-muted: #D1D5DB;
  --heading-primary: #111827;
  --heading-accent:  #C8152A;
  --border:        rgba(0,0,0,0.08);
  --border-medium: rgba(0,0,0,0.12);
  --border-hover:  rgba(200,21,42,0.35);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --radius-sm:  6px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-card: 0 2px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
  --shadow-red:  0 8px 32px rgba(200,21,42,0.22);
  --ease: cubic-bezier(0.22,0.61,0.36,1);
  --dur:  0.28s;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.dark-section { background: var(--bg-section); color: var(--text-primary); }

.section-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--red); background: var(--red-muted); border: 1px solid var(--red-muted-border);
  padding: 5px 14px; border-radius: 100px; margin-bottom: 20px;
}
.section-badge.light { color: var(--red); background: var(--red-muted); border-color: var(--red-muted-border); }
.section-heading {
  font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.18; color: var(--heading-primary); margin-bottom: 16px;
}
.section-heading.light { color: var(--text-primary); }
.section-sub { font-size: 1rem; color: var(--text-secondary); max-width: 560px; line-height: 1.7; }
.section-sub.light { color: var(--text-secondary); }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }
.text-gradient {
  background: linear-gradient(135deg, var(--red) 0%, #E8455A 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-light {
  background: linear-gradient(135deg, #da0016 0%, #a90000 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 0.875rem; font-weight: 500;
  letter-spacing: 0.02em; padding: 13px 28px; border-radius: var(--radius-sm);
  transition: all var(--dur) var(--ease); white-space: nowrap;
}
.btn-primary { background: var(--red); color: #fff; border: 1px solid var(--red); box-shadow: 0 2px 12px rgba(200,21,42,0.25); }
.btn-primary:hover { background: var(--red-hover); border-color: var(--red-hover); transform: translateY(-2px); box-shadow: var(--shadow-red); }
.btn-ghost { color: var(--text-primary); border: 1px solid var(--border-medium); background: var(--bg-white); }
.btn-ghost:hover { border-color: var(--red); color: var(--red); background: var(--red-muted); }
.btn-nav { background: var(--red); color: #fff !important; padding: 9px 22px; border-radius: var(--radius-sm); font-size: 0.82rem; font-weight: 600; }
.btn-nav:hover { background: var(--red-hover); }
.btn-full { width: 100%; justify-content: center; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(248,249,250,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all .3s ease;
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.95);
  border-color: var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 6px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--bg-dark);
  transition: color .3s ease;
}

.logo-accent {
  color: var(--red);
}

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

.nav-links a {
  font-size: .875rem;
  font-weight: 450;
  color: var(--text-secondary);
  position: relative;
  transition: color .3s ease;
}

.nav-links a:not(.btn-nav)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s ease;
}

.nav-links a:not(.btn-nav):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.hamburger span {
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--text-primary);
  transition: all .25s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: flex;
}

/* MOBILE */
@media (max-width: 900px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1002;
  }

  .mobile-menu {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    flex-direction: column;
    padding: 24px 0;
    z-index: 1000;
    transition: all .3s ease;
  }

  .mobile-link {
    padding: 14px 24px;
    font-size: 1rem;
    transition: color .25s ease;
  }

  .mobile-cta {
    margin: 16px 24px 0;
    padding: 14px 24px;
    text-align: center;
    border-radius: var(--radius-sm);
    background: var(--red);
    color: #fff !important;
  }

  /* HERO STATE */
  .navbar:not(.scrolled) {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
  }

  .navbar:not(.scrolled) .logo-text {
    color: #fff;
  }

  .navbar:not(.scrolled) .logo-accent {
    color: rgba(255,255,255,.75);
  }

  .navbar:not(.scrolled) .hamburger span {
    background: #fff;
  }

  .navbar:not(.scrolled) .mobile-menu {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .navbar:not(.scrolled) .mobile-link {
    color: #fff;
  }

  .navbar:not(.scrolled) .mobile-link:hover {
    color: rgba(255,255,255,.8);
  }

  .navbar:not(.scrolled) .mobile-cta {
    background: var(--red);
    color: #fff !important;
  }

  /* SCROLLED STATE */
  .navbar.scrolled {
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,.06);
  }

  .navbar.scrolled .logo-text {
    color: var(--bg-dark);
  }

  .navbar.scrolled .logo-accent {
    color: var(--red);
  }

  .navbar.scrolled .hamburger span {
    background: var(--text-primary);
  }

  .navbar.scrolled .mobile-menu {
    background: rgba(255,255,255,.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border);
  }

  .navbar.scrolled .mobile-link {
    color: var(--text-secondary);
  }

  .navbar.scrolled .mobile-link:hover {
    color: var(--text-primary);
  }
}



/* ═══════════════ HERO BASE ═══════════════ */
.hero {
  position: relative;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* ═══════════════ BACKGROUND SHAPES ═══════════════ */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.25;
}

.shape-1 {
  width: 280px;
  height: 280px;
  background: rgba(213, 0, 25, 0.4);
  top: -80px;
  left: -80px;
}

.shape-2 {
  width: 320px;
  height: 320px;
  background: rgba(0, 0, 0, 0.08);
  bottom: -120px;
  right: 20%;
}

.shape-3 {
  width: 200px;
  height: 200px;
  background: rgba(213, 0, 25, 0.25);
  top: 40%;
  right: -60px;
}

/* ═══════════════ LEFT CONTENT ═══════════════ */
.hero-content {
  flex: 1;
  max-width: 700px;
}

/* BADGE */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 18px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(213, 0, 25, 0.9);
  box-shadow: 0 0 10px rgba(213, 0, 25, 0.4);
}

/* MAIN HEADLINE */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--heading-primary);
  margin-bottom: 18px;
}

/* SEO highlight line */
.hero-subheadline-highlight {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;

  color: #111;
  margin-bottom: 16px;

  position: relative;
}

/* red accent underline */
.hero-subheadline-highlight::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin-top: 8px;

  background: linear-gradient(
    90deg,
    rgba(213, 0, 25, 0.9),
    rgba(213, 0, 25, 0.1)
  );

  border-radius: 2px;
}

/* SUBHEADLINE */
.hero-subheadline {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 24px;
}

/* subtle red emphasis inside paragraph (optional span use) */
.hero-subheadline strong {
  color: rgba(213, 0, 25, 0.9);
  font-weight: 700;
}
.hero-subheadline-special {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;

  position: relative;
}

.hero-subheadline-special::after {
  content: "";
  display: block;
  width: 70px;
  height: 2px;
  margin-top: 8px;

  background: linear-gradient(
    90deg,
    rgba(213, 0, 25, 0.9),
    rgba(213, 0, 25, 0.1)
  );
  border-radius: 2px;
}

/* BUTTON */
.hero-actions .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: rgba(213, 0, 25, 0.9);
  color: #fff;
  
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.hero-actions .btn-primary:hover {
  transform: translateY(-2px);
  background: rgba(213, 0, 25, 1);
}

/* ═══════════════ RIGHT VISUAL ═══════════════ */
.hero-visual {
  flex: 1;
  position: relative;
}

.hero-devices-img {
  width: 100%;
  max-width: 450px;
  display: block;
  margin-left: auto;
}

/* ═══════════════ QUOTE (TOP RIGHT LABEL) ═══════════════ */
.hero-quote {
  position: absolute;
  top: 20px;
  right: 0;

  transform: translateX(40%); /* e nxjerr jashtë imazhit */

  max-width: 240px;
  z-index: 5;

  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;

  color: #111;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);

  padding: 14px;
  border-radius: 12px;

  border-left: 3px solid rgba(213, 0, 25, 0.9);

  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

/* badge inside quote */
.hero-quote-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: rgba(213, 0, 25, 0.9);
  margin-bottom: 6px;
}

/* ═══════════════ SCROLL INDICATOR ═══════════════ */
.hero-scroll-indicator {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: rgba(0, 0, 0, 0.2);
  margin: 0 auto 6px;
}

/* ═══════════════ MOBILE ═══════════════ */
@media (max-width: 900px) {

  /* Hero wrapper */
  .hero {
    padding: 72px 0 48px;
  }

  /* Stack vertically, no gap — çdo element menaxhon hapësirën e vet */
  .hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }

  /* Shapes OFF */
  .shape { display: none; }

  /* Scroll indicator OFF */
  .hero-scroll-indicator { display: none; }

  /* ── BADGE ── */
  .hero-badge {
    justify-content: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
    margin-bottom: 24px;
  }

  .badge-dot {
    width: 6px;
    height: 6px;
  }

  /* ── HEADLINE ── */
  .hero-headline {
    font-size: clamp(1.9rem, 8.5vw, 2.4rem);
    line-height: 1.07;
    letter-spacing: -0.042em;
    margin-bottom: 18px;
    padding: 0;
  }

  /* ── H2 SPECIAL ── */
  .hero-subheadline-highlight,
  .hero-subheadline-special {
    font-size: clamp(0.9rem, 3.6vw, 1.05rem);
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: #111;
    text-align: center;
    margin-bottom: 0;
    padding: 0 8px;
  }

  /* Red accent line — centered */
  .hero-subheadline-highlight::after,
  .hero-subheadline-special::after {
    width: 32px;
    height: 2.5px;
    margin: 10px auto 22px;
    border-radius: 2px;
  }

  /* ── BODY COPY ── */
  .hero-subheadline {
    font-size: clamp(0.88rem, 3.5vw, 1rem);
    line-height: 1.7;
    color: var(--text-secondary);
    text-align: center;
    max-width: 100%;
    padding: 0;
    margin-bottom: 28px;
  }

  /* ── CTA BUTTON ── */
  .hero-actions {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
  }

  .hero-actions .btn-primary {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 15px 22px;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: -0.01em;
    border-radius: 13px;
    gap: 9px;
  }

  /* ── VISUAL / IMAGE ── */
  .hero-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-top: 0;
  }

  .hero-devices-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 18px;
    display: block;
    margin: 0 auto 18px;
  }

  /* ── QUOTE CARD ── */
  .hero-quote {
    position: static;
    transform: none;

    width: 100%;
    max-width: 100%;
    padding: 15px 16px;
    margin: 0;

    background: #F9F9F9;
    border-radius: 0;
    border-left: 2.5px solid rgba(213, 0, 25, 0.85);
    border-top: none;
    border-right: none;
    border-bottom: none;

    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    text-align: left;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    color: #1a1a1a;
  }

  .hero-quote-tag {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(213, 0, 25, 0.8);
    margin-bottom: 5px;
  }
}

/* ── EXTRA SMALL — iPhone SE, Galaxy A ── */
@media (max-width: 390px) {

  .hero {
    padding: 60px 0 40px;
  }

  .hero-headline {
    font-size: 1.8rem;
    letter-spacing: -0.038em;
  }

  .hero-subheadline-highlight,
  .hero-subheadline-special {
    font-size: 0.88rem;
  }

  .hero-subheadline {
    font-size: 0.85rem;
  }

  .hero-actions .btn-primary {
    font-size: 13px;
    padding: 14px 18px;
  }

  .hero-badge {
    font-size: 11px;
    gap: 6px;
  }
}
.clients-track {
  display: flex;
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.clients-inner {
  display: flex;
  gap: 0;
  align-items: flex-start;
  width: max-content;
  will-change: transform;
}

/* pill (matching process typography) */
.client-pill {
  flex-shrink: 0;

  min-width: 140px;
  text-align: center;
  padding: 12px 8px;

  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;

  color: var(--text-primary);

  transition: all 0.25s ease;
}

/* hover like process step */
.client-pill:hover {
  transform: translateY(-3px);
  color: var(--red);
}

/* optional fade edges like modern SaaS */
.clients-track::before,
.clients-track::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.clients-track::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.clients-track::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}
/* ABOUT */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; padding: 24px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); min-height: 380px; box-shadow: var(--shadow-card); }
.about-accent-card { position: absolute; top: -18px; left: 20px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 12px 16px; display: flex; align-items: center; gap: 12px; color: var(--red); box-shadow: var(--shadow-card-hover); }
.about-accent-card svg { flex-shrink: 0; }
.accent-card-title { font-size: 0.82rem; font-weight: 600; color: var(--text-primary); }
.accent-card-sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 2px; }
.about-stats-card { position: absolute; bottom: -18px; right: 20px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 14px 18px; display: flex; flex-direction: column; gap: 8px; box-shadow: var(--shadow-card-hover); }
.stat-row { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text-secondary); }
.stat-dot { width: 6px; height: 6px; border-radius: 50%; }
.stat-dot.red { background: var(--red); }
.stat-dot.gray { background: var(--silver); }
.about-code-snippet { display: flex; flex-direction: column; gap: 3px; font-family: 'Courier New', monospace; font-size: 0.8rem; line-height: 1.6; padding: 20px; margin-top: 60px; background: var(--bg-elevated); border-radius: var(--radius); border: 1px solid var(--border); }
.code-line { color: var(--text-secondary); }
.code-kw { color: var(--red); }
.code-str { color: #16A34A; }
.about-text { color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }
.about-pillars { display: flex; flex-direction: column; gap: 16px; margin: 28px 0 32px; }
.pillar { display: flex; align-items: flex-start; gap: 14px; padding: 16px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); transition: border-color var(--dur), box-shadow var(--dur); box-shadow: var(--shadow-sm); }
.pillar:hover { border-color: var(--red-muted-border); box-shadow: var(--shadow-card); }
.pillar-icon { font-size: 1.3rem; flex-shrink: 0; }
.pillar-title { font-size: 0.9rem; font-weight: 600; margin-bottom: 3px; color: var(--text-primary); }
.pillar-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.55; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.service-card { position: relative; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: border-color var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.service-card:hover { border-color: var(--red-muted-border); transform: translateY(-4px); box-shadow: var(--shadow-card); }
.service-icon-wrap { width: 48px; height: 48px; background: rgba(200,21,42,0.12); border: 1px solid rgba(200,21,42,0.2); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: #FCA5A5; margin-bottom: 18px; }
.service-title { font-size: 1rem; font-weight: 600; margin-bottom: 10px; color: var(--text-primary); }
.service-desc { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.65; }
.featured-service { border-color: var(--red-muted-border); background: linear-gradient(135deg, #FFFFFF 0%, rgba(200,21,42,0.06) 100%); box-shadow: var(--shadow-card); }
.featured-badge { position: absolute; top: -10px; right: 16px; background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 3px 10px; border-radius: 100px; }

/* PRICING */
.pricing { background: var(--bg-white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
.pricing-card { position: relative; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.pricing-featured { border-color: var(--red-muted-border); box-shadow: var(--shadow-card); transform: translateY(-8px); }
.pricing-card h3 { font-size: 1.05rem; color: var(--text-primary); margin-bottom: 14px; }
.pricing-price { font-family: var(--font-display); font-size: 1.7rem; font-weight: 700; color: var(--red); margin-bottom: 18px; }
.pricing-card ul { display: flex; flex-direction: column; gap: 10px; color: var(--text-secondary); font-size: 0.86rem; }
.pricing-card li { position: relative; padding-left: 20px; }
.pricing-card li::before { content: ''; position: absolute; left: 0; top: 0.55em; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* PROCESS */
.process-timeline { display: flex; align-items: flex-start; gap: 0; margin-top: 56px; overflow-x: auto; padding-bottom: 8px; }
.process-step { flex: 1; min-width: 140px; text-align: center; padding: 0 8px; }
.step-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; color: rgba(213,0,25,0.72); line-height: 1; margin-bottom: 10px; text-shadow: 0 6px 18px rgba(200,21,42,0.12); }
.step-icon { font-size: 1.5rem; margin-bottom: 10px; }
.step-title { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); margin-bottom: 8px; }
.step-desc { font-size: 0.78rem; color: var(--text-secondary); line-height: 1.6; }
.process-connector { flex-shrink: 0; width: 40px; height: 1px; background: linear-gradient(90deg, var(--red), rgba(200,21,42,0.2)); margin-top: 38px; position: relative; }
.process-connector::after { content: ''; position: absolute; right: -4px; top: -3px; width: 7px; height: 7px; border-radius: 50%; background: var(--red); }

/* PORTFOLIO */
.portfolio { background: var(--bg); }
.portfolio-showcase { position: relative; min-height: 610px; margin-top: 56px; border-radius: var(--radius-lg); background: transparent; border: 0; overflow: visible; }
.portfolio-float { position: absolute; width: min(540px, 52%); filter: drop-shadow(0 28px 34px rgba(17,24,39,0.18)); }
.portfolio-float.project-a { left: 3%; top: 42px; z-index: 3; transform: rotate(-3deg); }
.portfolio-float.project-b { right: 3%; top: 124px; z-index: 2; transform: rotate(2.5deg); }
.portfolio-float.project-c { left: 27%; bottom: 42px; z-index: 4; transform: rotate(-1deg); }
.desktop-shot { position: relative; aspect-ratio: 16 / 9; border: 12px solid #101217; border-bottom-width: 16px; border-radius: 20px 20px 14px 14px; background: #101217; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 16px 30px rgba(17,24,39,0.16); }
.desktop-shot::before { content: ''; position: absolute; left: 50%; top: -8px; width: 62px; height: 9px; transform: translateX(-50%); border-radius: 0 0 9px 9px; background: #050608; pointer-events: none; z-index: 2; }
.desktop-shot::after { content: ''; position: absolute; inset: 0; border-radius: 8px; background: linear-gradient(115deg, rgba(255,255,255,0.20), transparent 24%), linear-gradient(180deg, rgba(255,255,255,0.06), transparent 36%); pointer-events: none; z-index: 2; }
.portfolio-float::after { content: ''; position: absolute; left: 50%; bottom: -34px; width: 76%; height: 34px; transform: translateX(-50%) perspective(260px) rotateX(58deg); border-radius: 0 0 28px 28px; background: linear-gradient(180deg, #D8DCE1 0%, #A9B0B8 55%, #737B84 100%); box-shadow: 0 22px 26px rgba(17,24,39,0.15); z-index: -1; }
.portfolio-float::before { content: ''; position: absolute; left: 50%; bottom: -18px; width: 22%; height: 5px; transform: translateX(-50%); border-radius: 0 0 12px 12px; background: rgba(255,255,255,0.72); z-index: 1; }
.desktop-shot img, .mobile-shot img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.mobile-shot { position: absolute; right: -18px; bottom: -28px; width: 118px; aspect-ratio: 9 / 18; border: 7px solid #101217; border-radius: 28px; background: #101217; overflow: hidden; box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12), 0 18px 34px rgba(17,24,39,0.26); }
.mobile-shot::before { content: ''; position: absolute; top: 7px; left: 50%; width: 42px; height: 12px; transform: translateX(-50%); border-radius: 999px; background: #050608; z-index: 2; }
.mobile-shot::after { content: ''; position: absolute; inset: 0; border-radius: 20px; background: linear-gradient(120deg, rgba(255,255,255,0.18), transparent 26%); pointer-events: none; z-index: 2; }
.project-b .mobile-shot { left: -20px; right: auto; bottom: -22px; }
.project-c .mobile-shot { right: -8px; bottom: -18px; }
.portfolio-cta { text-align: center; margin-top: 48px; }
.portfolio-cta p { color: var(--text-secondary); margin-bottom: 18px; }
.portfolio-cta a { display: inline-flex; gap: 8px; align-items: center; padding: 10px 22px; background: var(--red); color: #fff; font-size: 0.88rem; font-weight: 500; border-radius: var(--radius); transition: gap var(--dur); }

/* LOCATION */
.location { background: var(--bg-white); }
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.location-content .section-heading { margin-bottom: 14px; }
.location-content p { color: var(--text-secondary); line-height: 1.72; margin-bottom: 24px; }
.location-details { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.location-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.location-item svg { color: var(--red); flex-shrink: 0; }
.service-areas { margin-top: 4px; }
.service-areas strong { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 10px; }
.areas-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag { background: var(--red-muted); border: 1px solid var(--red-muted-border); color: var(--red); font-size: 0.78rem; font-weight: 500; padding: 4px 12px; border-radius: 100px; }
.virtual-office { display: flex; align-items: stretch; }
.virtual-office .map-placeholder { position: relative; width: 100%; border-radius: var(--radius-lg); overflow: hidden; background: radial-gradient(ellipse at 20% 30%, rgba(200,21,42,0.07) 0%, transparent 60%), radial-gradient(ellipse at 80% 70%, rgba(107,114,128,0.06) 0%, transparent 60%), var(--bg-white); border: 1px solid var(--border); box-shadow: var(--shadow-card-hover); min-height: 380px; }
.virtual-office .map-placeholder::after { content: ''; position: absolute; left: 50%; top: 40%; width: 220px; height: 220px; transform: translate(-50%, -50%); border-radius: 50%; background: radial-gradient(circle, rgba(200,21,42,0.10) 0%, transparent 70%); animation: glow-pulse 3.6s ease-in-out infinite; pointer-events: none; }
@keyframes glow-pulse { 0%, 100% { opacity: 0.6; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.18); } }
.virtual-office .map-overlay { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; min-height: 380px; padding: 40px 32px; gap: 0; }
.map-pin.virtual { width: 72px; height: 72px; background: var(--bg-white); border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 2rem; box-shadow: var(--shadow-card), 0 0 0 0 rgba(200,21,42,0.18); animation: pin-ring 2.8s ease-in-out infinite; margin-bottom: 20px; flex-shrink: 0; }
@keyframes pin-ring { 0% { box-shadow: var(--shadow-card), 0 0 0 0 rgba(200,21,42,0.22); } 60% { box-shadow: var(--shadow-card), 0 0 0 16px rgba(200,21,42,0); } 100% { box-shadow: var(--shadow-card), 0 0 0 0 rgba(200,21,42,0); } }
.office-title { font-family: var(--font-display); font-size: 1.45rem; font-weight: 600; color: var(--heading-primary); margin-bottom: 10px; line-height: 1.2; }
.office-text { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.office-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin-bottom: 24px; }
.office-tags span { display: inline-flex; align-items: center; gap: 5px; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; font-size: 0.78rem; color: var(--text-secondary); font-weight: 500; transition: border-color var(--dur), color var(--dur), background var(--dur); }
.office-tags span:hover { border-color: var(--red-muted-border); color: var(--red); background: var(--red-muted); }
.virtual-office .btn-ghost { color: var(--text-primary); border-color: var(--border-medium); background: var(--bg-white); font-size: 0.84rem; padding: 11px 24px; }
.virtual-office .btn-ghost:hover { border-color: var(--red); color: var(--red); background: var(--red-muted); }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
.contact-intro { color: var(--text-secondary); line-height: 1.72; margin-bottom: 28px; }
.contact-benefits { display: flex; flex-direction: column; gap: 10px; }
.benefit-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); }
.benefit-check { color: var(--red); font-weight: 700; font-size: 1rem; }
.contact-form-wrap { background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card-hover); }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.8rem; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.02em; }
.required { color: var(--red); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-sm); color: var(--text-primary); font-family: var(--font-body); font-size: 0.88rem; padding: 11px 14px; transition: border-color var(--dur), background var(--dur); outline: none; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--red); background: var(--bg-white); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--bg-white); color: var(--text-primary); }
.field-error { font-size: 0.75rem; color: var(--red); min-height: 16px; }
.form-success[hidden] { display: none !important; }
.form-success:not([hidden]) { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 24px; color: #16A34A; }
.form-success strong { font-size: 1rem; }
.form-success p { font-size: 0.85rem; color: var(--text-secondary); }

/* FOOTER */
.footer { border-top: 1px solid rgba(255,255,255,0.08); background: var(--bg-dark); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; padding: 64px 24px 40px; }
.footer-logo .logo-text { color: #FFFFFF; }
.footer-logo .logo-accent { color: #FCA5A5; }
.footer-tagline { font-size: 0.83rem; color: rgba(255,255,255,0.45); line-height: 1.65; margin-top: 14px; margin-bottom: 20px; max-width: 240px; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: color var(--dur), border-color var(--dur); }
.social-links a:hover { color: #FCA5A5; border-color: rgba(200,21,42,0.4); }
.footer-heading { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 16px; }
.footer-nav ul, .footer-services ul { display: flex; flex-direction: column; gap: 9px; }
.footer-nav a, .footer-services a { font-size: 0.84rem; color: rgba(255,255,255,0.55); transition: color var(--dur); }
.footer-nav a:hover, .footer-services a:hover { color: #FCA5A5; }
.footer-contact address { font-style: normal; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.55); }
.footer-contact-item svg { color: #FCA5A5; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 18px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); }

/* WHATSAPP / BACK TO TOP */
.whatsapp-btn { position: fixed; bottom: 24px; right: 24px; z-index: 800; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.35); transition: transform var(--dur), box-shadow var(--dur); }
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.45); }
.whatsapp-tooltip { position: absolute; right: 64px; background: var(--bg-white); border: 1px solid var(--border); color: var(--text-primary); font-size: 0.75rem; padding: 5px 10px; border-radius: var(--radius-sm); white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity var(--dur); box-shadow: var(--shadow-card); }
.whatsapp-btn:hover .whatsapp-tooltip { opacity: 1; }
.back-to-top { position: fixed; bottom: 88px; right: 24px; z-index: 800; width: 40px; height: 40px; background: var(--bg-white); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; color: var(--text-secondary); cursor: pointer; box-shadow: var(--shadow-card); transition: color var(--dur), border-color var(--dur); }
.back-to-top:hover { color: var(--red); border-color: var(--red-muted-border); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; text-align: center; }
  .hero-subheadline { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: flex; }
  .hero-device-stage { width: min(720px, 100%); min-height: 420px; }
  .hero-devices-img { width: min(760px, 112%); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-showcase { min-height: auto; padding: 28px; display: grid; gap: 36px; }
  .portfolio-float { position: relative; width: 100%; inset: auto !important; transform: none !important; }
  .portfolio-float::after { bottom: -24px; height: 26px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .location-grid { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .section-pad { padding: 64px 0; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 48px 0; }
  .hero-headline { font-size: 2.2rem; }
  .hero-device-stage { min-height: 320px; width: 100%; }
  .hero-devices-img { width: min(560px, 120%); animation-duration: 9s; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .portfolio-showcase { padding: 20px; gap: 30px; overflow: hidden; }
  .portfolio-float::after { bottom: -18px; height: 20px; }
  .mobile-shot { width: 82px; right: -8px; bottom: -18px; border-width: 6px; }
  .project-b .mobile-shot { left: -8px; bottom: -18px; }
  .process-timeline { flex-direction: column; align-items: center; }
  .process-connector { display: none; }
  .process-step { max-width: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; padding: 40px 24px 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .about-img-wrap { min-height: 260px; }
  .about-accent-card { position: static; margin-bottom: 12px; }
  .about-stats-card { position: static; margin-top: 12px; }
  .virtual-office .map-placeholder { min-height: 320px; }
  .virtual-office .map-overlay { min-height: 320px; padding: 28px 20px; }
  .map-pin.virtual { width: 58px; height: 58px; font-size: 1.6rem; }
  .office-title { font-size: 1.2rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .section-heading { font-size: 1.7rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .hero-device-stage { min-height: 250px; }
  .hero-devices-img { width: min(430px, 116%); }
}

/* ANIMATIONS */
.animate-fadeUp, .animate-fadeIn, .animate-slideLeft, .animate-slideRight {
  opacity: 0; transition-duration: 0.7s; transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-property: opacity, transform; transition-delay: var(--delay, 0s);
}
.animate-fadeUp { transform: translateY(32px); }
.animate-fadeIn { transform: translateY(16px); }
.animate-slideLeft { transform: translateX(40px); }
.animate-slideRight { transform: translateX(-40px); }
.animate-fadeUp.visible, .animate-fadeIn.visible, .animate-slideLeft.visible, .animate-slideRight.visible { opacity: 1; transform: none; }
.hover-lift { transition: transform 0.24s cubic-bezier(0.22, 0.61, 0.36, 1); }
.hover-lift:hover { transform: translateY(-4px); }
@keyframes pageFade { from { opacity: 0; } to { opacity: 1; } }
body { animation: pageFade 0.5s ease forwards; }
@media (prefers-reduced-motion: reduce) {
  .hero-devices-img { animation: none; transform: translateX(28px) scale(1.08); }
  .virtual-office .map-placeholder::after, .map-pin.virtual { animation: none; }
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* each question acts like a step */
.faq-item {
  position: relative;
  padding: 18px 16px;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
  transition: 0.25s ease;
}

/* red accent like your step-number */
.faq-item summary {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* number-like red dot (like timeline energy) */
.faq-item summary::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(213,0,25,0.72);
  box-shadow: 0 6px 18px rgba(200,21,42,0.15);
  flex-shrink: 0;
}

/* answer text */
.faq-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-top: 10px;
  padding-left: 20px;
  max-width: 700px;
}

/* hover effect like timeline interaction */
.faq-item:hover {
  background: rgba(213,0,25,0.02);
}

/* open state styling */
.faq-item[open] {
  border-bottom: 1px solid rgba(213,0,25,0.25);
}

.faq-item[open] summary {
  color: var(--heading-primary);
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--heading-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  position: relative;
  margin-left: 400px;
}

/* red accent underline like process connector */
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  margin: 12px auto 0;
  background: linear-gradient(
    90deg,
    rgba(213,0,25,0.9),
    rgba(200,21,42,0.2)
  );
  border-radius: 2px;
}

/* subtitle consistency */
.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════
   HERO MOBILE — FULL OVERLAY
═══════════════════════════ */

.hero-mobile { display: none; }

@media (max-width: 900px) {

  /* Fshih të gjithë desktop hero */
  .hero-inner,
  .hero-bg-shapes,
  .hero-scroll-indicator { display: none; }

  .hero { padding: 0; background: #000; }

  /* Shfaq mobile */
  .hero-mobile {
    display: block;
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 580px;
    overflow: hidden;
  }

  /* Foto — mbulon gjithë ekranin */
  .hm-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* Gradient — errëson poshtë ku del teksti */
  .hm-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.88) 0%,
      rgba(0, 0, 0, 0.50) 40%,
      rgba(0, 0, 0, 0.10) 100%
    );
  }

  /* Teksti — ankoruar poshtë */
  .hm-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 22px 40px;
  }

  /* Badge */
  .hm-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 16px;
  }
  .hm-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(213, 0, 25, 1);
    flex-shrink: 0;
  }
  .hm-badge span {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.60);
    letter-spacing: .02em;
  }
  .hm-sep {
    display: inline-block;
    width: .5px;
    height: 10px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
  }

  /* H1 */
  .hm-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 8.5vw, 2.6rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -.042em;
    color: #ffffff;
    margin-bottom: 12px;
  }

  /* Subheadline */
  .hm-sub {
    font-size: clamp(.9rem, 3.8vw, 1.05rem);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.45;
    margin-bottom: 26px;
    letter-spacing: -.01em;
  }

  /* CTA Button */
  .hm-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 100%;
    padding: 16px 22px;
    background: rgba(213, 0, 25, 0.95);
    color: #fff;
    border-radius: 13px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
  }
}

/* iPhone SE */
@media (max-width: 390px) {
  .hero-mobile { min-height: 540px; }
  .hm-headline { font-size: 1.85rem; }
  .hm-btn { font-size: 13px; padding: 14px 18px; }
}