:root {
  --teal: #4d8496;
  --emerald: #118075;
  --black: #0a0a0a;
  --white: #f8f9fa;
  --pure-white: #ffffff;
  --gray-100: #f1f3f5;
  --gray-200: #e2e6ea;
  --gray-300: #c9cfd5;
  --gray-500: #6c757d;
  --teal-light: rgba(77, 132, 150, 0.08);
  --emerald-light: rgba(17, 128, 117, 0.08);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--black); overflow-x: hidden; }

/* NAV */
nav { position: fixed; top: 0; width: 100%; z-index: 100; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-200); transition: box-shadow 0.3s; }
nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.06); }
.nav-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; height: 72px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.5rem; color: var(--black); display: flex; align-items: center; gap: 0.4rem; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; }
.logo .book { color: var(--black); }
.logo .it { color: var(--emerald); font-size: 1.6rem; }
.nav-links { display: flex; gap: 1.8rem; align-items: center; }
.nav-links a { text-decoration: none; color: var(--gray-500); font-size: 0.88rem; font-weight: 500; transition: color 0.2s; position: relative; }
.nav-links a:hover { color: var(--black); }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--emerald); transition: width 0.3s; }
.nav-links a:hover::after { width: 100%; }
.btn-nav { background: var(--black); color: var(--pure-white); border: none; padding: 0.6rem 1.4rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.btn-nav:hover { background: var(--emerald); transform: translateY(-1px); }
.btn-nav-outline { background: transparent; color: var(--black); border: 1.5px solid var(--gray-300); padding: 0.6rem 1.4rem; border-radius: 8px; font-size: 0.85rem; font-weight: 500; cursor: pointer; transition: all 0.25s; font-family: 'DM Sans', sans-serif; }
.btn-nav-outline:hover { border-color: var(--black); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: all 0.3s; }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-nav { display: none; position: fixed; top: 72px; left: 0; right: 0; background: rgba(255,255,255,0.97); backdrop-filter: blur(20px); border-bottom: 1px solid var(--gray-200); padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; z-index: 99; transform: translateY(-10px); opacity: 0; transition: all 0.3s; pointer-events: none; }
.mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-nav a { text-decoration: none; color: var(--gray-500); font-size: 1rem; font-weight: 500; padding: 0.5rem 0; }

/* HERO */
.hero { padding: 9rem 2rem 5rem; max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.15fr; gap: 4rem; align-items: center; min-height: 100vh; }
.hero-pill { display: inline-block; background: var(--emerald-light); color: var(--emerald); padding: 0.4rem 1rem; border-radius: 50px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1.5rem; border: 1px solid rgba(17,128,117,0.15); animation: fadeUp 0.6s ease-out; }
.hero-text h1 { font-family: 'Playfair Display', serif; font-size: 3.4rem; font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--black); animation: fadeUp 0.8s ease-out 0.1s both; }
.hero-text h1 em { font-style: italic; color: var(--emerald); }
.hero-text .subtitle { margin-top: 1.5rem; font-size: 1.1rem; color: var(--gray-500); line-height: 1.7; max-width: 480px; animation: fadeUp 0.8s ease-out 0.2s both; }
.hero-actions { margin-top: 2rem; display: flex; gap: 1rem; animation: fadeUp 0.8s ease-out 0.3s both; }
.hero-trust { margin-top: 1.5rem; display: flex; gap: 1.5rem; flex-wrap: wrap; animation: fadeUp 0.8s ease-out 0.4s both; }
.hero-trust span { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }
.btn-primary { background: var(--emerald); color: var(--pure-white); border: none; padding: 0.9rem 2rem; border-radius: 10px; font-size: 0.95rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.btn-primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(17,128,117,0.25); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }
.btn-secondary { background: transparent; color: var(--white); border: 1.5px solid var(--gray-300); padding: 0.9rem 2rem; border-radius: 10px; font-size: 0.95rem; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.btn-secondary:hover { border-color: var(--black); }

/* Dashboard Preview */
.hero-visual { position: relative; animation: fadeUp 0.8s ease-out 0.3s both; }
.dashboard-preview { background: var(--pure-white); border-radius: 16px; overflow: hidden; box-shadow: 0 25px 80px rgba(0,0,0,0.1), 0 1px 3px rgba(0,0,0,0.04); border: 1px solid var(--gray-200); }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1.2rem; background: var(--gray-100); border-bottom: 1px solid var(--gray-200); }
.dash-dots { display: flex; gap: 6px; }
.dash-dots span { width: 10px; height: 10px; border-radius: 50%; }
.dash-dots span:nth-child(1) { background: #ff5f57; }
.dash-dots span:nth-child(2) { background: #ffbd2e; }
.dash-dots span:nth-child(3) { background: #28c840; }
.dash-title { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }
.dash-user { font-size: 0.9rem; }
.dash-content { display: flex; min-height: 280px; }
.dash-sidebar { width: 160px; background: var(--black); padding: 1rem 0; flex-shrink: 0; }
.dash-nav-item { padding: 0.6rem 1rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); cursor: pointer; transition: all 0.2s; }
.dash-nav-item:hover { color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.05); }
.dash-nav-item.active { color: white; background: rgba(255,255,255,0.1); border-left: 2px solid var(--emerald); }
.dash-main { flex: 1; padding: 1.2rem; }
.dash-stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; margin-bottom: 1.2rem; }
.dash-stat { background: var(--gray-100); border-radius: 10px; padding: 0.8rem; text-align: center; }
.ds-num { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.3rem; color: var(--emerald); }
.ds-label { font-size: 0.65rem; color: var(--gray-500); margin-top: 0.15rem; }
.dash-chart { display: flex; align-items: flex-end; gap: 6px; height: 120px; padding: 0.5rem 0; }
.chart-bar { flex: 1; background: linear-gradient(to top, var(--emerald), var(--teal)); border-radius: 6px 6px 0 0; height: var(--h); display: flex; align-items: flex-end; justify-content: center; transition: height 1s ease-out; animation: growBar 1.2s ease-out both; }
.chart-bar span { font-size: 0.6rem; color: var(--gray-500); transform: translateY(18px); }
@keyframes growBar { from { height: 0; } to { height: var(--h); } }

