/*
Theme Name: raus.
Theme URI: https://raus.tech
Description: Automatisierte Guide-Buchungsinfrastruktur für Hotels
Version: 1.0
Author: raus. Team
Author URI: https://raus.tech
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: raus
Domain Path: /languages
*/

:root {
  --gold:       #F2A800;
  --gold-light: #FFF4D6;
  --gold-mid:   #FDEAA6;
  --gold-dark:  #C98C00;
  --green:      #2D6A4F;
  --green-dark: #1E4D38;
  --green-light:#D1FAE5;
  --green-pale: #F0FBF4;
  --charcoal:   #1A1F2E;
  --text:       #1A1F2E;
  --text-2:     #4B5563;
  --text-3:     #9CA3AF;
  --bg:         #FAFAF8;
  --white:      #FFFFFF;
  --border:     #E8E8E0;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 52px;
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}

.nav-logo {
  font-size: 26px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text); }

.nav-cta {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.nav-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(242,168,0,0.35);
}

/* ══ HERO ══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 130px 24px 80px;
  position: relative;
  background: var(--white);
  overflow: hidden;
}

.hero-blob-1 {
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242,168,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-blob-2 {
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold-light);
  border: 1px solid rgba(242,168,0,0.3);
  border-radius: 100px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold-dark);
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
  position: relative;
  z-index: 1;
}

.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: blink 2s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(48px, 8vw, 86px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -2.5px;
  color: var(--text);
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
  position: relative;
  z-index: 1;
}

.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2.2vw, 21px);
  color: var(--text-2);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.55;
  animation: fadeUp 0.6s 0.2s ease both;
  position: relative;
  z-index: 1;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both;
  position: relative;
  z-index: 1;
}

.btn-primary {
  background: var(--gold);
  color: white;
  border: none;
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(242,168,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 14px 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--text-2);
  background: rgba(0,0,0,0.03);
}

/* Activity pills */
.hero-illustration {
  margin-top: 60px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.4s ease both;
}

.activity-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.2s;
}

.pill:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(242,168,0,0.15);
  transform: translateY(-1px);
}

/* Partner strip */
.partner-strip {
  margin-top: 56px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 1;
  animation: fadeUp 0.6s 0.5s ease both;
  width: 100%;
  max-width: 680px;
}

.partner-strip p {
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.partner-logos {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}

.p-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-3);
}

/* ══ SHARED ══ */
section { padding: 96px 24px; }
.container { max-width: 1080px; margin: 0 auto; }

.section-label {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-label.green {
  background: var(--green-pale);
  color: var(--green);
}

.section-title {
  font-size: clamp(30px, 4.5vw, 50px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.1;
  margin-bottom: 14px;
  color: var(--text);
}

.section-sub {
  font-size: 18px;
  color: var(--text-2);
  max-width: 520px;
  line-height: 1.6;
}

/* ══ PROBLEM ══ */
.problem {
  background: #FFF9ED;
  border-top: 1px solid #F2DFA0;
  border-bottom: 1px solid #F2DFA0;
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-top: 56px;
}

.pain-list { display: flex; flex-direction: column; gap: 14px; }

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: white;
  border: 1px solid #F2DFA0;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  transition: all 0.2s;
}

.pain-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(242,168,0,0.1);
  transform: translateY(-1px);
}

.pain-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 5px;
}

.pain-text strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 3px;
}

.pain-text span {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Chat mockup */
.chat-card {
  background: white;
  border-radius: 20px;
  border: 1px solid #F2DFA0;
  box-shadow: 0 8px 40px rgba(0,0,0,0.07);
  overflow: hidden;
}

.chat-header {
  background: #FFF4D6;
  border-bottom: 1px solid #F2DFA0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.3px;
}

.chat-body { padding: 18px; display: flex; flex-direction: column; gap: 10px; }

.msg { max-width: 85%; }

.msg-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 13px;
  line-height: 1.5;
  display: inline-block;
}

.msg.in .msg-bubble {
  background: #F3F4F6;
  color: var(--text);
  border-radius: 4px 14px 14px 14px;
}

.msg.out {
  align-self: flex-end;
  text-align: right;
}

