/* =====================================================
   ARTESFOTO — Hauptstylesheet
   passfoto-griechischer-pass.de
   ===================================================== */

/* --- Google Fonts werden im HTML eingebunden --- */

:root {
  /* Griechisch-blaue Farbpalette */
  --blue-deep:   #1a4b8c;
  --blue-mid:    #2563b0;
  --blue-light:  #4a90d9;
  --blue-pale:   #dbeeff;
  --blue-bg:     #eef5fd;
  --blue-bg2:    #f4f8fd;
  --sky:         #c9e4f8;
  --sky-dark:    #a8cff0;
  --white:       #ffffff;
  --off-white:   #f8fbff;

  --text:        #0f1f35;
  --text-2:      #2d4a6a;
  --text-3:      #5a7a9a;
  --text-4:      #8aabcc;

  --gold:        #c9a84c;
  --gold-light:  #e2c47a;
  --gold-pale:   #fdf5e4;

  --green:       #2d7a5a;
  --green-light: #3db884;

  --border:      #c8dff5;
  --border-2:    #e2eef9;

  --shadow-sm:   0 2px 12px rgba(26,75,140,0.08);
  --shadow-md:   0 4px 28px rgba(26,75,140,0.12);
  --shadow-lg:   0 8px 48px rgba(26,75,140,0.16);

  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --trans:        0.22s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
@media (min-width: 1400px) { html { font-size: 18px; } }
@media (min-width: 1800px) { html { font-size: 19px; } }
body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== LANGUAGE BAR ===== */
.lang-bar {
  background: var(--blue-deep);
  padding: 0.4rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  align-items: center;
}
.lang-btn {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  background: none;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 4px 12px;
  cursor: pointer;
  text-decoration: none;
  transition: var(--trans);
  letter-spacing: 0.03em;
}
.lang-btn.active,
.lang-btn:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
}

/* ===== HEADER / NAV ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-2);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
nav {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 1rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--blue-deep);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.logo span { color: var(--blue-light); }

.nav-links {
  display: flex;
  gap: 0;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-2);
  text-decoration: none;
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--trans);
  white-space: nowrap;
}
.nav-links a:hover { color: var(--blue-deep); background: var(--blue-bg); }
.nav-cta {
  background: var(--blue-deep) !important;
  color: #fff !important;
  font-weight: 600 !important;
  border-radius: 10px !important;
  padding: 9px 18px !important;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--blue-mid) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-deep);
  border-radius: 2px;
}
.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border-2);
  padding: 1rem 1.5rem 1.5rem;
  flex-direction: column;
  gap: 0;
}
.mobile-menu a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 15px;
  padding: 13px 0;
  border-bottom: 1px solid var(--border-2);
  display: block;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu .m-cta {
  margin-top: 0.75rem;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  border-bottom: none;
}
.mobile-menu .m-wa {
  margin-top: 0.5rem;
  background: #25D366;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  border-bottom: none;
}
.mobile-menu.open { display: flex; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--blue-bg2) 0%, var(--white) 60%, var(--blue-pale) 100%);
  padding: 6rem 2rem 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -80px;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,75,140,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(26,75,140,0.08);
  border: 1px solid rgba(26,75,140,0.18);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  font-size: 12px;
  color: var(--blue-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 58px);
  font-weight: 900;
  color: var(--blue-deep);
  line-height: 1.12;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: normal; color: var(--blue-light); }
.hero-sub {
  font-size: 19px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 480px;
}
.hero-sub strong { color: var(--blue-deep); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-deep); color: #fff;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 600;
  padding: 14px 26px; border-radius: 12px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--trans); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(26,75,140,0.25);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26,75,140,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 8px;
  background: #25D366; color: #fff;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 600;
  padding: 14px 26px; border-radius: 12px;
  text-decoration: none; transition: var(--trans); white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.25);
}
.btn-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
}

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--blue-deep);
  font-family: var(--font-body); font-size: 15px; font-weight: 500;
  padding: 13px 22px; border-radius: 12px;
  text-decoration: none; border: 1.5px solid var(--border);
  transition: var(--trans); white-space: nowrap;
}
.btn-outline:hover { background: var(--blue-bg); border-color: var(--sky-dark); }

.btn-full { width: 100%; text-align: center; justify-content: center; font-size: 15.5px; padding: 15px; }

/* ===== HERO TRUST ITEMS ===== */
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.25rem; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 7px; color: var(--text-3); font-size: 15px; }
.trust-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; }

/* ===== HERO PHOTO ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Outer wrapper — normal block flow, no relative/absolute tricks */
.hero-photo-wrap {
  width: 100%;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Top badge row — sits ABOVE the photo as normal block */
.badge-top-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 10px;
}

