/* ============================================================
   KissAI — style.css
   ============================================================ */

   *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

   :root {
     --pk:    #ff2d6b;
     --pk2:   #ff6b95;
     --pk3:   #ffb3c6;
     --pk4:   #fff0f3;
     --dark:  #0d0508;
     --dark2: #1a0810;
     --dark3: #2d0f1d;
     --cream: #fff5f7;
     --white: #ffffff;
     --muted: #9a5068;
     --muted2:#c4849a;
     --gold:  #ffcc44;
     --fd: 'Playfair Display', Georgia, serif;
     --fb: 'Outfit', system-ui, sans-serif;
     --nav-h: 72px;
   }
   
   html { scroll-behavior: smooth; }
   body { font-family: var(--fb); background: var(--dark); color: var(--white); overflow-x: hidden; }
   
   /* ── NAV ── */
   nav {
     position: fixed; top: 0; left: 0; right: 0; z-index: 500;
     height: var(--nav-h);
     display: flex; align-items: center; justify-content: space-between;
     padding: 0 3rem;
     transition: background .3s, backdrop-filter .3s, border-color .3s;
   }
   nav.scrolled {
     background: rgba(13,5,8,.85);
     backdrop-filter: blur(20px);
     border-bottom: 1px solid rgba(255,45,107,.15);
   }
   .nav-logo {
     font-family: var(--fd); font-size: 1.6rem; color: var(--white);
     text-decoration: none; display: flex; align-items: center; gap: 8px; font-weight: 700;
   }
   .nav-logo .dot { color: var(--pk); font-size: 2rem; line-height: .5; }
   .nav-links { display: flex; align-items: center; gap: 2rem; }
   .nav-links a {
     color: rgba(255,255,255,.65); text-decoration: none;
     font-size: .875rem; font-weight: 400; transition: color .2s; letter-spacing: .01em;
   }
   .nav-links a:hover { color: var(--white); }
   .nav-links a.active { color: var(--pk2); }
   .nav-right { display: flex; align-items: center; gap: 1rem; }
   .nav-btn {
     display: inline-flex; align-items: center; gap: 8px;
     background: var(--pk); color: var(--white); text-decoration: none;
     padding: .55rem 1.4rem; border-radius: 50px; font-size: .85rem; font-weight: 500;
     transition: background .2s, transform .15s, box-shadow .2s;
     box-shadow: 0 0 20px rgba(255,45,107,.3);
   }
   .nav-btn:hover { background: #e0185a; transform: scale(1.04); box-shadow: 0 0 32px rgba(255,45,107,.5); }
   .nav-btn svg { width: 16px; height: 16px; }
   .hamburger {
     display: none; flex-direction: column; gap: 5px;
     cursor: pointer; padding: 6px; background: none; border: none;
   }
   .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: transform .3s, opacity .3s; }
   
   /* ── NAV DROPDOWN ── */
   .nav-dropdown { position: relative; }
   .nav-dropdown-toggle {
     display: flex; align-items: center; gap: 4px;
     color: rgba(255,255,255,.65); text-decoration: none;
     font-size: .875rem; font-weight: 400; transition: color .2s;
     letter-spacing: .01em; cursor: pointer;
   }
   .nav-dropdown-toggle:hover,
   .nav-dropdown:hover .nav-dropdown-toggle { color: var(--white); }
   .nav-dropdown-toggle.active { color: var(--pk2); }
   .nav-arrow { font-size: .6rem; transition: transform .25s; display: inline-block; margin-top: 1px; }
   .nav-dropdown:hover .nav-arrow { transform: rotate(180deg); }
   
   .nav-dropdown-menu {
     position: absolute; top: calc(100% + 16px); left: 50%;
     transform: translateX(-50%);
     background: rgba(13,5,8,.96); backdrop-filter: blur(24px);
     border: 1px solid rgba(255,45,107,.2); border-radius: 16px;
     padding: .5rem; min-width: 240px;
     opacity: 0; pointer-events: none;
     transform: translateX(-50%) translateY(-8px);
     transition: opacity .2s, transform .2s;
     z-index: 600;
   }
   .nav-dropdown:hover .nav-dropdown-menu {
     opacity: 1; pointer-events: all;
     transform: translateX(-50%) translateY(0);
   }
   .nav-dropdown-item {
     display: flex; align-items: center; gap: .75rem;
     padding: .75rem 1rem; border-radius: 10px;
     text-decoration: none; color: var(--white);
     transition: background .15s;
   }
   .nav-dropdown-item:hover { background: rgba(255,45,107,.12); }
   .ndi-icon { font-size: 1.4rem; flex-shrink: 0; }
   .nav-dropdown-item strong { display: block; font-size: .875rem; font-weight: 500; }
   .nav-dropdown-item span { display: block; font-size: .75rem; color: rgba(255,255,255,.4); font-weight: 300; }
   
   /* mobile extras */
   .mob-section-label {
     font-size: .65rem; font-weight: 600; letter-spacing: .12em;
     text-transform: uppercase; color: var(--pk); padding: .5rem 0 .25rem;
   }
   .mob-divider { height: 1px; background: rgba(255,255,255,.06); margin: .5rem 0; }
   
   
   .mobile-nav {
     display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
     background: rgba(13,5,8,.97); backdrop-filter: blur(24px);
     padding: 2rem; z-index: 499;
     border-bottom: 1px solid rgba(255,45,107,.2);
     transform: translateY(-10px); opacity: 0;
     transition: transform .3s, opacity .3s; pointer-events: none;
   }
   .mobile-nav.open { transform: translateY(0); opacity: 1; pointer-events: all; }
   .mobile-nav a {
     display: block; color: rgba(255,255,255,.8); text-decoration: none;
     font-size: 1.25rem; font-family: var(--fd); font-weight: 700;
     padding: .75rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
     transition: color .2s;
   }
   .mobile-nav a:hover { color: var(--pk); }
   .mobile-nav .mob-cta {
     display: block; text-align: center;
     background: var(--pk); color: var(--white); text-decoration: none;
     padding: 1rem; border-radius: 50px; font-size: 1rem; font-weight: 500;
     margin-top: 1.5rem; border: none;
   }
   
   /* ── HERO ── */
   #hero {
     position: relative; min-height: 100svh;
     display: flex; flex-direction: column; align-items: center; justify-content: center;
     text-align: center; padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
     overflow: hidden;
   }
   #hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
   .hero-content { position: relative; z-index: 2; }
   .hero-badge {
     display: inline-flex; align-items: center; gap: 8px;
     border: 1px solid rgba(255,45,107,.4); border-radius: 50px;
     padding: .4rem 1.1rem; font-size: .75rem; font-weight: 500;
     letter-spacing: .1em; text-transform: uppercase;
     color: var(--pk2); margin-bottom: 2rem;
     background: rgba(255,45,107,.08);
     animation: fadeUp .8s both;
   }
   .hero-badge .pulse {
     width: 6px; height: 6px; border-radius: 50%; background: var(--pk);
     animation: pulseAnim 1.5s infinite;
   }
   @keyframes pulseAnim {
     0%, 100% { opacity: 1; transform: scale(1); }
     50%       { opacity: .3; transform: scale(.6); }
   }
   h1.hero-title {
     font-family: var(--fd);
     font-size: clamp(3.5rem, 10vw, 8rem);
     line-height: .95; letter-spacing: -.04em;
     color: var(--white);
     animation: fadeUp .8s .1s both;
   }
   h1.hero-title .line2 { color: var(--pk); font-style: italic; display: block; }
   h1.hero-title .line3 {
     font-size: clamp(1.8rem, 4vw, 3.5rem); color: rgba(255,255,255,.5);
     font-weight: 700; font-style: normal; display: block; margin-top: .2em;
   }
   .hero-sub {
     font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,.55);
     max-width: 500px; line-height: 1.75; margin: 1.5rem auto 0; font-weight: 300;
     animation: fadeUp .8s .2s both;
   }
   .hero-actions {
     display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center;
     margin-top: 2.5rem; animation: fadeUp .8s .3s both;
   }
   .btn-dl {
     display: inline-flex; align-items: center; gap: 10px;
     background: var(--pk); color: var(--white); text-decoration: none;
     padding: 1.1rem 2.2rem; border-radius: 50px; font-size: 1rem; font-weight: 500;
     box-shadow: 0 4px 40px rgba(255,45,107,.4);
     transition: transform .2s, box-shadow .2s, background .2s;
   }
   .btn-dl:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 8px 56px rgba(255,45,107,.55); background: #e0185a; }
   .btn-dl svg { width: 20px; height: 20px; }
   .btn-ghost-w {
     display: inline-flex; align-items: center; gap: 8px;
     color: rgba(255,255,255,.6); text-decoration: none;
     padding: 1rem 1.5rem; border-radius: 50px; font-size: .9rem;
     border: 1px solid rgba(255,255,255,.15); transition: border-color .2s, color .2s;
   }
   .btn-ghost-w:hover { border-color: rgba(255,45,107,.5); color: var(--pk2); }
   .hero-phones {
     position: relative; margin-top: 4rem;
     display: flex; justify-content: center; align-items: flex-end;
     animation: fadeUp .8s .4s both;
   }
   .hero-phones svg { filter: drop-shadow(0 40px 80px rgba(255,45,107,.25)); }
   .float-label {
     position: absolute;
     background: rgba(255,255,255,.1); backdrop-filter: blur(16px);
     border: 1px solid rgba(255,255,255,.15); border-radius: 16px;
     padding: .6rem 1rem; font-size: .8rem; font-weight: 500; color: var(--white);
     white-space: nowrap;
     animation: floatLabel 3s ease-in-out infinite;
   }
   .fl1 { left: -60px; top: 60px; animation-delay: 0s; }
   .fl2 { right: -50px; top: 120px; animation-delay: .8s; }
   .fl3 { left: -40px; bottom: 80px; animation-delay: 1.6s; }
   @keyframes floatLabel { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
   
   /* ── SCROLL INDICATOR ── */
   .scroll-ind {
     position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
     display: flex; flex-direction: column; align-items: center; gap: 8px;
     color: rgba(255,255,255,.3); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase;
     animation: fadeUp .8s .6s both;
   }
   .scroll-ind .arrow {
     width: 1px; height: 40px;
     background: linear-gradient(to bottom, rgba(255,45,107,.6), transparent);
     animation: scrollArrow 1.5s infinite;
   }
   @keyframes scrollArrow {
     0%   { transform: scaleY(0); transform-origin: top; }
     50%  { transform: scaleY(1); transform-origin: top; }
     51%  { transform: scaleY(1); transform-origin: bottom; }
     100% { transform: scaleY(0); transform-origin: bottom; }
   }
   @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
   
   /* ── MARQUEE ── */
   .marquee-section {
     overflow: hidden; padding: 1.5rem 0;
     border-top: 1px solid rgba(255,45,107,.12);
     border-bottom: 1px solid rgba(255,45,107,.12);
     background: var(--dark2);
   }
   .marquee-track {
     display: flex; gap: 3rem; width: max-content;
     animation: marquee 20s linear infinite;
   }
   .marquee-track:hover { animation-play-state: paused; }
   .marquee-item {
     display: flex; align-items: center; gap: .75rem;
     font-family: var(--fd); font-size: 1.2rem; font-weight: 700;
     color: rgba(255,255,255,.25); white-space: nowrap;
   }
   .marquee-item .mk { color: var(--pk); font-size: .9rem; }
   @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
   
   /* ── SECTION SHARED ── */
   .section-eyebrow {
     font-size: .72rem; font-weight: 600; letter-spacing: .14em;
     text-transform: uppercase; color: var(--pk); margin-bottom: .75rem;
   }
   .section-title {
     font-family: var(--fd); font-size: clamp(2.2rem, 5vw, 4rem);
     line-height: 1.05; letter-spacing: -.03em; color: var(--white);
   }
   .section-title em { color: var(--pk); font-style: italic; }
   .section-sub {
     font-size: 1rem; color: rgba(255,255,255,.45);
     line-height: 1.75; font-weight: 300; max-width: 460px; margin-top: .75rem;
   }
   
   /* ── MODES ── */
   #modes { padding: 8rem 1.5rem; background: var(--dark); }
   .modes-container { max-width: 1200px; margin: 5rem auto 0; }
   .modes-tabs { display: flex; gap: .5rem; margin-bottom: 3rem; }
   .mode-tab {
     padding: .6rem 1.5rem; border-radius: 50px; font-size: .875rem; font-weight: 500;
     background: transparent; border: 1px solid rgba(255,255,255,.1); color: rgba(255,255,255,.5);
     cursor: pointer; transition: all .2s;
   }
   .mode-tab.active { background: var(--pk); border-color: var(--pk); color: var(--white); box-shadow: 0 0 20px rgba(255,45,107,.3); }
   .mode-tab:hover:not(.active) { border-color: rgba(255,45,107,.4); color: var(--pk2); }
   .modes-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
   .mode-visual { position: relative; }
   .mode-phone-wrap {
     position: relative; display: inline-block;
     filter: drop-shadow(0 40px 80px rgba(255,45,107,.2));
   }
   .mode-phone-wrap svg { display: block; }
   .mode-info { padding: 1rem 0; }
   .mode-num {
     font-family: var(--fd); font-size: 6rem; color: rgba(255,45,107,.08);
     line-height: 1; font-weight: 900; letter-spacing: -.05em; margin-bottom: -1rem;
   }
   .mode-name { font-family: var(--fd); font-size: 3rem; color: var(--white); font-weight: 700; letter-spacing: -.03em; }
   .mode-desc-text {
     font-size: 1rem; color: rgba(255,255,255,.5); line-height: 1.75;
     font-weight: 300; margin: 1rem 0 2rem; max-width: 380px;
   }
   .mode-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2.5rem; }
   .mode-features li { display: flex; align-items: center; gap: .75rem; font-size: .9rem; color: rgba(255,255,255,.65); }
   .mode-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--pk); flex-shrink: 0; }
   .mode-panel { display: none; }
   .mode-panel.active { display: grid; }
   
   /* ── HOW IT WORKS ── */
   #how { padding: 8rem 1.5rem; background: var(--dark2); position: relative; overflow: hidden; }
   #how::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pk), transparent); }
   #how::after  { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--pk), transparent); }
   .steps-grid {
     max-width: 1200px; margin: 5rem auto 0;
     display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem;
   }
   .step-card {
     background: var(--dark3); border-radius: 24px;
     border: 1px solid rgba(255,45,107,.08);
     padding: 2.5rem 2rem; position: relative; overflow: hidden;
     transition: transform .3s, border-color .3s, box-shadow .3s;
   }
   .step-card:hover { transform: translateY(-8px); border-color: rgba(255,45,107,.3); box-shadow: 0 20px 60px rgba(255,45,107,.1); }
   .step-card-num {
     font-family: var(--fd); font-size: 5rem; font-weight: 900;
     color: rgba(255,45,107,.06); position: absolute; top: -1rem; right: 1.5rem;
     line-height: 1; letter-spacing: -.05em; pointer-events: none;
   }
   .step-icon {
     width: 52px; height: 52px; border-radius: 16px;
     background: rgba(255,45,107,.12); border: 1px solid rgba(255,45,107,.2);
     display: flex; align-items: center; justify-content: center;
     font-size: 1.5rem; margin-bottom: 1.5rem;
   }
   .step-title { font-family: var(--fd); font-size: 1.4rem; color: var(--white); margin-bottom: .5rem; font-weight: 700; }
   .step-desc { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }
   
   /* ── GALLERY ── */
   #gallery { padding: 8rem 1.5rem; background: var(--dark); overflow: hidden; }
   .gallery-scroll {
     display: flex; gap: 1.25rem; margin-top: 4rem;
     width: max-content; animation: galleryScroll 30s linear infinite;
   }
   .gallery-scroll:hover { animation-play-state: paused; }
   @keyframes galleryScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
   .gallery-card {
     width: 220px; height: 380px; border-radius: 24px;
     overflow: hidden; flex-shrink: 0; position: relative;
     border: 1px solid rgba(255,255,255,.07);
     transition: transform .3s; cursor: pointer;
   }
   .gallery-card:hover { transform: scale(1.03); }
   .gallery-card svg { width: 100%; height: 100%; object-fit: cover; }
   .gallery-card-label {
     position: absolute; bottom: 0; left: 0; right: 0;
     padding: 1.5rem 1rem 1rem;
     background: linear-gradient(to top, rgba(13,5,8,.9), transparent);
     font-size: .8rem; color: rgba(255,255,255,.8); font-weight: 500;
   }
   
   /* ── TESTIMONIALS ── */
   #testimonials { padding: 8rem 1.5rem; background: var(--dark2); }
   .testimonials-grid {
     max-width: 1100px; margin: 4rem auto 0;
     display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
   }
   .testi-card {
     background: var(--dark3); border-radius: 24px;
     border: 1px solid rgba(255,255,255,.06);
     padding: 2rem; transition: transform .3s, border-color .3s;
   }
   .testi-card:hover { transform: translateY(-4px); border-color: rgba(255,45,107,.2); }
   .testi-stars { color: var(--gold); font-size: 1rem; letter-spacing: -1px; margin-bottom: 1rem; }
   .testi-text { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.75; font-weight: 300; font-style: italic; margin-bottom: 1.5rem; }
   .testi-author { display: flex; align-items: center; gap: .75rem; }
   .testi-avatar {
     width: 40px; height: 40px; border-radius: 50%;
     background: linear-gradient(135deg, var(--pk), var(--pk3));
     display: flex; align-items: center; justify-content: center;
     font-size: .75rem; font-weight: 600; color: var(--white); flex-shrink: 0;
   }
   .testi-name { font-size: .875rem; font-weight: 500; color: var(--white); }
   .testi-handle { font-size: .75rem; color: rgba(255,255,255,.35); }
   
   /* ── STATS ── */
   #stats {
     padding: 6rem 1.5rem;
     background: linear-gradient(135deg, var(--dark3), var(--dark2));
     border-top: 1px solid rgba(255,45,107,.1);
     border-bottom: 1px solid rgba(255,45,107,.1);
   }
   .stats-grid {
     max-width: 900px; margin: 0 auto;
     display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
     gap: 2rem; text-align: center;
   }
   .stat-num { font-family: var(--fd); font-size: 3.5rem; color: var(--pk); font-weight: 900; line-height: 1; letter-spacing: -.05em; }
   .stat-label { font-size: .85rem; color: rgba(255,255,255,.45); font-weight: 300; margin-top: .5rem; }
   
   /* ── FAQ ── */
   #faq { padding: 8rem 1.5rem; background: var(--dark); }
   .faq-list { max-width: 740px; margin: 4rem auto 0; display: flex; flex-direction: column; gap: .75rem; }
   .faq-item {
     background: var(--dark2); border-radius: 16px;
     border: 1px solid rgba(255,255,255,.06); overflow: hidden;
   }
   .faq-q {
     width: 100%; background: none; border: none; color: var(--white);
     font-family: var(--fb); font-size: 1rem; font-weight: 500;
     padding: 1.5rem 2rem; text-align: left; cursor: pointer;
     display: flex; justify-content: space-between; align-items: center; gap: 1rem;
     transition: color .2s;
   }
   .faq-q:hover { color: var(--pk2); }
   .faq-q .faq-icon {
     width: 24px; height: 24px; border-radius: 50%;
     background: rgba(255,45,107,.12); border: 1px solid rgba(255,45,107,.2);
     display: flex; align-items: center; justify-content: center; flex-shrink: 0;
     transition: transform .3s, background .2s; font-size: .75rem;
   }
   .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--pk); border-color: var(--pk); }
   .faq-a {
     max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s;
     font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.75; font-weight: 300;
     padding: 0 2rem;
   }
   .faq-item.open .faq-a { max-height: 200px; padding: .5rem 2rem 1.5rem; }
   
   /* ── CTA ── */
   #cta {
     padding: 10rem 1.5rem; text-align: center; position: relative; overflow: hidden;
     background: var(--dark2);
   }
   #cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
   .cta-content { position: relative; z-index: 2; }
   .cta-title { font-family: var(--fd); font-size: clamp(2.5rem, 7vw, 6rem); line-height: 1; letter-spacing: -.04em; color: var(--white); }
   .cta-title em { color: var(--pk); font-style: italic; }
   .cta-sub { font-size: 1.1rem; color: rgba(255,255,255,.5); max-width: 420px; margin: 1.5rem auto 0; font-weight: 300; line-height: 1.7; }
   .cta-btn {
     display: inline-flex; align-items: center; gap: 12px;
     background: var(--white); color: var(--dark); text-decoration: none;
     padding: 1.3rem 2.8rem; border-radius: 50px; font-size: 1.1rem; font-weight: 600;
     margin-top: 3rem; transition: transform .2s, box-shadow .2s;
     box-shadow: 0 4px 48px rgba(255,45,107,.2);
   }
   .cta-btn:hover { transform: scale(1.05); box-shadow: 0 8px 64px rgba(255,45,107,.35); }
   .cta-btn svg { width: 22px; height: 22px; }
   .cta-note { font-size: .8rem; color: rgba(255,255,255,.3); margin-top: 1rem; }
   
   /* ── FOOTER ── */
   footer {
     background: var(--dark); border-top: 1px solid rgba(255,45,107,.1);
     padding: 4rem 3rem 2rem;
   }
   .footer-grid {
     max-width: 1100px; margin: 0 auto;
     display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
     margin-bottom: 3rem;
   }
   .footer-brand { font-family: var(--fd); font-size: 1.5rem; color: var(--white); font-weight: 700; margin-bottom: .75rem; }
   .footer-brand span { color: var(--pk); }
   .footer-tagline { font-size: .875rem; color: rgba(255,255,255,.35); line-height: 1.7; font-weight: 300; max-width: 260px; }
   .footer-col h4 { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 1.25rem; }
   .footer-col a { display: block; font-size: .875rem; color: rgba(255,255,255,.5); text-decoration: none; margin-bottom: .6rem; transition: color .2s; }
   .footer-col a:hover { color: var(--pk2); }
   .footer-bottom {
     border-top: 1px solid rgba(255,255,255,.05); padding-top: 2rem;
     display: flex; justify-content: space-between; align-items: center;
     font-size: .775rem; color: rgba(255,255,255,.2); flex-wrap: wrap; gap: 1rem;
   }
   .footer-bottom a { color: rgba(255,255,255,.2); text-decoration: none; }
   .footer-bottom a:hover { color: var(--pk2); }
   .social-links { display: flex; gap: 1rem; }
   .social-btn {
     width: 36px; height: 36px; border-radius: 50%;
     background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
     display: flex; align-items: center; justify-content: center; font-size: .9rem;
     color: rgba(255,255,255,.4); text-decoration: none;
     transition: background .2s, color .2s, border-color .2s;
   }
   .social-btn:hover { background: rgba(255,45,107,.15); border-color: rgba(255,45,107,.3); color: var(--pk2); }
   
   /* ── PHONE FRAME SYSTEM ── */
   /*
     Her telefon: .phone-frame-wrap > .phone-frame-svg + .phone-screen
     .phone-frame-svg  → üstte, pointer-events:none, z-index:2
     .phone-screen     → arkada, gerçek img/video burada
   */
   .phone-frame-wrap {
     position: relative;
     display: inline-block;
   }
   .phone-frame-svg {
     display: block;
     position: relative;
     z-index: 2;
     pointer-events: none;
   }
   .phone-screen {
     position: absolute;
     top: 4%;
     left: 3.5%;
     width: 93%;
     height: 92%;
     border-radius: 28px;
     overflow: hidden;
     z-index: 1;
     background: #0d0508;
   }
   .phone-screen img,
   .phone-screen video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
   }
   
   /* Hero 3'lü telefon satırı */
   .hero-phones-row {
     display: flex;
     align-items: flex-end;
     justify-content: center;
     gap: 0;
   }
   .phone-left  { width: 180px; transform: rotate(-8deg) translateY(10px); opacity: .85; }
   .phone-center{ width: 220px; z-index: 3; }
   .phone-right { width: 165px; transform: rotate(7deg) translateY(8px); opacity: .85; }
   
   /* Mode section büyük telefon */
   .phone-mode { width: 300px; }
   
   /* Gallery card: img/video tam kaplar */
   .gallery-card img,
   .gallery-card video {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
   }
   
   /* ── SCROLL REVEAL ── */
   .reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s, transform .7s; }
   .reveal.visible { opacity: 1; transform: translateY(0); }
   
   /* ── RESPONSIVE ── */
   @media (max-width: 900px) {
     nav { padding: 0 1.25rem; }
     .nav-links { display: none; }
     .hamburger { display: flex; }
     .mobile-nav { display: block; }
     .modes-showcase { grid-template-columns: 1fr; }
     .mode-visual { text-align: center; }
     .footer-grid { grid-template-columns: 1fr 1fr; }
   }
   @media (max-width: 640px) {
     section { padding: 5rem 1.25rem; }
     .hero-phones .float-label { display: none; }
     .footer-grid { grid-template-columns: 1fr; }
   }
   
   /* ============================================================
      MODE PAGES — shared additions
      ============================================================ */
   
   /* updated mobile nav extras */
   .mob-section-label {
     font-size: .65rem; font-weight: 700; letter-spacing: .14em;
     text-transform: uppercase; color: rgba(255,45,107,.5);
     padding: .75rem 0 .25rem; border: none;
   }
   .mob-divider { height: 1px; background: rgba(255,255,255,.06); margin: .5rem 0; }
   
   /* ── MODE PAGE HERO ── */
   .mode-hero {
     position: relative; min-height: 100svh;
     display: flex; align-items: center; justify-content: center;
     overflow: hidden; padding: calc(var(--nav-h) + 4rem) 1.5rem 5rem;
   }
   .mode-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
   .mode-hero-inner {
     position: relative; z-index: 2;
     max-width: 1200px; width: 100%; margin: 0 auto;
     display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
   }
   .mode-hero-text { }
   .mode-hero-tag {
     display: inline-flex; align-items: center; gap: 8px;
     border-radius: 50px; padding: .4rem 1rem;
     font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
     margin-bottom: 1.5rem; border: 1px solid currentColor;
     animation: fadeUp .7s both;
   }
   .mode-hero-title {
     font-family: var(--fd);
     font-size: clamp(3rem, 8vw, 6.5rem);
     line-height: .95; letter-spacing: -.04em; color: var(--white);
     animation: fadeUp .7s .1s both;
   }
   .mode-hero-title em { font-style: italic; }
   .mode-hero-sub {
     font-size: 1.1rem; color: rgba(255,255,255,.5); line-height: 1.75;
     font-weight: 300; max-width: 420px; margin: 1.5rem 0 2.5rem;
     animation: fadeUp .7s .2s both;
   }
   .mode-hero-btns {
     display: flex; gap: 1rem; flex-wrap: wrap;
     animation: fadeUp .7s .3s both;
   }
   .mode-hero-visual {
     display: flex; justify-content: center; align-items: center;
     animation: fadeUp .7s .2s both;
   }
   
   /* ── FEATURE GRID (mode pages) ── */
   .mode-features-section { padding: 7rem 1.5rem; }
   .mode-features-grid {
     max-width: 1200px; margin: 4rem auto 0;
     display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem;
   }
   .mf-card {
     border-radius: 24px; padding: 2.5rem 2rem; position: relative; overflow: hidden;
     border: 1px solid rgba(255,255,255,.06);
     transition: transform .3s, box-shadow .3s;
   }
   .mf-card:hover { transform: translateY(-6px); }
   .mf-card-icon { font-size: 2.5rem; margin-bottom: 1.25rem; display: block; line-height: 1; }
   .mf-card-title { font-family: var(--fd); font-size: 1.35rem; color: var(--white); margin-bottom: .5rem; font-weight: 700; }
   .mf-card-desc { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }
   .mf-card-bg { position: absolute; bottom: -16px; right: -16px; font-size: 6rem; opacity: .06; pointer-events: none; line-height: 1; }
   
   /* ── SHOWCASE STRIP (horizontal scroll) ── */
   .showcase-section { padding: 5rem 0; overflow: hidden; }
   .showcase-strip {
     display: flex; gap: 1.5rem; padding: 0 1.5rem;
     animation: galleryScroll 28s linear infinite;
     width: max-content;
   }
   .showcase-strip:hover { animation-play-state: paused; }
   .showcase-card {
     width: 200px; height: 360px; border-radius: 24px; flex-shrink: 0;
     position: relative; overflow: hidden;
     border: 1px solid rgba(255,255,255,.07);
     transition: transform .3s;
   }
   .showcase-card:hover { transform: scale(1.04); }
   .showcase-card svg { width: 100%; height: 100%; display: block; }
   .showcase-card-lbl {
     position: absolute; bottom: 0; left: 0; right: 0;
     padding: 1.25rem .875rem .875rem;
     background: linear-gradient(to top, rgba(13,5,8,.92), transparent);
     font-size: .75rem; color: rgba(255,255,255,.8); font-weight: 500;
   }
   
   /* ── HOW-TO STEPS (mode pages) ── */
   .mode-how-section { padding: 7rem 1.5rem; }
   .mode-steps {
     max-width: 860px; margin: 4rem auto 0;
     display: flex; flex-direction: column; gap: 0;
   }
   .mode-step {
     display: grid; grid-template-columns: 72px 1fr; gap: 2rem; align-items: flex-start;
     padding: 2rem 0; border-bottom: 1px solid rgba(255,255,255,.05);
     position: relative;
   }
   .mode-step:last-child { border-bottom: none; }
   .mode-step-num {
     font-family: var(--fd); font-size: 3rem; font-weight: 900; line-height: 1;
     letter-spacing: -.05em; color: rgba(255,45,107,.18);
     padding-top: .15rem;
   }
   .mode-step-body h3 { font-family: var(--fd); font-size: 1.4rem; color: var(--white); font-weight: 700; margin-bottom: .4rem; }
   .mode-step-body p { font-size: .9rem; color: rgba(255,255,255,.45); line-height: 1.7; font-weight: 300; }
   
   /* ── BIG CTA BANNER (mode pages) ── */
   .mode-cta-section {
     padding: 9rem 1.5rem; text-align: center; position: relative; overflow: hidden;
   }
   .mode-cta-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
   .mode-cta-inner { position: relative; z-index: 2; max-width: 640px; margin: 0 auto; }
   .mode-cta-title {
     font-family: var(--fd); font-size: clamp(2.5rem, 6vw, 5rem);
     line-height: 1; letter-spacing: -.04em; color: var(--white);
   }
   .mode-cta-title em { font-style: italic; }
   .mode-cta-sub { font-size: 1rem; color: rgba(255,255,255,.45); line-height: 1.75; font-weight: 300; margin: 1.25rem 0 2.5rem; }
   
   /* ── KISS PAGE VARS ── */
   body.kiss-page { --accent: #ff2d6b; --accent2: #ff6b95; --bg-deep: #0d0508; --bg-mid: #1a0810; --bg-card: #2d0f1d; }
   /* ── HUG PAGE VARS ── */
   body.hug-page  { --accent: #a855f7; --accent2: #c084fc; --bg-deep: #07050d; --bg-mid: #110820; --bg-card: #1e0f35; }
   /* ── DANCE PAGE VARS ── */
   body.dance-page{ --accent: #f59e0b; --accent2: #fcd34d; --bg-deep: #080600; --bg-mid: #151005; --bg-card: #2a1f08; }
   
   body.kiss-page,
   body.hug-page,
   body.dance-page {
     background: var(--bg-deep);
   }
   
   .mode-hero-tag   { color: var(--accent2); border-color: rgba(255,255,255,.15); background: rgba(255,255,255,.05); }
   .mode-hero-title em { color: var(--accent); }
   .mf-card { background: var(--bg-card); }
   .mf-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.3); }
   
   .mode-step-num { color: var(--accent); opacity: .25; }
   body.kiss-page  .mode-step-num { color: #ff2d6b; }
   body.hug-page   .mode-step-num { color: #a855f7; }
   body.dance-page .mode-step-num { color: #f59e0b; }
   
   /* responsive mode hero */
   @media (max-width: 900px) {
     .mode-hero-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
     .mode-hero-sub { margin: 1.5rem auto 2.5rem; }
     .mode-hero-btns { justify-content: center; }
     .mode-hero-visual { order: -1; }
   }