/* Float badges */
.float-badge { position: absolute; background: var(--pure-white); border-radius: 14px; padding: 1rem 1.2rem; box-shadow: 0 12px 40px rgba(0,0,0,0.1); border: 1px solid var(--gray-200); z-index: 3; animation: float 4s ease-in-out infinite; }
.float-badge.top-right { top: -20px; right: -20px; }
.float-badge.bottom-left { bottom: -15px; left: -25px; }
.float-badge .badge-label { font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.float-badge .badge-value { font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 700; color: var(--emerald); }
.float-badge .badge-sub { font-size: 0.75rem; color: var(--gray-500); }

/* SOCIAL PROOF */
.social-proof-bar { background: var(--pure-white); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 2rem; }
.sp-inner { max-width: 1280px; margin: 0 auto; text-align: center; }
.sp-label { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.sp-label strong { color: var(--black); }
.sp-logos { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.sp-logo { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--gray-300); letter-spacing: -0.5px; transition: color 0.3s; }
.sp-logo:hover { color: var(--teal); }

/* SECTION COMMON */
.section { max-width: 1280px; margin: 0 auto; padding: 6rem 2rem; }
.section-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: var(--emerald); font-weight: 700; margin-bottom: 0.8rem; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 1rem; }
.section-desc { color: var(--gray-500); font-size: 1.05rem; line-height: 1.7; max-width: 560px; margin-bottom: 3rem; }

/* PAIN POINTS */
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.pain-card { background: var(--pure-white); border-radius: 18px; padding: 2rem; border: 1px solid var(--gray-200); transition: all 0.35s; }
.pain-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(0,0,0,0.07); }
.pain-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.pain-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 700; color: #c0392b; margin-bottom: 0.5rem; }
.pain-label.solved { color: var(--emerald); }
.pain-before { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px dashed var(--gray-200); }
.pain-before h4 { font-size: 1rem; margin-bottom: 0.4rem; }
.pain-before p, .pain-after p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }
.pain-after h4 { font-size: 1rem; margin-bottom: 0.4rem; color: var(--emerald); }

/* DEMO SECTION */
.demo-section { background: var(--black); padding: 6rem 2rem; position: relative; overflow: hidden; }
.demo-section::before { content: ''; position: absolute; top: -40%; right: -15%; width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(77,132,150,0.15), transparent 70%); }
.demo-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 2; }
.demo-hd { text-align: center; margin-bottom: 2.5rem; }

