*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --wine:       #722F37;
  --wine-deep:  #4a1a1a;
  --wine-mid:   #8B3A44;
  --wine-light: #f5e6e8;
  --wine-pale:  #fdf3f4;
  --ink:        #18100f;
  --muted:      #6b5b5e;
  --muted-2:    #9c8c8e;
  --border:     #e8d8da;
  --border-2:   #f0e4e6;
  --white:      #ffffff;
  --surface:    #fdf8f8;
  --green:      #15803d;
  --green-bg:   #f0fdf4;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 80px; height: 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
nav.nav-centered {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-center-group {
  display: flex; align-items: center; gap: 4px;
}
.nav-dot { color: var(--muted-2); font-size: 16px; user-select: none; }
.nav-link-side {
  font-size: 13.5px; font-weight: 400; color: var(--muted);
  text-decoration: none; padding: 6px 12px;
  transition: color 0.15s, background 0.15s;
}
.nav-link-side:hover { color: var(--wine); background: transparent; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; margin: 0 4px; }
.nav-logo img { width: 28px; height: 28px; object-fit: contain; }
.nav-right { position: absolute; right: 80px; display: flex; align-items: center; }
.nav-right a:not(.nav-cta) {
  font-size: 13.5px; font-weight: 400; color: var(--muted);
  text-decoration: none; padding: 6px 12px;
  transition: color 0.15s, background 0.15s;
}
.nav-right a:not(.nav-cta):hover { color: var(--ink); background: var(--wine-pale); }
.nav-cta {
  background: var(--wine); color: white;
  padding: 7px 18px; border-radius: 0;
  font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--wine-deep); }

/* HERO */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 80px 0 0 48px;
  background: var(--white);
  position: relative; overflow: visible;
}
/* Wine decorative shadow panel — behind the image, offset down and left so it peeks out */
.hero::after {
  display: none;
}

.hero-wine-accent {
  position: absolute;
  top: 52px;
  right: 0;
  width: calc(65% + 44px);
  height: 100%;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: var(--wine);
  z-index: 0;
  pointer-events: none;
}

.hero-img-panel-shadow {
  position: absolute;
  top: 0; right: 0;
  width: 65%; height: 100%;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(-24px 24px 40px rgba(0,0,0,0.45));
}

.hero-img-panel {
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 100%;
  clip-path: polygon(18% 0%, 100% 0%, 100% 100%, 0% 100%);
  overflow: hidden;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}

.hero-img-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 1;
  pointer-events: none;
}
.hero-layout {
  width: 36%; margin: 0;
  display: block;
  padding-top: 0;
  position: relative; z-index: 2;
}
.hero-inner {
  position: relative; z-index: 2;
  text-align: left;
  padding-left: 40px;
  margin-top: 0;
}

/* Laptop wrapper */

/* [S] Filing menu item */

/* Curved arrow SVG */

/* Label */

.hero-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 28px;
  animation: fadeUp 0.55s ease both;
}
.hero-logo--main {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 0;
  margin-bottom: 16px;
  margin-top: -80px;
}
.hero-logo--main .hero-logo-img { height: 170px; width: auto; }
.hero-logo img {
  width: 72px; height: 72px; object-fit: contain;
}
.hero-logo span {
  font-size: 48px; font-weight: 700; color: var(--ink); letter-spacing: -1px;
  font-family: 'DM Sans', sans-serif;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15; letter-spacing: -0.3px; color: var(--ink);
  animation: fadeUp 0.55s 0.07s ease both;
}
.hero-h1-new {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.4px;
  color: var(--ink);
  margin-top: -10px;
  margin-bottom: 16px;
  text-align: center;
  padding-right: 80px;
  animation: fadeUp 0.55s 0.07s ease both;
}
.hero-h1-top {
  display: block;
  color: var(--ink);
  font-weight: 700;
  font-size: clamp(14px, 1.5vw, 20px);
}
.hero-h1-bottom {
  display: block;
  color: var(--wine);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 32px);
  margin-top: 10px;
}
.hero h1 em { font-style: italic; color: var(--wine); text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 2px; }