.badge-floating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  color: var(--blue-deep);
  font-weight: 700;
  font-size: 12px;
  border-radius: 100px;
  padding: 7px 14px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  border: 1px solid var(--border-2);
}

/* The photo card itself — clean, no overflow issues */
.hero-photo-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 5px rgba(74,144,217,0.1);
  line-height: 0;
  width: 100%;
}
.hero-photo-card img {
  width: 100%;
  display: block;
  height: auto;
}

/* Bottom badge — sits BELOW the photo as normal block */
.badge-floating-2 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--blue-deep);
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  border-radius: 100px;
  padding: 7px 14px;
  box-shadow: var(--shadow-md);
  white-space: nowrap;
  margin-top: 10px;
  align-self: flex-start;
}

/* Spec pills row — below badge, also normal block */
.photo-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.spec-pill {
  background: var(--blue-pale);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 11.5px;
  color: var(--blue-deep);
  font-weight: 600;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  background: var(--blue-deep);
  padding: 1.1rem 1.5rem;
}
.trust-strip-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
  justify-content: center;
}
.trust-stat { display: flex; align-items: center; gap: 9px; font-size: 15.5px; color: rgba(255,255,255,0.65); }
.trust-stat strong { font-size: 20px; font-weight: 700; color: #fff; font-family: var(--font-display); }
.trust-sep { width: 1px; height: 24px; background: rgba(255,255,255,0.2); }

/* ===== SECTION COMMON ===== */
section { padding: 6rem 2rem; }
.section-inner { max-width: 1280px; margin: 0 auto; }
.section-label {
  font-size: 12.5px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-light); margin-bottom: 0.65rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 700; color: var(--blue-deep);
  line-height: 1.2; margin-bottom: 1rem;
}
.section-sub {
  font-size: 18px; color: var(--text-2);
  line-height: 1.65; max-width: 560px; font-weight: 300;
}

