/* ==========================================================================
   SOMARES Salespage Styles
   ========================================================================== */

/* CSS Variables - Brand Colors from App */
:root {
  --soma-navy: #242736;
  --soma-green: #20a231;
  --soma-light-bg: #e5ebf5;
  --soma-blue-dark: #085389;
  --soma-blue-medium: #648bc1;
  --soma-green-light: #20a268;
  --soma-blue-light: #85a4cf;
  --soma-gray-medium: #aeaeb3;
  --soma-gray-light: #c4c4c4;
  --soma-green-pale: #d7ffed;
  --soma-bg-light: #f2f7ff;
  --soma-orange: #e49d22;
  --soma-main: #f2f7ff;
  
  --font-family: 'Ubuntu', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: 0.3s ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ubuntu-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/ubuntu-v21-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 500;
  src: url('./fonts/ubuntu-v21-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ubuntu-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/ubuntu-v21-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  color: var(--soma-navy);
  line-height: 1.6;
  background-color: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================================================
   Header
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 39, 54, 0.08);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.logo-soma {
  color: var(--soma-navy);
  font-weight: normal;
}

.nav {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--soma-navy);
  opacity: 0.8;
  transition: var(--transition);
}

.nav-link:hover {
  opacity: 1;
  color: var(--soma-blue-dark);
}

.header-cta {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--soma-navy);
  transition: var(--transition);
}

.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--soma-navy);
}

.mobile-cta {
  margin-top: 16px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--soma-green);
  color: #fff;
}

.btn-primary:hover {
  opacity: .8;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-light {
  background: #fff;
  color: var(--soma-blue-dark);
}

.btn-light:hover {
  background: var(--soma-bg-light);
  transform: translateY(-2px);
}

.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  xxxbackground: linear-gradient(180deg, #fff 0%, var(--soma-bg-light) 100%);
  background: linear-gradient(180deg, var(--soma-blue-dark) 0%, var(--soma-navy) 60%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url(images/waves_header.svg) no-repeat 50%;
  background-size: contain;
  opacity: .2;
}
@media (max-width: 768px) {
.hero-bg {
  background: url(images/waves_header.svg) no-repeat 50% 20%;
  opacity: 1;
}
}
.wave-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 400px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #fff
}

.hero-headline {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 24px;
}

.hero-subtext {
  font-size: 1.1rem;
  color: #fff;
  opacity: 0.85;
  margin-bottom: 16px;
  line-height: 1.7;
}

.hero-subtext.highlight {
  color: var(--soma-blue-medium);
  font-weight: 500;
}

.hero-intro {
  font-size: 1.15rem;
  margin: 32px 0;
}

.hero-cta-group {
  margin-top: 40px;
}

.microcopy {
  font-size: 0.85rem;
  color: var(--soma-gray-medium);
  margin-top: 12px;
}

.microcopy.light {
  color: rgba(255,255,255,0.7);
}

.secondary-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.95rem;
  color: #fff;
  border-bottom: 1px solid currentColor;
  transition: var(--transition);
}

.secondary-link:hover {
  opacity: 0.8;
}

/* Phone Mockup */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone {
  width: 380px;
  padding: 12px;
  position: relative;
}

/*
.phone-mockup {
  width: 280px;
  height: 560px;
  background: var(--soma-navy);
  border-radius: 40px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 12px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--soma-bg-light);
  border-radius: 32px;
  overflow: hidden;
}

.app-preview {
  padding: 48px 16px 16px;
}

.app-header-mock {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--soma-navy);
  margin-bottom: 24px;
}

.app-content-mock {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.session-card-mock {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.session-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--soma-blue-light), var(--soma-blue-dark));
  border-radius: 50%;
}

.session-info {
  flex: 1;
}

.session-title {
  height: 12px;
  width: 80%;
  background: var(--soma-navy);
  border-radius: 4px;
  opacity: 0.2;
  margin-bottom: 8px;
}

.session-subtitle {
  height: 8px;
  width: 60%;
  background: var(--soma-gray-medium);
  border-radius: 4px;
  opacity: 0.3;
}
*/
.signal-line {
  position: absolute;
  right: -100px;
  top: 50%;
  width: 200px;
  height: 60px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,30 Q25,10 50,30 T100,30 T150,30 T200,30' fill='none' stroke='%23085389' stroke-width='2' opacity='0.3'/%3E%3C/svg%3E") no-repeat center;
  opacity: 0.5;
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
  padding: 100px 0;
}
.section.first{
  padding-top: 140px;
}

.section-light {
  background: var(--soma-bg-light);
}