.hero-providers {
  margin-top: 48px;
  padding-right: 80px;
  animation: fadeUp 0.55s 0.35s ease both;
}
.hero-providers-label {
  font-size: 11px; font-weight: 600; color: var(--muted-2);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px;
  text-align: center;
}
.hero-providers-list { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.provider-chip {
  display: flex; align-items: center; gap: 12px;
  background: white; border: 1px solid var(--border);
  padding: 10px 20px; border-radius: 0;
  font-size: 14px; font-weight: 500; color: var(--ink);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  width: 200px;
  justify-content: center;
}
.provider-logo {
  width: 26px; height: 26px; object-fit: contain; border-radius: 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* STAT BAR */

/* PROBLEM SECTION */
/* PROBLEM — TWO PANELS */
.problem-wrap {
  background: #fdf8f6;
  min-height: 160px;
  display: flex; align-items: stretch;
  border-top: 1px solid var(--wine);
  border-bottom: 1px solid var(--wine);
  padding: 0 80px;
  gap: 0;
  box-shadow: 0 -18px 50px rgba(114,47,55,0.15), 0 18px 50px rgba(114,47,55,0.15);
  position: relative; z-index: 2;
  margin-top: 0;
}
.problem-left {
  width: 48%; flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transform: perspective(600px) rotateY(16deg);
  transform-origin: left center;
}
.problem-left-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.problem-left-overlay {
  position: absolute; inset: 0;
  background: rgba(114,47,55,0.12);
  pointer-events: none;
}
.problem-left-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, #fdf8f6 0%, rgba(253,248,246,0) 8%, rgba(253,248,246,0) 70%, rgba(253,248,246,0.55) 88%, #fdf8f6 100%),
    linear-gradient(to bottom, #fdf8f6 0%, transparent 12%, transparent 88%, #fdf8f6 100%);
  pointer-events: none;
}

.problem-right {
  flex: 1;
  background: #fdf8f6;
  display: flex; flex-direction: column; justify-content: center;
  padding: 32px 40px;
  text-align: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.problem-right-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  opacity: 0.32;
  z-index: 0;
}
.problem-right-fade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, #fdf8f6 0%, rgba(253,248,246,0.3) 25%, rgba(253,248,246,0.15) 70%, #fdf8f6 100%),
    linear-gradient(to bottom, #fdf8f6 0%, transparent 20%, transparent 80%, #fdf8f6 100%);
  z-index: 1;
  pointer-events: none;
}

/* RIBBON */

/* HOW IT WORKS — REDESIGN */
.hiw-wrap {
  padding: 96px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.hiw-bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}
.hiw-bg-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(245,240,240,0.88) 0%, rgba(245,240,240,0.94) 55%, rgba(255,255,255,1) 100%);
  pointer-events: none;
  z-index: 1;
}
.hiw-inner { max-width: 1080px; margin: 0 auto; position: relative; z-index: 1; }

.hiw-header { margin-bottom: 72px; }

/* SETUP */
.hiw-setup {
  display: grid; grid-template-columns: 5fr 7fr;
  gap: 0; align-items: stretch;
  background: var(--white);
  border: none;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow:
    0 2px 4px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.07),
    0 24px 48px rgba(0,0,0,0.06);
}
.hiw-setup-text {
  padding: 52px 48px;
}
.hiw-setup-img-wrap {
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border: none;
  border-left: 1px solid var(--border);
  display: flex; align-items: stretch;
}
.hiw-setup-img-wrap .hiw-screenshot {
  width: 100%; height: 100%; display: block; object-fit: cover; object-position: top left;
}
.hiw-tag {
  display: inline-block;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--wine);
  background: var(--wine-pale); border: 1px solid var(--border);
  padding: 4px 12px; border-radius: 0; margin-bottom: 16px;
}
.hiw-setup-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 2.5vw, 28px);
  color: var(--ink); margin-bottom: 14px; line-height: 1.2;
}
.hiw-setup-text p {
  font-size: 17px; color: var(--muted); line-height: 1.7; font-weight: 300; margin-bottom: 24px;
}

/* DIVIDER */
.hiw-divider {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 64px;
}
.hiw-divider-line { flex: 1; height: 1px; background: var(--border); }
.hiw-divider-label {
  font-size: 15px; font-weight: 600; color: rgba(114,47,55,0.75);
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap;
}

/* STEPS */
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step { display: flex; gap: 32px; }
.hiw-step-meta {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 4px; flex-shrink: 0;
}
.hiw-step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--wine); color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.hiw-step-connector {
  width: 2px; flex: 1; min-height: 48px;
  background: var(--border); margin: 8px 0;
}
.hiw-step-content {
  flex: 1; display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; align-items: center;
  padding-bottom: 64px;
}
.hiw-step-content--reverse { direction: rtl; }
.hiw-step-content--reverse > * { direction: ltr; }
.hiw-step--last .hiw-step-content { padding-bottom: 0; }

.hiw-step-text h3 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink); margin-bottom: 12px; line-height: 1.25;
}
.hiw-step-text p {
  font-size: 14px; color: var(--muted); line-height: 1.7; font-weight: 300;
}
.hiw-step-text strong { font-weight: 600; color: var(--ink); }

.hiw-step-img-wrap {
  border-radius: 0; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border: 1px solid var(--border);
}
.hiw-screenshot { width: 100%; display: block; height: auto; object-fit: unset; }