/* ===== WHY SECTION ===== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.why-story {
  font-size: 17px; line-height: 1.75;
  color: var(--text-2); margin-bottom: 1.25rem;
}
.why-story strong { color: var(--blue-deep); font-weight: 600; }
.why-highlight {
  background: var(--blue-bg);
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue-deep);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-top: 0.5rem;
}
.why-highlight .wh-title {
  font-family: var(--font-display);
  font-size: 19px; font-weight: 700;
  color: var(--blue-deep); margin-bottom: 0.5rem;
}
.why-highlight p { font-size: 16px; color: var(--text-2); line-height: 1.65; }
.why-features { display: flex; flex-direction: column; gap: 0.9rem; }

.feature-card {
  background: var(--off-white);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.3rem;
  display: flex; gap: 0.9rem; align-items: flex-start;
  transition: var(--trans);
  box-shadow: var(--shadow-sm);
}
.feature-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
  background: var(--white);
}
.feature-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 19px;
}
.feature-text h4 { font-size: 16px; font-weight: 600; color: var(--blue-deep); margin-bottom: 3px; }
.feature-text p { font-size: 14.5px; color: var(--text-3); line-height: 1.5; }

/* ===== REQUIREMENTS ===== */
.req-section { background: var(--blue-bg2); }
.req-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  margin-top: 3rem;
  align-items: center;
}
.req-list { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.req-item {
  display: flex; align-items: flex-start; gap: 1.25rem;
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--radius-sm); padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.req-num {
  font-family: var(--font-display); font-size: 26px; font-weight: 700;
  color: var(--blue-deep); line-height: 1.1; min-width: 80px;
  white-space: nowrap; flex-shrink: 0;
}
.req-num small {
  display: block; font-family: var(--font-body);
  font-size: 10px; color: var(--text-4); font-weight: 400; margin-top: 2px;
}
.req-desc h4 { font-size: 16px; font-weight: 600; color: var(--blue-deep); margin-bottom: 5px; padding-top: 2px; }
.req-desc p { font-size: 15px; color: var(--text-3); line-height: 1.5; }
.req-note {
  margin-top: 1.25rem;
  background: var(--blue-pale);
  border: 1px solid var(--sky-dark);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  font-size: 13px; color: var(--blue-mid); line-height: 1.6;
}

/* Infographic photo -->  */
.photo-infographic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.infographic-wrap {
  position: relative;
  display: inline-block;
}
.infographic-img {
  width: 200px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  display: block;
}
.infographic-label {
  text-align: center;
  margin-top: 10px;
  font-size: 11px;
  color: var(--text-4);
  font-family: var(--font-body);
}

/* ===== PRICE ===== */
.price-section { background: var(--white); }
.price-card {
  max-width: 560px; margin: 2.5rem auto 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.price-header { background: var(--blue-deep); padding: 2rem; text-align: center; }
.price-amount {
  font-family: var(--font-display); font-size: 78px;
  font-weight: 900; color: #fff; line-height: 1;
}
.price-amount small {
  font-size: 22px; font-weight: 300;
  color: rgba(255,255,255,0.65); vertical-align: super;
}
.price-label { color: rgba(255,255,255,0.55); font-size: 16px; margin-top: 6px; }
.price-features { padding: 1.75rem 2rem; display: flex; flex-direction: column; gap: 0.7rem; }
.price-feat { display: flex; align-items: flex-start; gap: 10px; font-size: 17px; color: var(--text); line-height: 1.5; }
.price-feat-icon { color: var(--green-light); font-size: 17px; flex-shrink: 0; margin-top: 2px; }
.price-ctas { padding: 0 2rem 2rem; display: flex; flex-direction: column; gap: 0.75rem; }

/* ===== REVIEWS ===== */
.reviews-section { background: var(--blue-bg2); }
.stars { color: #f59e0b; font-size: 19px; letter-spacing: 1px; margin-bottom: 0.5rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.1rem; margin-top: 2.5rem;
}
.review-card {
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 1.4rem;
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.review-header { display: flex; align-items: center; gap: 10px; margin-bottom: 0.7rem; }
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.av-blue   { background: #dbeafe; color: #1d4ed8; }
.av-teal   { background: #ccfbf1; color: #0f766e; }
.av-indigo { background: #e0e7ff; color: #4338ca; }
.av-sky    { background: #e0f2fe; color: #0369a1; }
.review-name { font-weight: 600; font-size: 15.5px; color: var(--blue-deep); }
.review-date { font-size: 12px; color: var(--text-4); }
.review-text { font-size: 15px; color: var(--text-2); line-height: 1.6; }
.google-badge {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; margin-top: 2rem; font-size: 13px;
  color: var(--text-3); flex-wrap: wrap;
}

/* ===== FAQ ===== */
.faq-section { background: var(--white); }
.faq-grid { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.6rem; max-width: 740px; }
.faq-item {
  background: var(--off-white); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-body); font-size: 16.5px; font-weight: 500;
  color: var(--blue-deep); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  transition: var(--trans);
}
.faq-question:hover { background: var(--blue-bg); }
.faq-question.open { background: var(--blue-deep); color: #fff; }
.faq-arrow { font-size: 16px; flex-shrink: 0; transition: transform 0.22s; }
.faq-question.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s;
  padding: 0 1.4rem;
  font-size: 14px; color: var(--text-2); line-height: 1.7;
}
.faq-answer.open { max-height: 300px; padding: 1rem 1.4rem 1.2rem; }

/* ===== CONTACT / MAP ===== */
.contact-section { background: var(--blue-bg2); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; margin-top: 2.5rem; align-items: start;
}
.map-embed {
  border-radius: var(--radius-md); overflow: hidden;
  box-shadow: var(--shadow-md); height: 320px;
  border: 1px solid var(--border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }
.contact-info { display: flex; flex-direction: column; gap: 0.9rem; }
.contact-block {
  background: var(--white); border: 1px solid var(--border-2);
  border-radius: var(--radius-md); padding: 1.25rem 1.4rem;
  box-shadow: var(--shadow-sm);
}
.contact-block h4 {
  font-size: 11px; font-weight: 700; color: var(--text-4);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.7rem;
}
.contact-link {
  display: flex; align-items: center; gap: 11px;
  text-decoration: none; color: var(--blue-deep);
  font-size: 15.5px; font-weight: 500;
  padding: 10px 13px; border-radius: 10px;
  border: 1px solid var(--border-2); transition: var(--trans); margin-bottom: 7px;
}
.contact-link:last-child { margin-bottom: 0; }
.contact-link:hover { border-color: var(--blue-light); background: var(--blue-bg); }
.contact-link .cl-icon { font-size: 20px; flex-shrink: 0; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; padding: 6px 0;
  border-bottom: 1px solid var(--border-2); color: var(--text-2);
}
.hours-row:last-child { border-bottom: none; }
.hours-row strong { color: var(--text); }

/* ===== FOOTER ===== */
footer { background: var(--blue-deep); padding: 2.25rem 1.5rem; }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.footer-logo {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 700; color: #fff; text-decoration: none;
}
.footer-logo span { color: var(--sky); }
.footer-copy { font-size: 14px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.footer-links a {
  color: rgba(255,255,255,0.45); text-decoration: none;
  font-size: 15px; transition: var(--trans);
}
.footer-links a:hover { color: #fff; }

/* ===== STICKY CTA BAR (mobile) ===== */
.sticky-cta-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  background: var(--white); border-top: 1px solid var(--border-2);
  padding: 0.7rem 1rem; gap: 0.6rem;
  box-shadow: 0 -4px 20px rgba(26,75,140,0.12);
}
.sticky-btn {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 7px; padding: 13px; border-radius: 10px;
  font-family: var(--font-body); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: var(--trans);
}
.sticky-btn-call { background: var(--blue-deep); color: #fff; }
.sticky-btn-call:hover { background: var(--blue-mid); }
.sticky-btn-wa { background: #25D366; color: #fff; }
.sticky-btn-wa:hover { background: #1ebe5d; }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim  { animation: fadeUp 0.5s ease both; }
.d1 { animation-delay: .08s; }
.d2 { animation-delay: .18s; }
.d3 { animation-delay: .30s; }
.d4 { animation-delay: .44s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner,
  .why-grid,
  .req-grid,
  .contact-grid { grid-template-columns: 1fr; }

  .hero-visual { order: -1; }
  .hero-photo-wrap { max-width: 300px; margin: 0 auto; }
}

@media (max-width: 700px) {
  section { padding: 3.5rem 1rem; }
  .hero { padding: 2.5rem 1rem 3rem; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15.5px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .trust-strip-inner { flex-direction: column; gap: 0.8rem; align-items: flex-start; }
  .trust-sep { display: none; }
  .sticky-cta-bar { display: flex; }
  body { padding-bottom: 68px; }
  .hero-ctas,
  .price-ctas { flex-direction: column; }
  .btn-primary,
  .btn-wa,
  .btn-outline { justify-content: center; text-align: center; }
  .hero-trust { gap: 1rem; }
  .badge-floating-2 { font-size: 11px; padding: 6px 11px; }
  .photo-spec-row { gap: 5px; }
  .spec-pill { font-size: 11px; padding: 4px 10px; }
}

/* ===== LARGE SCREEN EXTRAS ===== */
@media (min-width: 1400px) {
  .hero-inner { gap: 5rem; }
  .why-grid   { gap: 4rem; }
  .req-grid   { gap: 5rem; }
  .hero { padding: 7rem 2.5rem 6rem; }
  section { padding: 7rem 2.5rem; }
}

/* ===== MOBILE FONT SIZE RESET ===== */
@media (max-width: 700px) {
  html { font-size: 16px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px !important; }
  .section-sub { font-size: 15.5px !important; }
  .why-story { font-size: 15px !important; }
  .price-feat { font-size: 14px !important; }
  .trust-stat { font-size: 13px !important; }
  .trust-stat strong { font-size: 17px !important; }
  .contact-link { font-size: 15px !important; }
  section { padding: 3.5rem 1rem; }
  .hero { padding: 2.5rem 1rem 3rem; }
}

/* ===== REVIEW CTA BLOCK ===== */
.review-cta-section {
  background: var(--blue-deep);
  padding: 4rem 2rem;
}
.review-cta-card {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
}
/* Left: score column */
.review-cta-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1.5rem 2rem;
  border: 1px solid rgba(255,255,255,0.15);
  min-width: 130px;
}
.review-cta-stars {
  font-size: 28px;
  color: #f59e0b;
  letter-spacing: 3px;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.review-cta-score {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.review-cta-count {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  text-align: center;
  line-height: 1.4;
}
/* Center: text + button */
.review-cta-center { flex: 1; }
.review-cta-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 0.9rem;
}
.review-cta-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  font-weight: 300;
}
.review-cta-sub strong { color: #fff; font-weight: 600; }
/* The big CTA button */
.review-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f59e0b;
  color: #1a1a1a;
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  padding: 16px 28px;
  border-radius: 14px;
  text-decoration: none;
  transition: var(--trans);
  box-shadow: 0 6px 28px rgba(245,158,11,0.45);
  white-space: nowrap;
}
.review-cta-btn:hover {
  background: #fbbf24;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(245,158,11,0.55);
}
.review-cta-btn:active { transform: translateY(0); }
.review-cta-btn-stars {
  font-size: 16px;
  color: #92400e;
  letter-spacing: 1px;
}
.review-cta-arrow {
  font-size: 20px;
  font-weight: 400;
}
.review-cta-note {
  margin-top: 0.75rem;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 700px) {
  .review-cta-card {
    flex-direction: column;
    gap: 1.75rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }
  .review-cta-left { width: 100%; flex-direction: row; justify-content: center; gap: 1.25rem; padding: 1rem 1.5rem; min-width: auto; }
  .review-cta-score { font-size: 30px; }
  .review-cta-btn { width: 100%; justify-content: center; font-size: 16px; }
  .review-cta-section { padding: 3rem 1rem; }
}

/* ===== PRICE MwSt LINE ===== */
.price-mwst {
  color: rgba(255,255,255,0.45);
  font-size: 13px;
  margin-top: 4px;
  letter-spacing: 0.03em;
}
