/* Small polish on top of the original colorful design */

:root {
  --shadow-soft: 0 10px 28px rgba(61, 42, 48, 0.09);
  --shadow-pop: 0 14px 32px rgba(232, 145, 162, 0.26);
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1160px;
}

/* Header */
.site-header {
  background: rgba(255, 245, 247, 0.78);
  backdrop-filter: blur(14px) saturate(1.15);
  border-bottom: 1px solid rgba(61, 42, 48, 0.06);
}

.logo img {
  height: 52px;
  transition: transform 0.25s ease;
}

.logo:hover img {
  transform: scale(1.03);
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--coral-dark);
}

.nav-login {
  transition: color 0.2s ease;
}

.nav-login:hover {
  color: var(--ink);
}

/* Buttons — slightly softer motion */
.btn {
  transition: transform 0.22s cubic-bezier(.2, .8, .2, 1), box-shadow 0.22s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
}

.btn:active {
  transform: translateY(0) scale(0.99);
}

.btn-ghost {
  border: 1.5px solid rgba(61, 42, 48, 0.08);
}

/* Hero */
.hero {
  padding: 142px 0 68px;
}

.hero-brand {
  margin-bottom: 12px;
}
.hero-brand img {
  height: clamp(2.5rem, 5.2vw, 3.6rem);
  width: auto;
}

.hero h1 {
  letter-spacing: -0.015em;
}

.hero p.lead {
  line-height: 1.65;
}

.hero-phone {
  transition: box-shadow 0.35s ease;
}

.hero-visual:hover .hero-phone-bezel {
  box-shadow:
    0 36px 64px rgba(61, 42, 48, 0.32),
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 1px 0 rgba(255,255,255,0.14) inset;
}

/* Strip polish — base styles live in style.css */

/* Sections */
.section {
  padding: 92px 0;
}

.section-head {
  margin-bottom: 48px;
}

.section-head h2 {
  letter-spacing: -0.015em;
}

.eyebrow {
  box-shadow: 0 6px 16px rgba(232, 145, 162, 0.14);
}

/* Tabs */
.tab-btn {
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.tab-btn:hover {
  transform: translateY(-1px);
}

/* Template cards */
.template-card {
  transition: transform 0.3s cubic-bezier(.2, .8, .2, 1), box-shadow 0.3s ease;
}

.template-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(61, 42, 48, 0.13);
}

.template-preview {
  height: auto !important;
  min-height: 0 !important;
  max-height: none !important;
  aspect-ratio: 9 / 14.4;
}

.template-preview .frame-name {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.template-info .badge {
  background: #FFE8EE;
  font-weight: 700;
}

/* Steps / features */
.step-card,
.feature-card,
.testimonial-card,
.price-card {
  transition: transform 0.28s cubic-bezier(.2, .8, .2, 1), box-shadow 0.28s ease;
}

.step-card:hover,
.feature-card:hover,
.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(61, 42, 48, 0.1);
}

.price-card.featured {
  box-shadow: 0 22px 44px rgba(232, 145, 162, 0.22);
}

/* FAQ */
.faq-item {
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.faq-item:hover {
  box-shadow: 0 12px 26px rgba(61, 42, 48, 0.08);
}

.faq-item.open {
  box-shadow: 0 14px 30px rgba(61, 42, 48, 0.1);
}

/* Final CTA */
.final-cta {
  box-shadow: 0 18px 40px rgba(61, 42, 48, 0.08);
}

/* Cookie */
#cookie-consent-banner {
  border: 1px solid rgba(61, 42, 48, 0.06);
}

/* Reveal — smoother */
.reveal {
  transition: opacity 0.7s cubic-bezier(.2, .8, .2, 1), transform 0.7s cubic-bezier(.2, .8, .2, 1);
}

/* Focus for accessibility */
.btn:focus-visible,
.tab-btn:focus-visible,
.lang-btn:focus-visible,
.nav-links a:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

@media (max-width: 720px) {
  .nav-links.mobile-open {
    background: rgba(255, 250, 251, 0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(61, 42, 48, 0.08);
  }

  .hero {
    padding: 130px 0 64px;
  }
}