/* Demo floor plan */
.demo-fp-legend { display: flex; gap: 1.5rem; margin-bottom: 1rem; }
.demo-fp-building { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2rem; position: relative; }
.demo-fp-building::before { content: 'BookIT Demo — Schulungszentrum'; position: absolute; top: 1rem; right: 1.5rem; font-size: 0.65rem; font-weight: 700; color: rgba(255,255,255,0.2); text-transform: uppercase; letter-spacing: 1.2px; }
.fp-legend { display: flex; gap: 1.5rem; }
.fp-leg { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.fp-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.fp-dot.green { background: #2ea043; }
.fp-dot.red { background: #c0392b; }
.fp-floor { margin-bottom: 1.8rem; }
.fp-floor:last-child { margin-bottom: 0; }
.fp-floor-label { font-size: 0.7rem; font-weight: 700; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.85rem; padding-bottom: 0.5rem; border-bottom: 1px dashed rgba(255,255,255,0.1); display: flex; align-items: center; gap: 0.5rem; }
.fp-floor-label::before { content: ''; display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.fp-rooms-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.fp-room { flex-shrink: 0; min-width: 130px; background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 1.1rem 0.9rem 0.9rem; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; text-align: center; }
.fp-room:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
.fp-room.fp-free { border-color: rgba(46,160,67,0.4); background: rgba(46,160,67,0.06); }
.fp-room.fp-free:hover { border-color: #2ea043; box-shadow: 0 8px 24px rgba(46,160,67,0.25); }
.fp-room.fp-occupied { border-color: rgba(192,57,43,0.4); background: rgba(192,57,43,0.05); opacity: 0.75; cursor: default; }
.fp-room-icon { font-size: 1.8rem; line-height: 1; margin-bottom: 0.45rem; }
.fp-room-name { font-size: 0.8rem; font-weight: 700; color: var(--pure-white); margin-bottom: 0.3rem; line-height: 1.3; }
.fp-room-cap { font-size: 0.68rem; color: rgba(255,255,255,0.45); margin-bottom: 0.6rem; }
.fp-room-badge { display: inline-block; font-size: 0.65rem; font-weight: 700; padding: 0.18rem 0.55rem; border-radius: 6px; }
.fp-b-free { background: rgba(46,160,67,0.2); color: #4caf70; }
.fp-b-occ  { background: rgba(192,57,43,0.2); color: #e05e50; }

/* Room Modal */
.rm-backdrop { position: fixed; inset: 0; background: rgba(10,10,10,0.6); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.rm-backdrop.rm-open { opacity: 1; pointer-events: all; }
.rm-panel { background: var(--pure-white); border-radius: 24px; width: 100%; max-width: 880px; max-height: 88vh; overflow: hidden; display: flex; flex-direction: column; position: relative; box-shadow: 0 28px 80px rgba(0,0,0,0.3); transform: translateY(24px) scale(0.98); transition: transform 0.3s cubic-bezier(0.16,1,0.3,1); }
.rm-backdrop.rm-open .rm-panel { transform: translateY(0) scale(1); }
.rm-x { position: absolute; top: 1rem; right: 1rem; z-index: 10; background: var(--gray-100); border: none; width: 34px; height: 34px; border-radius: 10px; font-size: 0.88rem; cursor: pointer; color: var(--gray-500); transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.rm-x:hover { background: var(--gray-200); color: var(--black); }
.rm-content { display: grid; grid-template-columns: 210px 1fr; overflow: hidden; flex: 1; min-height: 0; }
.rm-side { background: var(--gray-100); padding: 1.8rem 1.4rem; overflow-y: auto; border-right: 1px solid var(--gray-200); }
.rm-room-icon { font-size: 2.2rem; line-height: 1; margin-bottom: 0.7rem; }
.rm-room-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 700; color: var(--black); line-height: 1.25; margin-bottom: 0.2rem; padding-right: 2rem; }
.rm-room-cat { font-size: 0.68rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1.3rem; }
.rm-room-details { display: flex; flex-direction: column; gap: 0.55rem; margin-bottom: 1.3rem; }
.rm-detail-row { display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; }
.rm-detail-row span { color: var(--gray-500); }
.rm-detail-row strong { color: var(--black); font-weight: 600; }
.rm-amenities { margin-bottom: 1rem; }
.rm-am-label { font-size: 0.65rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.5rem; }
.rm-am-tags { display: flex; flex-wrap: wrap; gap: 0.3rem; }
.fp-am-tag { background: var(--gray-200); color: var(--gray-500); padding: 0.2rem 0.55rem; border-radius: 6px; font-size: 0.67rem; font-weight: 500; }
.rm-avail-indicator { margin-top: 1.2rem; font-size: 0.75rem; font-weight: 600; padding: 0.45rem 0.75rem; border-radius: 8px; }
.rm-avail-ok   { background: rgba(46,160,67,0.12); color: #2ea043; }
.rm-avail-busy { background: rgba(192,57,43,0.12); color: #c0392b; }
.rm-main { overflow-y: auto; display: flex; flex-direction: column; min-height: 0; }
.rm-cal-wrap { padding: 1.2rem 1.4rem 1rem; border-bottom: 1px solid var(--gray-100); flex-shrink: 0; }
.rm-cal-nav { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.9rem; padding-right: 2.6rem; }
.rm-cal-nav strong { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; }
.rm-cal-nav button { background: var(--gray-100); border: none; width: 30px; height: 30px; border-radius: 8px; font-size: 1rem; cursor: pointer; color: var(--gray-500); transition: background 0.2s; display: flex; align-items: center; justify-content: center; }
.rm-cal-nav button:hover { background: var(--gray-200); }
.rm-cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; text-align: center; }
.rm-day-lbl { font-size: 0.62rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; padding: 0.25rem 0; letter-spacing: 0.3px; }
.rm-day { position: relative; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; margin: 0 auto; border-radius: 9px; font-size: 0.8rem; font-weight: 500; cursor: pointer; transition: background 0.15s; flex-direction: column; gap: 1px; line-height: 1; padding-bottom: 4px; }
.rm-day:hover:not(.rm-empty):not(.rm-day-past) { background: var(--gray-100); }
.rm-empty { pointer-events: none; }
.rm-day-past { color: var(--gray-300); pointer-events: none; font-size: 0.75rem; }
.rm-day-today { background: var(--gray-500); color: var(--pure-white); font-weight: 700; }
.rm-day-today:hover { background: var(--gray-500); }
.rm-day-sel { background: var(--emerald); color: var(--pure-white); font-weight: 700; }
.rm-day-sel:hover { background: var(--emerald); }
.rm-dot { width: 4px; height: 4px; border-radius: 50%; display: block; position: absolute; bottom: 4px; left: 50%; transform: translateX(-50%); }
.rm-dot-busy { background: #c0392b; }
.rm-dot-free { background: #2ea043; }
.rm-day-today .rm-dot, .rm-day-sel .rm-dot { background: rgba(255,255,255,0.65); }
.rm-day-info { padding: 1.1rem 1.4rem; border-bottom: 1px solid var(--gray-100); flex-shrink: 0; min-height: 60px; }
.rm-hint { color: var(--gray-500); font-size: 0.82rem; padding: 0.4rem 0; }
.rm-form { padding: 1.2rem 1.4rem 1.6rem; background: var(--gray-100); flex-shrink: 0; }
.rm-form-title { font-size: 0.7rem; font-weight: 700; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 1rem; }
.rm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.rm-field { display: flex; flex-direction: column; gap: 0.3rem; }
.rm-field-full { grid-column: 1 / -1; }
.rm-field label { font-size: 0.68rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.3px; }
.rm-field input, .rm-field select { background: var(--pure-white); border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 0.65rem 0.9rem; font-size: 0.88rem; font-family: 'DM Sans', sans-serif; color: var(--black); outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; width: 100%; }
.rm-field input:focus, .rm-field select:focus { border-color: var(--emerald); }
.rm-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.8rem center; padding-right: 2.2rem; }
.rm-submit-btn { width: 100%; background: var(--emerald); color: white; border: none; padding: 0.9rem; border-radius: 12px; font-size: 0.95rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 0.6rem; transition: opacity 0.2s; }
.rm-submit-btn:hover { opacity: 0.9; }
.demo-success-body { padding: 3rem 1.4rem; text-align: center; }
.demo-success-icon-lg { font-size: 3rem; margin-bottom: 1rem; }
.demo-success-body h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.4rem; }
.demo-success-nr { font-size: 0.85rem; color: var(--emerald); font-weight: 600; margin-bottom: 0.4rem; }
.demo-success-body p { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.6; }

/* Phone Mockup */
.demo-phone-wrap { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.demo-phone { position: relative; width: 300px; height: 600px; background: #111; border-radius: 44px; padding: 14px; box-shadow: 0 0 0 2px #2a2a2a, 0 0 0 3px #1a1a1a, 0 40px 100px rgba(0,0,0,0.6), inset 0 0 0 1px #333; flex-shrink: 0; }
.demo-phone-speaker { position: absolute; top: 20px; left: 50%; transform: translateX(-50%); width: 56px; height: 5px; background: #2a2a2a; border-radius: 3px; z-index: 5; }
.demo-phone-screen { width: 100%; height: 100%; background: var(--gray-100); border-radius: 32px; overflow: hidden; position: relative; }
.demo-hint { font-size: 0.8rem; color: rgba(255,255,255,0.4); text-align: center; }

/* Phone Screens (steps) */
.dscreen { position: absolute; inset: 0; overflow-y: auto; display: flex; flex-direction: column; background: var(--gray-100); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.dscreen.active { opacity: 1; pointer-events: auto; }

/* Screen 1 – App Header */
.dapp-header { display: flex; align-items: center; justify-content: space-between; padding: 0.8rem 1rem; background: var(--pure-white); border-bottom: 1px solid var(--gray-200); position: sticky; top: 0; z-index: 10; }
.dapp-logo { font-family: 'Playfair Display', serif; font-weight: 800; font-size: 1.1rem; }
.dapp-book { color: var(--black); }
.dapp-it { color: var(--emerald); }
.dapp-url { font-size: 0.62rem; color: var(--gray-500); background: var(--gray-100); padding: 0.2rem 0.55rem; border-radius: 5px; border: 1px solid var(--gray-200); }

/* Screen 1 – Hero Band */
.dapp-hero { background: var(--black); padding: 1.2rem 1rem 1rem; position: relative; overflow: hidden; }
.dapp-hero::before { content: ''; position: absolute; top: -60%; right: -30%; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(77,132,150,0.2), transparent 70%); pointer-events: none; }
.dapp-hero h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 800; color: var(--pure-white); margin-bottom: 0.2rem; }
.dapp-hero p { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* Screen 1 – Room Cards */
.dapp-rooms { padding: 0.6rem; display: flex; flex-direction: column; gap: 0.4rem; }
.dapp-room { display: flex; align-items: center; gap: 0.7rem; padding: 0.75rem; border-radius: 12px; background: var(--pure-white); border: 1.5px solid var(--gray-200); cursor: pointer; transition: all 0.2s; }
.dapp-room:not(.occupied):hover { border-color: var(--emerald); transform: translateY(-1px); box-shadow: 0 4px 12px rgba(17,128,117,0.12); }
.dapp-room.occupied { opacity: 0.5; cursor: not-allowed; }
.dapp-room-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.dapp-room-info { flex: 1; min-width: 0; }
.dapp-room-info strong { font-size: 0.8rem; display: block; margin-bottom: 0.1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.dapp-room-info span { font-size: 0.65rem; color: var(--gray-500); }
.dapp-room-right { text-align: right; flex-shrink: 0; }
.dapp-status { font-size: 0.62rem; font-weight: 600; padding: 0.15rem 0.5rem; border-radius: 5px; margin-bottom: 0.2rem; display: inline-block; }
.dapp-status.free { color: var(--emerald); background: var(--emerald-light); }
.dapp-status.occ { color: #c0392b; background: rgba(192,57,43,0.08); }
.dapp-price { font-family: 'Playfair Display', serif; font-size: 0.85rem; font-weight: 700; }
.dapp-price small { font-family: 'DM Sans', sans-serif; font-size: 0.55rem; color: var(--gray-500); font-weight: 400; }

/* Screen 2 – Form Top Bar */
.dapp-form-topbar { padding: 0.7rem 1rem; background: var(--pure-white); border-bottom: 1px solid var(--gray-200); }
.dapp-back { background: none; border: none; color: var(--teal); font-size: 0.8rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; padding: 0; }

/* Screen 2 – Room Card (dark) */
.dapp-room-card { background: var(--black); color: var(--pure-white); padding: 1.4rem 1rem 1.2rem; text-align: center; position: relative; overflow: hidden; }
.dapp-room-card::before { content: ''; position: absolute; top: -50%; right: -30%; width: 200px; height: 200px; border-radius: 50%; background: radial-gradient(circle, rgba(77,132,150,0.2), transparent 70%); pointer-events: none; }
.dapp-rc-icon { font-size: 2rem; margin-bottom: 0.4rem; }
.dapp-rc-badge { display: inline-block; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--teal); padding: 0.2rem 0.7rem; border-radius: 20px; font-size: 0.6rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 0.5rem; }
.dapp-rc-name { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 800; margin-bottom: 0.8rem; }
.dapp-rc-stats { display: flex; align-items: center; justify-content: center; gap: 1rem; }
.drc-stat { text-align: center; }
.drc-val { display: block; font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: var(--emerald); }
.drc-lbl { font-size: 0.6rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.5px; }
.drc-div { width: 1px; height: 28px; background: rgba(255,255,255,0.12); }

/* Screen 2 – Form Body */
.dapp-form-body { padding: 1rem; }
.dapp-form-title { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 700; margin-bottom: 0.9rem; }
.dapp-field { margin-bottom: 0.75rem; }
.dapp-field label { display: block; font-size: 0.62rem; font-weight: 600; color: var(--gray-500); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 0.3rem; }
.dapp-field input, .dapp-field select, .dapp-field textarea { width: 100%; background: var(--pure-white); border: 1.5px solid var(--gray-200); border-radius: 10px; padding: 0.65rem 0.8rem; font-size: 0.82rem; font-family: 'DM Sans', sans-serif; color: var(--black); outline: none; transition: border-color 0.2s; appearance: none; -webkit-appearance: none; }
.dapp-field input:focus, .dapp-field select:focus, .dapp-field textarea:focus { border-color: var(--emerald); }
.dapp-field textarea { resize: none; }
.dapp-field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%236c757d' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.7rem center; padding-right: 2rem; }
.dapp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.dapp-divider { height: 1px; background: var(--gray-200); margin: 0.8rem 0; }
.dapp-chips { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.dapp-chip { background: var(--pure-white); border: 1.5px solid var(--gray-200); border-radius: 8px; padding: 0.5rem 0.6rem; font-size: 0.7rem; color: var(--gray-500); cursor: pointer; transition: all 0.2s; text-align: center; user-select: none; }
.dapp-chip.selected { background: var(--emerald); border-color: var(--emerald); color: white; font-weight: 600; }
.dapp-submit { width: 100%; background: var(--emerald); color: white; border: none; padding: 0.85rem; border-radius: 10px; font-size: 0.9rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; margin-top: 0.5rem; transition: opacity 0.2s; }
.dapp-submit:active { opacity: 0.85; }

/* Screen 3 – Success */
.dapp-success { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 3rem 1.5rem; flex: 1; }
.dapp-success-icon { font-size: 3rem; margin-bottom: 1rem; }
.dapp-success h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 0.4rem; }
.dapp-success-id { font-size: 0.82rem; color: var(--emerald); font-weight: 600; margin-bottom: 0.3rem; }
.dapp-success p { font-size: 0.8rem; color: var(--gray-500); margin-bottom: 1.5rem; line-height: 1.6; }
.dapp-new-btn { background: var(--emerald); color: white; border: none; padding: 0.8rem 1.8rem; border-radius: 10px; font-size: 0.88rem; font-weight: 600; cursor: pointer; font-family: 'DM Sans', sans-serif; }

/* QR SECTION */
.qr-section { background: var(--gray-100); border-radius: 24px; padding: 4rem; margin: 0 2rem 4rem; max-width: 1248px; margin-left: auto; margin-right: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.qr-visual { display: flex; justify-content: center; align-items: center; }
.qr-mockup { background: var(--pure-white); border-radius: 20px; padding: 2rem; box-shadow: 0 12px 40px rgba(0,0,0,0.06); text-align: center; width: 260px; }
.qr-mockup .qr-placeholder { width: 160px; height: 160px; margin: 0 auto 1.2rem; background: var(--black); border-radius: 12px; display: grid; grid-template-columns: repeat(8, 1fr); grid-template-rows: repeat(8, 1fr); gap: 2px; padding: 12px; overflow: hidden; }
.qr-placeholder .qr-cell { border-radius: 2px; }
.qr-placeholder .qr-cell.on { background: var(--emerald); }
.qr-placeholder .qr-cell.off { background: rgba(255,255,255,0.1); }
.qr-mockup .qr-room-name { font-weight: 700; font-size: 1rem; margin-bottom: 0.2rem; }
.qr-mockup .qr-room-sub { font-size: 0.8rem; color: var(--gray-500); }
.qr-door-frame { border: 3px solid var(--gray-300); border-radius: 16px; padding: 1.5rem; position: relative; }
.qr-door-label { position: absolute; top: -10px; left: 50%; transform: translateX(-50%); background: var(--gray-100); padding: 0 0.8rem; font-size: 0.7rem; color: var(--gray-500); text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.qr-content h3 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; margin-bottom: 1rem; }
.qr-content p { font-size: 1rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.5rem; }
.qr-steps { display: flex; flex-direction: column; gap: 1rem; }
.qr-step { display: flex; gap: 1rem; align-items: flex-start; }
.qr-step-num { width: 32px; height: 32px; border-radius: 8px; background: var(--emerald); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.qr-step-text h5 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.15rem; }
.qr-step-text p { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 0; line-height: 1.5; }

/* ROI SECTION */
.roi-section { background: var(--pure-white); padding: 6rem 2rem; border-top: 1px solid var(--gray-200); }
.roi-inner { max-width: 1280px; margin: 0 auto; }
.roi-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.roi-card { padding: 2rem; border-radius: 18px; border: 1px solid var(--gray-200); background: var(--white); transition: all 0.3s; }
.roi-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.roi-card.accent { background: var(--black); border-color: var(--black); }
.roi-card.accent .roi-number { color: var(--emerald); }
.roi-card.accent .roi-label, .roi-card.accent p { color: rgba(255,255,255,0.6); }
.roi-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--emerald); margin-bottom: 0.3rem; }
.roi-label { font-size: 0.85rem; font-weight: 700; margin-bottom: 0.5rem; }
.roi-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.5; }

/* FEATURES */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }
.feature-card { padding: 2rem 1.5rem; border-radius: 16px; border: 1px solid var(--gray-200); background: var(--pure-white); transition: all 0.3s; }
.feature-card:hover { border-color: var(--emerald); box-shadow: 0 8px 30px rgba(17,128,117,0.08); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 1.2rem; }
.feature-icon.fi-1 { background: var(--emerald-light); }
.feature-icon.fi-2 { background: var(--teal-light); }
.feature-icon.fi-3 { background: rgba(10,10,10,0.05); }
.feature-icon.fi-4 { background: var(--emerald-light); }
.feature-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--gray-500); line-height: 1.6; }

/* PRICING */
.pricing-section { background: var(--black); padding: 6rem 2rem; }
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-inner .section-label { color: var(--teal); }
.pricing-inner .section-title { color: var(--pure-white); }
.pricing-sub { text-align: center; color: rgba(255,255,255,0.5); font-size: 0.95rem; margin-bottom: 2rem; }
.pricing-toggle { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 3rem; }
.toggle-label { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 500; transition: color 0.3s; }
.toggle-label.active { color: white; }
.save-badge { background: var(--emerald); color: white; padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.7rem; font-weight: 700; margin-left: 0.3rem; }
.toggle-switch { width: 48px; height: 26px; background: rgba(255,255,255,0.15); border-radius: 13px; cursor: pointer; position: relative; transition: background 0.3s; }
.toggle-switch.yearly { background: var(--emerald); }
.toggle-knob { width: 20px; height: 20px; background: white; border-radius: 50%; position: absolute; top: 3px; left: 3px; transition: transform 0.3s; }
.toggle-switch.yearly .toggle-knob { transform: translateX(22px); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.price-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 2.5rem 2rem; position: relative; transition: all 0.3s; }
.price-card:hover { border-color: rgba(255,255,255,0.2); transform: translateY(-4px); }
.price-card.popular { background: var(--pure-white); border-color: var(--pure-white); color: var(--black); transform: scale(1.04); }
.price-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--emerald); color: white; padding: 0.3rem 1rem; border-radius: 6px; font-size: 0.72rem; font-weight: 700; white-space: nowrap; }
.price-plan { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 0.3rem; }
.price-card:not(.popular) .price-plan { color: var(--pure-white); }
.price-for { font-size: 0.82rem; color: var(--gray-500); margin-bottom: 1.5rem; }
.price-amount { margin-bottom: 2rem; display: flex; align-items: baseline; }
.currency { font-size: 1.2rem; font-weight: 500; margin-right: 0.2rem; }
.price-card:not(.popular) .currency { color: rgba(255,255,255,0.6); }
.amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 800; }
.price-card:not(.popular) .amount { color: var(--pure-white); }
.period { font-size: 0.85rem; color: var(--gray-500); margin-left: 0.3rem; }
.price-features { list-style: none; margin-bottom: 2rem; }
.price-features li { padding: 0.5rem 0; font-size: 0.85rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.price-card:not(.popular) .price-features li { color: rgba(255,255,255,0.7); border-bottom-color: rgba(255,255,255,0.06); }
.price-card.popular .price-features li { color: var(--black); border-bottom-color: var(--gray-200); }
.price-features li.muted { opacity: 0.4; }
.btn-price { width: 100%; padding: 0.85rem; border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.2); background: transparent; color: white; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.btn-price:hover { background: rgba(255,255,255,0.1); }
.btn-price.primary { background: var(--emerald); border-color: var(--emerald); color: white; }
.btn-price.primary:hover { background: var(--teal); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(17,128,117,0.3); }

/* TESTIMONIALS */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card { background: var(--pure-white); border-radius: 18px; padding: 2rem; border: 1px solid var(--gray-200); transition: all 0.3s; }
.testimonial-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,0.06); transform: translateY(-3px); }
.stars { color: #f0a500; font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.quote { font-size: 0.92rem; color: var(--black); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.8rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--emerald); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { font-size: 0.85rem; display: block; }
.testimonial-author span { font-size: 0.75rem; color: var(--gray-500); }

/* FAQ */
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 0; cursor: pointer; }
.faq-question h4 { font-size: 1rem; font-weight: 600; }
.faq-toggle { font-size: 1.5rem; color: var(--emerald); transition: transform 0.3s; font-weight: 300; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-item.open .faq-answer { max-height: 200px; padding-bottom: 1.3rem; }
.faq-answer p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* PRICING CANVAS BACKGROUND */
.pricing-section { position: relative; overflow: hidden; }
.pricing-canvas { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; opacity: 0.18; pointer-events: none; }
.pricing-inner { position: relative; z-index: 1; }

/* PRICING TABS */
.pricing-tabs { display: flex; justify-content: center; gap: 0.6rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.pricing-tab { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.5); padding: 0.65rem 1.5rem; border-radius: 10px; font-size: 0.88rem; font-weight: 600; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem; }
.pricing-tab:hover { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.pricing-tab.active { background: var(--emerald); color: white; border-color: var(--emerald); }
.pricing-tab.shop-tab { background: rgba(255,255,255,0.06); border-color: var(--emerald); color: var(--emerald); }
.pricing-tab.shop-tab:hover { background: var(--emerald); color: white; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(17,128,117,0.3); }

/* TAB CONTENT */
.pricing-tab-content { display: none; animation: fadeTabIn 0.4s ease-out; }
.pricing-tab-content.active { display: block; }
@keyframes fadeTabIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--emerald), var(--teal)); padding: 6rem 2rem; text-align: center; }
.cta-inner { max-width: 700px; margin: 0 auto; }
.cta-text h2 { font-family: 'Playfair Display', serif; font-size: 2.6rem; font-weight: 800; color: white; margin-bottom: 1rem; letter-spacing: -1px; }
.cta-text p { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta-form { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2); border-radius: 20px; padding: 2rem; backdrop-filter: blur(10px); }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.cta-form input, .cta-form select { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; padding: 0.85rem 1rem; color: white; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; outline: none; transition: all 0.25s; appearance: none; }
.cta-form input::placeholder { color: rgba(255,255,255,0.4); }
.cta-form input:focus, .cta-form select:focus { border-color: white; background: rgba(255,255,255,0.15); }
.cta-form select option { background: var(--black); color: white; }
.btn-cta { width: 100%; background: white; color: var(--emerald); border: none; padding: 1rem; border-radius: 10px; font-size: 1.05rem; font-weight: 700; cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }
.cta-sub { margin-top: 1rem; font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* FOOTER */
footer { background: var(--black); color: rgba(255,255,255,0.4); padding: 4rem 2rem 2rem; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-col .logo { margin-bottom: 1rem; }
.footer-col .logo .book { color: rgba(255,255,255,0.8); }
.footer-col .logo .it { color: var(--emerald); }
.footer-desc { font-size: 0.85rem; line-height: 1.6; max-width: 280px; }
.footer-col h5 { color: rgba(255,255,255,0.8); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.85rem; padding: 0.3rem 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; text-align: center; }
.footer-bottom p { font-size: 0.8rem; }
.footer-bottom a { color: var(--teal); text-decoration: none; }
.footer-bottom a:hover { color: var(--emerald); }
.disclaimer { margin-top: 1.2rem; padding: 1rem 1.5rem; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 10px; font-size: 0.78rem; color: rgba(255,255,255,0.5); max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* TOAST */
.toast { position: fixed; bottom: 2rem; right: 2rem; background: var(--pure-white); border-radius: 14px; padding: 1.2rem 1.8rem; box-shadow: 0 12px 40px rgba(0,0,0,0.15); border: 1px solid var(--gray-200); z-index: 1000; display: flex; align-items: center; gap: 0.8rem; transform: translateY(120%); opacity: 0; transition: all 0.4s cubic-bezier(0.16,1,0.3,1); max-width: 420px; }
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { border-left: 4px solid var(--emerald); }
.toast-icon { font-size: 1.4rem; flex-shrink: 0; }
.toast-text strong { display: block; font-size: 0.9rem; margin-bottom: 0.15rem; }
.toast-text span { font-size: 0.8rem; color: var(--gray-500); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(25px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.pain-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.pain-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.roi-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.roi-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.roi-card.reveal:nth-child(4) { transition-delay: 0.3s; }
.feature-card.reveal:nth-child(2) { transition-delay: 0.08s; }
.feature-card.reveal:nth-child(3) { transition-delay: 0.16s; }
.feature-card.reveal:nth-child(4) { transition-delay: 0.24s; }
.feature-card.reveal:nth-child(5) { transition-delay: 0.1s; }
.feature-card.reveal:nth-child(6) { transition-delay: 0.18s; }
.feature-card.reveal:nth-child(7) { transition-delay: 0.26s; }
.feature-card.reveal:nth-child(8) { transition-delay: 0.34s; }
.price-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.price-card.reveal:nth-child(3) { transition-delay: 0.2s; }
.testimonial-card.reveal:nth-child(2) { transition-delay: 0.1s; }
.testimonial-card.reveal:nth-child(3) { transition-delay: 0.2s; }

/* ANIMATIONS */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .hero-text h1 { font-size: 2.8rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .rm-content { grid-template-columns: 1fr; }
  .rm-side { border-right: none; border-bottom: 1px solid var(--gray-200); }
  .rm-panel { max-height: 92vh; }
  .rm-row { grid-template-columns: 1fr; }
  .fp-room { min-width: calc(50% - 0.5rem); }
  .roi-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .testimonial-grid { grid-template-columns: 1fr; }
  .qr-section { grid-template-columns: 1fr; padding: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cta-form-row { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .hero-text h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 0.5rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-nav { display: flex; }
  .roi-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .qr-section { margin: 0 1rem 3rem; padding: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .dash-sidebar { display: none; }
  .cta-text h2 { font-size: 2rem; }
  .sp-logos { gap: 1.5rem; }
}

/* NAV PLAIN LINK */
.nav-link-plain {
  font-size: 0.9rem; font-weight: 500; color: var(--gray-text, #4b5563);
  text-decoration: none; transition: color .2s;
}
.nav-link-plain:hover { color: var(--emerald); }

/* NEWS & DOWNLOADS SECTION */
.nd-section { background: #f8fffe; }
.nd-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2.5rem;
}
.nd-card {
  background: #fff; border-radius: 20px; padding: 2.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,.07); display: flex; flex-direction: column; gap: 1rem;
  border: 1px solid #e5e7eb;
}
.nd-card-accent {
  background: linear-gradient(135deg, #118075 0%, #4d8496 100%); color: #fff;
  border-color: transparent;
}
.nd-card.nd-card-accent p { color: rgba(255,255,255,.95); }
.nd-icon { font-size: 2.5rem; }
.nd-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin: 0; }
.nd-card p { font-size: 1rem; line-height: 1.65; color: #4b5563; margin: 0; }
.nd-actions { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .5rem; }
.nd-btn {
  display: inline-block; background: var(--emerald); color: #fff; text-decoration: none;
  padding: .7rem 1.4rem; border-radius: 10px; font-weight: 600; font-size: .9rem;
  transition: background .2s; align-self: flex-start; margin-top: .5rem;
}
.nd-btn:hover { background: #0d6b62; }
.nd-card-accent .nd-btn { background: rgba(255,255,255,.2); border: 1px solid rgba(255,255,255,.4); }
.nd-card-accent .nd-btn:hover { background: rgba(255,255,255,.35); }
.nd-btn-outline {
  display: inline-block; background: transparent; color: rgba(255,255,255,.9); text-decoration: none;
  padding: .7rem 1.4rem; border-radius: 10px; font-weight: 600; font-size: .9rem;
  border: 1px solid rgba(255,255,255,.5); transition: background .2s;
}
.nd-btn-outline:hover { background: rgba(255,255,255,.15); }
@media (max-width: 760px) { .nd-grid { grid-template-columns: 1fr; } }

/* ICONS */
[data-lucide] { flex-shrink: 0; }
.pain-icon [data-lucide] { width: 32px; height: 32px; color: var(--gray-300); }
.feature-icon [data-lucide] { width: 22px; height: 22px; }
.dash-nav-item [data-lucide] { width: 14px; height: 14px; margin-right: 3px; vertical-align: middle; }
.nd-icon [data-lucide] { width: 40px; height: 40px; }
.pf-check { width: 14px; height: 14px; color: var(--emerald); vertical-align: middle; display: inline-block; }
.pf-x { width: 14px; height: 14px; color: var(--gray-300); vertical-align: middle; display: inline-block; }
.fp-room-icon [data-lucide] { width: 28px; height: 28px; }