.section-dark {
  background: var(--soma-navy);
  color: #fff;
}

.section-headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--soma-navy);
  margin-bottom: 32px;
  text-align: center;
}

.section-headline.light {
  color: #fff;
}

.section-intro {
  font-size: 1.1rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  opacity: 0.9;
}

.section-intro.light {
  color: rgba(255,255,255,0.9);
}

.section-text-block {
  max-width: 700px;
  margin: 0 auto;
}

.section-text-block.centered {
  text-align: center;
}

.section-text-block.light {
  color: rgba(255,255,255,0.9);
}

.section-text-block.light strong {
  color: #fff;
}

.section-text-block p {
  margin-bottom: 20px;
}

.highlight-text {
  color: var(--soma-blue-dark);
  font-size: 1.1rem;
}

/* Problem List */
.problem-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px 24px;
  max-width: 700px;
  margin: 0 auto 40px;
}

.problem-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1rem;
}

.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--soma-blue-dark);
  border-radius: 50%;
  opacity: 0.6;
}

/* Two Columns */
.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.column p {
  margin-bottom: 16px;
}

.list-headline {
  font-weight: 600;
  margin-bottom: 16px;
}

.symptom-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.symptom-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--soma-blue-dark);
}

.subtle-text {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 24px;
}

/* Icon Grid */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.icon-circle {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.icon-circle svg {
  color: var(--soma-blue-dark);
}

.icon-item span {
  font-size: 0.9rem;
  font-weight: 500;
}

/* Timeline */
.timeline {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--soma-blue-light), var(--soma-blue-dark));
}

.timeline-item {
  position: relative;
  padding-left: 72px;
  padding-bottom: 40px;
}

.timeline-item:last-child {
  padding-bottom: 10px;
  background-color: #fff;
}

.timeline-marker {
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: var(--soma-blue-dark);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--soma-blue-dark);
}

.timeline-content ul {
  margin-left: 0;
}

.timeline-content li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.timeline-content li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--soma-gray-medium);
}

/* Three Cards */
.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto 48px;
}

.info-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
}

.card-icon svg {
  width: 100%;
  height: 100%;
  color: var(--soma-blue-dark);
}

.info-card p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Highlight Box */
.highlight-box {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}

.highlight-box p {
  font-size: 1.15rem;
  line-height: 1.7;
}

.goal-text {
  font-size: 1.2rem;
  margin: 32px 0;
}

.cta-block {
  text-align: center;
  margin-top: 48px;
}

/* Stack Visual */
.stack-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 400px;
  margin: 0 auto 48px;
}

.stack-item {
  width: 100%;
  padding: 20px;
  background: var(--soma-bg-light);
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  transition: var(--transition);
  border: 2px solid transparent;
}

.stack-item[data-level="1"] {
  background: var(--soma-blue-dark);
  color: #fff;
}

.stack-item[data-level="2"] {
  background: rgba(8, 83, 137, 0.8);
  color: #fff;
}

.stack-item[data-level="3"] {
  background: rgba(8, 83, 137, 0.6);
  color: #fff;
}

.stack-item[data-level="4"] {
  background: rgba(8, 83, 137, 0.4);
  color: var(--soma-navy);
}

.stack-item[data-level="5"] {
  background: rgba(8, 83, 137, 0.2);
  color: var(--soma-navy);
}

/* Comparison */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 48px;
}

.comparison-item {
  background: #fff;
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.comparison-item.highlight {
  border: 2px solid var(--soma-blue-dark);
}

.comparison-item h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--soma-gray-medium);
}

.comparison-item.highlight h3 {
  color: var(--soma-blue-dark);
}

.comparison-item ul {
  margin-bottom: 20px;
}

.comparison-item li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.comparison-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--soma-gray-medium);
}

.comparison-result {
  font-size: 0.9rem;
  color: var(--soma-gray-medium);
  margin-bottom: 24px;
}

.comparison-item.highlight .comparison-result {
  color: var(--soma-navy);
}

.wave-illustration {
  text-align: center;
}

.wave-illustration svg {
  width: 100%;
  max-width: 200px;
  height: 60px;
}

.wave-illustration span {
  display: block;
  font-size: 0.8rem;
  color: var(--soma-gray-medium);
  margin-top: 8px;
}

.wave-illustration.structured span {
  color: var(--soma-blue-dark);
  font-weight: 500;
}

/* Regulation List */
.regulation-list {
  max-width: 600px;
  margin: 0 auto 48px;
}