.hiw-step-imgs {
  display: flex; flex-direction: column; gap: 12px;
}
.hiw-screenshot--half { border-radius: 0; border: 1px solid var(--border); box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* SECTIONS */
.section-eyebrow {
  font-size: 11px; font-weight: 700; color: var(--wine);
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 12px;
}
.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15; letter-spacing: -0.3px; color: var(--ink);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 18px; font-weight: 300;
  color: var(--muted); line-height: 1.65;
}
.hiw-inner .section-eyebrow { text-shadow: 0 1px 3px rgba(255,255,255,0.9); }
.hiw-inner .section-title { font-weight: 800; text-shadow: 0 1px 6px rgba(255,255,255,1); }
.hiw-inner .section-sub { font-weight: 400; text-shadow: 0 1px 3px rgba(255,255,255,0.9); }

/* LOG TABLE */

/* FEATURES */
.features-wrap {
  background: var(--wine-deep);
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}
.features-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  pointer-events: none;
  z-index: 0;
}
.features-bg-overlay {
  position: absolute; inset: 0;
  background: rgba(74,26,26,0.97);
  pointer-events: none;
  z-index: 1;
}
.features-inner {
  max-width: 1080px; margin: 0 auto;
  position: relative; z-index: 2;
}
.features-inner .section-eyebrow { color: var(--wine-mid); }
.features-inner .section-title { color: white; margin-bottom: 52px; }

.feat-carousel {
  position: relative;
  perspective: 1400px;
  height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.feat-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35); border: 1px solid rgba(255,255,255,0.6);
  color: white; font-size: 20px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.15s; z-index: 10;
}
.feat-arrow--prev { left: 0; }
.feat-arrow--next { right: 0; }
.feat-arrow:hover { background: var(--wine); color: white; border-color: var(--wine); }

.feat-track-wrap { width: 100%; height: 100%; position: relative; }
.feat-track { width: 100%; height: 100%; position: relative; }

.feat-slide {
  position: absolute;
  width: 75%;
  left: 50%; top: 50%;
  display: grid; grid-template-columns: 1fr 1fr;
  background: white; border: 1px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.3);
  transition: all 0.6s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: pointer;
  transform-origin: center center;
}
.feat-slide[data-pos="0"] {
  transform: translate(-50%, -50%) translateZ(0px) rotateY(0deg) scale(1);
  z-index: 5; opacity: 1; filter: none;
}
.feat-slide[data-pos="1"] {
  transform: translate(10%, -58%) translateZ(-300px) rotateY(-38deg) scale(0.75);
  z-index: 3; opacity: 0.45; filter: blur(2.5px);
}
.feat-slide[data-pos="-1"] {
  transform: translate(-110%, -58%) translateZ(-300px) rotateY(38deg) scale(0.75);
  z-index: 3; opacity: 0.45; filter: blur(2.5px);
}
.feat-slide[data-pos="2"] {
  transform: translate(30%, -62%) translateZ(-500px) rotateY(-50deg) scale(0.55);
  z-index: 1; opacity: 0; filter: blur(5px); pointer-events: none; visibility: hidden;
}
.feat-slide[data-pos="-2"] {
  transform: translate(-130%, -62%) translateZ(-500px) rotateY(50deg) scale(0.55);
  z-index: 1; opacity: 0; filter: blur(5px); pointer-events: none; visibility: hidden;
}

.feat-slide-media {
  border-right: 1px solid var(--border);
  background: var(--wine-pale);
  display: flex; align-items: flex-start; justify-content: flex-start;
  overflow: hidden;
  height: 300px; flex-shrink: 0;
}
.feat-slide-img { width: 100%; height: 100%; object-fit: cover; object-position: top left; display: block; }
.feat-slide-img[alt="Προσαρμόσιμοι κανόνες ταξινόμησης"] {
  object-fit: contain;
  object-position: center;
}
.feat-slide-img[alt="Αυτόματη μετονομασία"] {
  object-fit: contain;
  object-position: center;
}
.feat-slide-text {
  padding: 36px 32px;
  display: flex; flex-direction: column; justify-content: center;
}
.feat-num {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  color: var(--muted-2); margin-bottom: 12px;
}
.feat-slide-text h4 {
  font-size: 22px; font-weight: 700; color: var(--ink);
  margin-bottom: 12px; letter-spacing: -0.3px;
}
.feat-slide-text p {
  font-size: 14px; color: var(--muted);
  line-height: 1.75; font-weight: 300;
}
.feat-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 28px;
}
.feat-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: background 0.2s;
}
.feat-dot.active { background: white; }

/* Security panel */

@keyframes blink { 0%,100%{opacity:1}50%{opacity:0.3} }

/* PRICING */

/* TESTIMONIALS */