.msg.out .msg-bubble {
  background: #DCFCE7;
  color: #14532D;
  border-radius: 14px 4px 14px 14px;
}

.msg-name {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-3);
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.chat-alert {
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: 8px;
  padding: 9px 12px;
  font-size: 11px;
  color: #DC2626;
  font-weight: 600;
  text-align: center;
}

/* ══ JOURNEY ══ */
.journey { background: var(--white); }
.journey-header { text-align: center; margin-bottom: 64px; }

.journey-steps {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
}

.j-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  font-size: 18px;
  color: var(--text-3);
  font-weight: 300;
}

.step-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.step-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(242,168,0,0.12);
}

.step-card.center-card {
  background: linear-gradient(135deg, #FFF9ED, #FFFDF5);
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(242,168,0,0.1);
}

.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold-light);
  color: var(--gold-dark);
  border: 1.5px solid rgba(242,168,0,0.4);
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.center-card .step-num {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

/* Icon circle instead of emoji */
.step-icon-circle {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid rgba(242,168,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -0.5px;
}

.center-card .step-icon-circle {
  background: var(--gold);
  color: white;
  border-color: var(--gold);
}

.step-who {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 6px;
}

.center-card .step-who { color: var(--gold-dark); }

.step-title {
  font-size: 17px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.step-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.step-chips {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}

.step-chip {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 11px;
  color: var(--text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  text-align: left;
}

.step-chip::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

/* ══ METRICS ══ */
.metrics { background: var(--green); padding: 56px 24px; }

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.metric-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.metric-item + .metric-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.metric-num {
  font-size: 52px;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: -2px;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.4;
}

/* ══ FEATURES ══ */
.features { background: var(--bg); }
.features-header { text-align: center; margin-bottom: 56px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feat-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s;
}

.feat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(242,168,0,0.1);
}

.feat-icon-box {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -0.3px;
}

.feat-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--text);
}

.feat-card p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.6;
}

.feat-tag {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  border-radius: 6px;
  padding: 3px 9px;
  font-size: 10px;
  font-weight: 700;
  margin-top: 12px;
}

/* ══ TESTIMONIAL ══ */
.testimonial-section {
  background: #FFF9ED;
  border-top: 1px solid #F2DFA0;
  border-bottom: 1px solid #F2DFA0;
  padding: 80px 24px;
}

.testimonial-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.quote-text {
  font-size: 19px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  font-style: italic;
  position: relative;
}

.quote-text::before {
  content: '"';
  font-size: 80px;
  color: var(--gold-mid);
  position: absolute;
  top: -32px; left: -8px;
  font-style: normal;
  line-height: 1;
  font-weight: 900;
}

.quote-source {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-2);
  font-style: normal;
  font-weight: 600;
}

.partner-box {
  background: white;
  border-radius: 18px;
  border: 1px solid #F2DFA0;
  padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}

.partner-name {
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.partner-desc {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 20px;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.stat-box {
  background: var(--bg);
  border-radius: 10px;
  padding: 12px;
}

.stat-box .sn {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold-dark);
  letter-spacing: -0.5px;
}

.stat-box .sl {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 2px;
}

.loi-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  border: 1px solid rgba(45,106,79,0.25);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-top: 14px;
}

/* ══ CTA ══ */
.cta-section {
  background: var(--white);
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(242,168,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}

.cta-section > .container > p {
  font-size: 18px;
  color: var(--text-2);
  max-width: 460px;
  margin: 0 auto 40px;
  line-height: 1.6;
  position: relative;
}

.cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-note { margin-top: 18px; font-size: 12px; color: var(--text-3); }

/* ══ FOOTER ══ */
footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 32px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-left .fl-logo { font-size: 22px; font-weight: 900; color: var(--gold); }
.footer-left .fl-sub { font-size: 12px; color: var(--text-3); margin-top: 2px; }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 12px; color: var(--text-3); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ══ RESPONSIVE ══ */
@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  section { padding: 70px 20px; }
  .problem-grid { grid-template-columns: 1fr; }
  .journey-steps { grid-template-columns: 1fr; }
  .j-arrow { display: none; }
  .metrics-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-inner { grid-template-columns: 1fr; }
  footer { flex-direction: column; gap: 14px; text-align: center; }
}