.regulation-list li {
  position: relative;
  padding: 16px 16px 16px 48px;
  background: var(--soma-bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 1rem;
}

.regulation-list li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 16px;
  color: var(--soma-blue-dark);
  font-weight: 700;
}

/* Balance Visual */
.balance-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 48px 0;
}

.balance-side {
  padding: 24px 40px;
  background: var(--soma-bg-light);
  border-radius: var(--radius);
  font-weight: 600;
}

.balance-arrows svg {
  width: 100px;
  height: 40px;
}

/* Routine Visual */
.routine-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.routine-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.check-icon {
  width: 40px;
  height: 40px;
  background: var(--soma-green-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-icon svg {
  width: 20px;
  height: 20px;
  color: var(--soma-green);
}

.routine-item span {
  font-size: 0.8rem;
  color: var(--soma-gray-medium);
}

.routine-dots {
  font-size: 1.5rem;
  color: var(--soma-gray-medium);
  letter-spacing: 4px;
}

.routine-result {
  padding: 16px 32px;
  background: var(--soma-blue-dark);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
}

/* Target List */
.target-list {
  max-width: 700px;
  margin: 0 auto;
}

.target-list li {
  position: relative;
  padding: 20px 20px 20px 56px;
  background: var(--soma-bg-light);
  border-radius: var(--radius);
  margin-bottom: 12px;
  font-size: 1rem;
}

.target-list li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 20px;
  color: var(--soma-blue-dark);
  font-weight: 700;
}

/* Benefits Grid */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 500px;
  margin: 0 auto 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: #fff;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  box-shadow: var(--shadow-sm);
}

/* Pricing Card */
.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.pricing-header {
  margin-bottom: 24px;
}

.price-amount {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--soma-navy);
}

.price-period {
  display: block;
  font-size: 1rem;
  color: var(--soma-gray-medium);
  margin-top: 4px;
}

.price-daily {
  display: inline-block;
  margin-top: 12px;
  padding: 6px 16px;
  background: var(--soma-green-pale);
  color: var(--soma-green);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-renewal {
  padding: 16px 0;
  border-top: 1px solid var(--soma-light-bg);
  border-bottom: 1px solid var(--soma-light-bg);
  margin-bottom: 24px;
}

.pricing-renewal p {
  color: var(--soma-gray-medium);
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--soma-gray-medium);
  margin-top: 16px;
}

/* FAQ */
.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--soma-light-bg);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--soma-navy);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--soma-blue-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding-bottom: 24px;
  color: var(--soma-navy);
  opacity: 0.8;
  line-height: 1.7;
}

/* Final Section */
.section-final {
  background: linear-gradient(180deg, var(--soma-bg-light) 0%, #fff 100%);
  text-align: center;
  padding: 120px 0;
}

.final-logo {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 32px;
}

.final-tagline {
  font-size: 1.5rem;
  margin-bottom: 40px;
  line-height: 1.5;
}

.stable-line {
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--soma-blue-dark), transparent);
  margin: 48px auto 0;
}
.ablauf{
  position: relative;
}
.ablauf:before {
  content: " ";
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%; 
  height: 100%;  
  opacity: .4; 
  z-index: -1;
  background: url(images/bg.jpg);
}

/* Footer */
.footer {
  background: var(--soma-navy);
  color: #fff;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 700;
}

.footer-logo .logo-soma,
.footer-logo .logo-res {
  color: #fff;
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: var(--transition);
}

.footer-links a:hover {
  opacity: 1;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-visual {
    order: -1;
    margin-bottom: 20px;

  }
  
  .phone {
    width: auto;
    height: 480px;
  }
  
  .signal-line {
    display: none;
  }
  
  .two-columns {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .comparison {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }
  
  .hero-headline {
    font-size: 1.75rem;
  }
  
  .hero-subtext br {
    display: none;
  }
  
  .section-headline {
    font-size: 1.5rem;
  }
  
  .three-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .timeline::before {
    left: 16px;
  }
  
  .timeline-item {
    padding-left: 56px;
  }
  
  .timeline-marker {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  
  .stack-visual {
    max-width: 100%;
  }
  
  .balance-visual {
    flex-direction: column;
    gap: 16px;
  }
  
  .balance-arrows {
    transform: rotate(90deg);
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
  
  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 24px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 1rem;
  }
  
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  
  .pricing-card {
    padding: 32px 24px;
  }
  
  .price-amount {
    font-size: 2.5rem;
  }
  
  .icon-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .routine-visual {
    gap: 12px;
  }
  
  .highlight-box {
    padding: 24px;
  }
}