/* CTA SECTION */
.cta-wrap {
  display: flex;
  min-height: 560px;
  overflow: hidden;
}
.cta-left {
  position: relative;
  width: 55%;
  overflow: hidden;
}
.cta-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 20%;
  display: block;
}
.cta-overlay {
  position: absolute; inset: 0;
  background: rgba(30,28,28,0.55);
  z-index: 1;
}
.cta-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, transparent 0%, #1e1214 100%);
  z-index: 2;
  pointer-events: none;
}
.cta-copy {
  position: relative; z-index: 2;
  padding: 72px 56px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}
.cta-right {
  width: 45%;
  background: #1e1214;
  display: flex; align-items: center; justify-content: center;
  padding: 56px 48px;
}
.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin: 16px 0 12px;
}
.cta-sub {
  font-size: clamp(14px, 1.3vw, 17px);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  line-height: 1.7;
}
.cta-form-box {
  width: 100%;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 36px 32px 32px;
}
.cta-form-box .form-label { color: rgba(255,255,255,0.55); }
.cta-form-box .form-required { color: #f87171; }
.cta-form-box .form-input,
.cta-form-box .form-textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
}
.cta-form-box .form-input:focus,
.cta-form-box .form-textarea:focus {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.35);
}
.cta-form-box .form-privacy-text { color: rgba(255,255,255,0.45); }
.cta-form-box .form-privacy-text a { color: rgba(255,255,255,0.7); }
.cta-form-box .form-submit { background: var(--wine); color: white; }
.cta-form-box .form-submit:hover { background: var(--wine-mid); }
.cta-form-box .form-success { color: white; }
.cta-form-box .form-success-msg { color: white; }
.cta-form-box .form-success-sub { color: rgba(255,255,255,0.6); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* CONTACT MODAL */
.form-field { margin-bottom: 18px; }
.form-label {
  display: block; font-size: 12px; font-weight: 600;
  color: var(--muted); text-transform: uppercase;
  letter-spacing: 0.07em; margin-bottom: 6px;
}
.form-required { color: var(--wine); margin-left: 2px; }
.form-input, .form-textarea {
  width: 100%; padding: 10px 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; color: var(--ink);
  outline: none; border-radius: 0;
  transition: border-color 0.15s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--wine);
  background: white;
}
.form-textarea { resize: vertical; min-height: 110px; }
.form-privacy {
  display: flex; align-items: flex-start; gap: 10px;
  margin: 12px 0;
}
.form-privacy input[type="checkbox"] {
  margin-top: 2px; accent-color: var(--wine); flex-shrink: 0;
}
.form-privacy-text {
  font-size: 12px; color: var(--muted); line-height: 1.6;
}
#f-demo + .form-privacy-text {
  font-size: 14px; color: rgba(255, 255, 255, 0.784);
}
.form-privacy-text a { color: var(--wine); text-decoration: none; }
.form-submit {
  width: 100%; padding: 13px;
  background: var(--wine); color: white;
  border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px; font-weight: 600;
  transition: background 0.15s;
}
.form-submit:hover { background: var(--wine-deep); }
.form-success {
  display: none; text-align: center; padding: 24px 0 8px;
}
.form-success-icon { font-size: 36px; margin-bottom: 12px; }
.form-success-msg {
  font-size: 16px; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.form-success-sub { font-size: 13px; color: var(--muted); }

/* CONTACT SECTION */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* WHY SFILING */
.why-wrap {
  position: relative;
  padding: 96px 48px;
  background: var(--white);
  border-top: 1px solid var(--border);
  overflow: hidden;
}
.why-logo-bg {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 90%;
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
}
.why-heading {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 80px;
  position: relative;
  overflow: visible;
}
.why-heading-pre {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 3.5vw, 50px);
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.5px;
  position: relative;
  z-index: 2;
}
.why-heading-q {
  font-family: 'Georgia', serif;
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 900;
  color: var(--wine);
  font-style: italic;
  line-height: 1;
  position: absolute;
  left: 490px;
  top: -145px;
  opacity: 0.3;
  z-index: 0;
  transform: rotate(12deg);
  pointer-events: none;
}

/* English only: the wordmark "Why Sfiling" is far narrower than the Greek
   "Γιατί με το", so the fixed left: 490px leaves a huge gap. For EN we let the
   ? flow right after the wordmark. Greek (lang="el") stays exactly as above.
   Only needed >1400px, where the absolute left:490px rule applies; at <=1400px
   the ? is already inline (see media query below) and fine in both languages. */
@media (min-width: 1401px) {
  html[lang="en"] .why-heading-q {
    position: relative;
    left: auto;
    top: -0.08em;        /* vertical position of the ? (more negative = higher, less = lower) */
    align-self: center;
    width: 0;
    margin-left: -75px;  /* horizontal position of the ? (more negative = more left) */
    line-height: 0;
    overflow: visible;
    white-space: nowrap;
    transform-origin: left center;
  }
}

/* English only: nudge the whole "Why choose Sfiling?" heading up a little.
   Greek (lang="el") is unaffected. More negative = higher. */
html[lang="en"] .why-heading {
  margin-top: -30px;
}

/* Greek: raise the whole heading a little too (knob: more negative = higher). */
html[lang="el"] .why-heading {
  margin-top: -30px;
}

/* How-it-works: enlarge all step screenshots a touch (both languages, desktop).
   Scales the frames in place without moving neighbours (knob: scale value). */
@media (min-width: 769px) {
  .hiw-step-img-wrap,
  .hiw-step-imgs {
    transform: scale(1.1);
    transform-origin: center;
  }
}

/* Greek only (wide desktop): the ? / ; used to be pinned at left:490px for the
   old short text "Γιατί με το". The new wording is wider, so let it flow right
   after the wordmark here too, floating high like the original decorative mark.
   Knobs: top (more negative = higher), margin-left (more negative = more left). */
@media (min-width: 1401px) {
  html[lang="el"] .why-heading-q {
    position: relative;
    left: auto;
    top: -0.16em;
    align-self: center;
    width: 0;
    margin-left: -40px;
    line-height: 0;
    overflow: visible;
    white-space: nowrap;
    transform-origin: left center;
  }
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* WHY GRID */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
}
.why-card {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card:last-child { border-right: none; }
.why-card-icon {
  color: var(--wine);
  margin-bottom: 20px;
}
.why-card h4 {
  font-family: 'Inter', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.4;
  letter-spacing: -0.2px;
}
.why-card p {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; font-weight: 300;
}

/* FOOTER */
footer {
  background: #fdf3f4;
  padding: 18px 48px;
  box-shadow: 0 -6px 24px rgba(114,47,55,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px; font-size: 12.5px;
}
.footer-brand { display: flex; align-items: center; gap: 9px; font-weight: 500; }
.footer-logo { height: 48px; width: auto; }
.footer-links { display: flex; gap: 24px; align-items: center; }
.footer-links a { color: var(--wine); text-decoration: none; transition: opacity 0.15s; }
.footer-links a:hover { opacity: 0.7; }
.footer-sep { color: var(--wine); font-size: 18px; }
.footer-right { display: flex; align-items: center; gap: 16px; color: var(--wine); }

/* RESPONSIVE */
/* Problem left image with fade */
.problem-divider {
  width: 40px; height: 2px;
  background: var(--wine);
  margin: 20px auto;
  position: relative; z-index: 2;
  opacity: 1;
  flex-shrink: 0;
}

/* Problem image RIGHT with fade left */
.problem-ribbon-line1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 500;
  color: var(--muted);
  line-height: 1.6;
  text-align: center;
  position: relative; z-index: 2;
}
.problem-ribbon-line2 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(20px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--wine);
  line-height: 1.5;
  text-align: center;
  position: relative; z-index: 2;
}

.problem-accent-bold {
  color: var(--wine-mid);
  font-weight: 700;
}

/* ============================================================
   PAGE REVEAL + ENTRANCE ANIMATIONS
   (moved from inline <style> in <head>)
   ============================================================ */
body { visibility: hidden; }
body.loaded { visibility: visible; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-36px); }
  to   { opacity: 1; transform: translateY(0); }
}

body.loaded nav             { animation: slideDown 0.65s cubic-bezier(0.22,1,0.36,1) 0s both; }
body.loaded .hero-logo      { animation: slideDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.15s both; }
body.loaded .hero-h1-new    { animation: slideDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.3s both; }
body.loaded .hero-providers { animation: slideDown 0.7s cubic-bezier(0.22,1,0.36,1) 0.45s both; }

/* ============================================================
   CLASSES EXTRACTED FROM INLINE STYLES
   ============================================================ */

/* NAV */
.nav-logo { display: flex; align-items: center; }
.nav-logo-img { height: 32px; width: auto; flex-shrink: 0; }
.nav-lang {
  display: flex; align-items: center; gap: 8px; margin-left: 16px;
}
.nav-lang-btn {
  background: none; border: none; cursor: pointer;
  font-size: 13px; font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  color: var(--muted);
  transition: color 0.15s;
}
.nav-lang-btn--active { color: var(--ink); }
.nav-lang-sep { color: var(--wine); font-weight: 400; font-size: 14px; }

/* PROBLEM ribbon inline logo */
.problem-ribbon-logo {
  height: 58px; width: auto;
  vertical-align: middle;
  margin: 0 4px;
}

/* HIW header overrides */
.hiw-eyebrow { font-size: 17px; letter-spacing: 0.15em; }
.hiw-sub { font-weight: 500; }
.accent-wine-bold { color: var(--wine); font-weight: 600; }

/* Brand name emphasis */
.brand-name { font-weight: 700; color: var(--ink); }

/* HIW step paragraphs */
.hiw-step-p { font-size: 17px; }
.hiw-step-p strong { font-weight: 700; }

/* FEATURES */
.features-eyebrow {
  color: rgba(255,255,255,0.6);
  font-size: 17px;
  letter-spacing: 0.15em;
}
.feat-slide-p { font-size: 16px; }

/* CTA */
.cta-eyebrow {
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  letter-spacing: 0.15em;
}
.cta-sub { font-size: 20px; }

/* FORM error messages + states */
.form-err {
  display: none;
  color: #c0392b;
  font-size: 12px;
  margin-top: 4px;
}
.form-err--privacy { margin-top: 0; margin-bottom: 8px; }
.form-err--visible { display: block; }
.form-input--error { border-color: #c0392b !important; }

/* Form show/hide states (replaces inline display toggles) */
.cta-form-box.is-hidden { display: none; }
.form-success.is-visible { display: block; }

/* WHY SFILING */
.why-heading-logo {
  height: 90px;
  width: auto;
  vertical-align: middle;
}
.why-card-glyph {
  font-size: 22px;
  font-family: 'Georgia', serif;
  color: var(--wine);
}

/* ============================================================
   MOBILE NAV: HAMBURGER + DRAWER
   ============================================================ */

/* Hide mobile-only logo on desktop */
.nav-logo--mobile { display: none; }

/* Hamburger button (hidden on desktop) */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--wine);
  transition: transform 0.25s, opacity 0.25s;
  border-radius: 1px;
}

/* Drawer (hidden on desktop) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 280px;
  max-width: 80vw;
  background: var(--white);
  box-shadow: -8px 0 32px rgba(114,47,55,0.15);
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
  z-index: 200;
  padding: 80px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-drawer.is-open { transform: translateX(0); }

.mobile-drawer-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  color: var(--wine);
  cursor: pointer;
  line-height: 1;
  padding: 4px 10px;
}

.mobile-drawer-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border-2);
  transition: color 0.15s;
}
.mobile-drawer-link:hover { color: var(--wine); }

.mobile-drawer-lang {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-2);
}

.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(24,16,15,0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  z-index: 150;
}
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.drawer-open { overflow: hidden; }

/* ============================================================
   TABLET + MOBILE BREAKPOINT (≤ 1024px)
   --------------------------------------------------------------
   PHILOSOPHY: On narrow screens we strip ALL decorative imagery
   (hero backdrop, problem panels, HIW screenshots, features gifs,
   CTA team photo, why-section background logo). What remains is
   pure information — titles, descriptions — stacked as a clean
   centered list. Features go from dark wine to plain white.
   ============================================================ */
@media (max-width: 1400px) {

  /* ---- NAV: reduce side padding ---- */
  nav { padding: 0 32px; }
  .nav-right { right: 32px; }

  /* ============================================================
     HERO: hide decorative image, center everything
     ============================================================ */
  .hero {
    padding: 100px 32px 60px;
    min-height: auto;
    display: block;
  }
  .hero-img-panel-shadow {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0.12;
    filter: none !important;
    pointer-events: none;
    z-index: 0;
  }
  .hero-img-panel {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    clip-path: none;
  }
  .hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
  }
  .hero-wine-accent { display: none !important; }
  .hero-layout { grid-template-columns: 1fr; width: 100%; margin: 0 auto; }
  .hero-inner {
    align-items: center;
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
    padding-left: 0;
  }
  .hero-logo--main {
    margin-top: 0;
    align-items: center;
    padding-left: 0;
  }
  .hero-logo--main .hero-logo-img { height: 140px; }
  .hero-h1-new {
    padding-right: 0;
    text-align: center;
  }
  .hero-providers { padding-right: 0; }
  .hero-providers-list { align-items: center; }

  /* ============================================================
     PROBLEM SECTION: hide both image panels, keep ribbon text
     ============================================================ */
  .problem-wrap {
    display: block;
    padding: 56px 24px;
    min-height: auto;
    background: #fdf8f6;
    position: relative;
    overflow: hidden;
  }
  .problem-left { display: none; }
  .problem-right {
    width: 100%;
    padding: 0;
    background: transparent;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: static;
    z-index: 2;
  }
  .problem-right-bg {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    z-index: 0;
    pointer-events: none;
  }
  .problem-right-fade { display: none; }
  .problem-ribbon-line1,
  .problem-ribbon-line2 {
    font-size: clamp(17px, 2.6vw, 22px) !important;
    position: relative;
    z-index: 2;
  }
  .problem-divider { position: relative; z-index: 2; }
  .problem-ribbon-logo { height: 42px; }

  /* ============================================================
     HOW IT WORKS: hide background + ALL screenshots
     ============================================================ */
  .hiw-wrap {
    padding: 72px 32px;
    background: var(--white);
  }
  .hiw-bg-img,
  .hiw-bg-overlay { display: none; }
  .hiw-inner { max-width: 720px; margin: 0 auto; }
  .hiw-header { text-align: center; }

  /* Show the setup screenshot, stack text on top, image centered below */
  .hiw-setup {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
  }
  .hiw-setup-img-wrap {
    display: block;
    width: 100%;
    max-width: none;
    margin: -16px auto 0;
    overflow: hidden;
  }
  .hiw-setup-img-wrap .hiw-screenshot {
    width: 100%;
    min-width: 950px;
    height: auto;
    display: block;
  }
  .hiw-setup-text { text-align: center; max-width: none; }

  /* Show step screenshots centered below each step's title + description */
  .hiw-steps { gap: 32px; }
  .hiw-step {
    display: block;
    text-align: center;
  }
  .hiw-step-meta {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 12px;
  }
  .hiw-step-connector { display: none; }
  .hiw-step-num {
    width: 48px;
    height: 48px;
    font-size: 16px;
    background: rgba(114, 47, 55, 0.9);
  }
  .hiw-step-content,
  .hiw-step-content--reverse {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
  /* Step 02 has text before image in DOM, so use normal column to put text on top */
  .hiw-step-content--reverse {
    flex-direction: column;
  }
  .hiw-step-img-wrap,
  .hiw-step-imgs {
    display: block;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }
  .hiw-step-imgs {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .hiw-step-img-wrap .hiw-screenshot,
  .hiw-step-imgs .hiw-screenshot {
    width: 100%;
    height: auto;
    display: block;
  }
  .hiw-step-text { text-align: center; }

  /* ============================================================
     FEATURES: dark → white, hide gifs, plain centered list
     ============================================================ */
  .features-wrap {
    background: var(--white);
    padding: 72px 32px;
    border-top: 1px solid var(--border);
  }
  .features-bg-img,
  .features-bg-overlay { display: none; }
  .features-inner { max-width: 720px; margin: 0 auto; text-align: center; }
  /* Text color overrides for white background */
  .features-inner .section-eyebrow { color: var(--wine); }
  .features-inner .section-title { color: var(--ink); }
  .features-eyebrow { color: var(--wine) !important; }

  /* Carousel → plain stacked list */
  .feat-carousel {
    height: auto;
    perspective: none;
    display: block;
    padding: 0;
  }
  .feat-arrow,
  .feat-dots { display: none; }
  .feat-track-wrap { height: auto; }
  .feat-track {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .feat-slide,
  .feat-slide[data-pos="0"],
  .feat-slide[data-pos="1"],
  .feat-slide[data-pos="-1"],
  .feat-slide[data-pos="2"],
  .feat-slide[data-pos="-2"] {
    position: static;
    display: block;
    width: 100%;
    transform: none;
    opacity: 1;
    filter: none;
    visibility: visible;
    pointer-events: auto;
    z-index: auto;
    cursor: default;
    background: transparent;
    border: none;
    box-shadow: none;
    text-align: center;
  }
  .feat-slide-media { display: none; }
  .feat-slide-text {
    padding: 0;
    text-align: center;
    align-items: center;
  }
  .feat-num { color: var(--wine); }
  .feat-slide-text h4 { color: var(--ink); }
  .feat-slide-text p { color: var(--muted); }

  /* ============================================================
     CTA: hide team photo panel, keep only the form
     ============================================================ */
  .cta-wrap {
    display: block;
    background: var(--wine-pale);
  }
  .cta-left {
    display: block;
    width: 100%;
    padding: 64px 24px 0;
    text-align: center;
    background: transparent;
    position: relative;
    min-height: 0;
    overflow: hidden;
  }
  .cta-bg-img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    opacity: 0.35;
    z-index: 0;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 0%, black 40%, transparent 100%);
  }
  .cta-overlay { display: none; }
  .cta-left::after { display: none; }
  .cta-copy {
    position: relative;
    z-index: 2;
    max-width: 640px;
    margin: 0 auto;
    padding: 0;
    color: var(--ink);
    height: auto;
  }
  .cta-eyebrow { color: var(--wine) !important; }
  .cta-title { color: var(--ink) !important; }
  .cta-sub { color: var(--muted) !important; }
  .cta-right {
    width: 100%;
    padding: 32px 24px 64px;
    display: flex;
    justify-content: center;
    background: transparent;
  }
  .cta-form-box {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
    background: #1e1214;
  }

  /* ============================================================
     WHY SFILING: hide decorative background logo, keep cards
     ============================================================ */
  .why-wrap { padding: 72px 32px; position: relative; overflow: hidden; }
  .why-logo-bg {
    display: block;
    position: absolute;
    right: -75%;
    left: auto;
    top: auto;
    bottom: -30%;
    transform: none;
    width: 170%;
    max-width: none;
    opacity: 0.06;
    pointer-events: none;
    user-select: none;
    z-index: 0;
  }
  .why-inner { max-width: 720px; margin: 0 auto; position: relative; z-index: 1; }
  .why-heading {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    text-align: center;
    position: relative;
    overflow: visible;
    flex-wrap: nowrap;
    margin-bottom: 48px;
  }
  .why-heading-q {
    display: inline-block;
    position: static;
    font-family: 'Georgia', serif;
    font-size: clamp(90px, 16vw, 160px);
    font-weight: 900;
    color: var(--wine);
    font-style: italic;
    line-height: 1;
    opacity: 0.3;
    transform: rotate(12deg);
    pointer-events: none;
    margin: 0 0 0 -8px;
    align-self: center;
  }

  /* Why grid: 4 cards → 2x2 */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    border-left: none;
  }
  .why-card { border-bottom: 1px solid var(--border); }
  .why-card:nth-child(2n) { border-right: none; }
  .why-card:nth-last-child(-n+2) { border-bottom: none; }

  /* ---- Footer ---- */
  footer { padding: 16px 32px; }
}

/* ============================================================
   MOBILE BREAKPOINT (≤ 768px)
   Adds: hamburger menu, smaller fonts, tighter paddings,
   single-column why grid, stacked footer.
   (All image-hiding and centering already done at 1024px.)
   ============================================================ */
@media (max-width: 768px) {

  /* ---- NAV: keep desktop layout, just tighten spacing ---- */
  nav {
    padding: 0 12px;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px;
  }
  .nav-center-group { gap: 2px; position: static; align-items: center; }
  .nav-right {
    position: static !important;
    right: auto !important;
    gap: 6px;
    flex-shrink: 0;
    align-items: center;
  }
  .nav-link-side {
    font-size: 11px;
    padding: 0 4px;
    white-space: nowrap;
    line-height: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
  }
  .nav-logo img { width: 22px; height: 22px; }
  .nav-logo { margin: 0 2px; }
  .nav-cta {
    font-size: 11px;
    padding: 0 10px;
    white-space: nowrap;
    line-height: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
  }
  .nav-right a:not(.nav-cta) {
    font-size: 11px;
    padding: 0 4px;
    line-height: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
  }
  .nav-lang-btn {
    font-size: 11px;
    line-height: 22px;
    height: 22px;
    padding: 0 4px;
    display: inline-flex;
    align-items: center;
  }
  .nav-lang-sep { font-size: 11px; }

  /* ---- HERO: tighter padding + smaller logo ---- */
  .hero { padding: 100px 20px 60px; }
  .hero-logo--main .hero-logo-img { height: 110px; }
  .hero-h1-new { margin-top: 8px; }
  .hero-h1-top { font-size: 16px; }
  .hero-h1-bottom { font-size: 22px; }
  .hero-providers { margin-top: 32px; }

  /* ---- PROBLEM: smaller text ---- */
  .problem-wrap { padding: 48px 20px; }
  .problem-ribbon-line1,
  .problem-ribbon-line2 {
    font-size: clamp(15px, 4.5vw, 19px) !important;
  }
  .problem-ribbon-logo { height: 36px; }

  /* ---- HOW IT WORKS: smaller fonts + tighter paddings ---- */
  .hiw-wrap { padding: 56px 20px; }
  .hiw-eyebrow { font-size: 13px; }
  .section-title { font-size: clamp(22px, 6vw, 30px); }
  .section-sub, .hiw-sub { font-size: 15px; }
  .hiw-steps { gap: 28px; }
  .hiw-step-num { font-size: 11px; width: 28px; height: 28px; }
  .hiw-step-p { font-size: 15px; }
  .hiw-divider { margin: 28px 0; }
  .hiw-divider-label { font-size: 13px; }

  /* ---- FEATURES: tighter paddings ---- */
  .features-wrap { padding: 56px 20px; }
  .features-eyebrow { font-size: 13px; }
  .feat-track { gap: 32px; }
  .feat-slide-text h4 { font-size: 18px; }
  .feat-slide-p { font-size: 14px; }

  /* ---- CTA: tighter paddings, keep card style ---- */
  .cta-left { padding: 48px 20px 0; }
  .cta-right { padding: 24px 20px 48px; }
  .cta-form-box { padding: 24px; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* ---- WHY SFILING: single column ---- */
  .why-wrap { padding: 56px 20px; }
  .why-heading-pre { font-size: 18px; }
  .why-heading-logo { height: 56px; }
  .why-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }
  .why-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 28px 16px;
  }
  .why-card:last-child { border-bottom: none; }

  /* ---- FOOTER: stack ---- */
  footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 24px 20px;
    gap: 14px;
  }
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  .footer-logo { height: 36px; }

  /* ---- TAP TARGETS ---- */
  .nav-cta,
  .form-submit {
    min-height: 44px;
  }

  /* ---- Disable hover effects on touch ---- */
  .why-card:hover,
  .provider-chip:hover { transform: none; }
}
