        *{margin:0;padding:0;box-sizing:border-box}
        :root{
          --background:#fafafa;
          --foreground:#0a0a0a;
          --card:#ffffff;
          --card-foreground:#0a0a0a;
          --primary:#0f0f0f;
          --primary-foreground:#ffffff;
          --secondary:#f5f5f5;
          --muted:#f0f0f0;
          --muted-foreground:#6b6b6b;
          --border:#e0e0e0;
          --accent-green:#10b981;
          --accent-emerald:#059669;
          --accent-blue:#3b82f6;
          --accent-purple:#8b5cf6;
          --radius:14px;
          --radius-sm:10px;
          --radius-md:18px;
          --radius-lg:28px;
          --shadow-sm:0 1px 3px rgba(0,0,0,0.04),0 1px 2px rgba(0,0,0,0.06);
          --shadow-md:0 4px 12px rgba(0,0,0,0.08),0 2px 4px rgba(0,0,0,0.04);
          --shadow-lg:0 12px 28px rgba(0,0,0,0.12),0 4px 8px rgba(0,0,0,0.06);
          --shadow-xl:0 24px 48px rgba(0,0,0,0.15),0 8px 16px rgba(0,0,0,0.08);
          --shadow-glow:0 0 60px rgba(16,185,129,0.15);
          --dark-bg:#0a0a0a;
          --dark-bg-light:#141414
        }
        html{scroll-behavior:smooth;scroll-padding-top:80px}
        body{font-family:'Inter',-apple-system,BlinkMacSystemFont,sans-serif;color:var(--foreground);background:var(--background);line-height:1.6;overflow-x:hidden;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
        .container{max-width:1280px;margin:0 auto;padding:0 1.25rem}
        @media(min-width:640px){.container{padding:0 1.5rem}}
        @media(min-width:768px){.container{padding:0 2rem}}
        .scrollable-container{overflow:visible}
        .scrollable-container .container{overflow:visible}
        
        @keyframes fadeInUp{from{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}
        @keyframes fadeInLeft{from{opacity:0;transform:translateX(-40px)}to{opacity:1;transform:translateX(0)}}
        @keyframes fadeInRight{from{opacity:0;transform:translateX(40px)}to{opacity:1;transform:translateX(0)}}
        @keyframes scaleIn{from{opacity:0;transform:scale(0.8)}to{opacity:1;transform:scale(1)}}
        @keyframes pulse{0%,100%{transform:scale(1)}50%{transform:scale(1.05)}}
        @keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
        @keyframes slideDown{from{opacity:0;transform:translateY(-20px)}to{opacity:1;transform:translateY(0)}}
        @keyframes shake{0%,100%{transform:translateX(0)}25%{transform:translateX(-10px)}75%{transform:translateX(10px)}}
        @keyframes glow{0%,100%{box-shadow:0 0 20px rgba(16,185,129,0.3),0 0 40px rgba(16,185,129,0.2)}50%{box-shadow:0 0 30px rgba(16,185,129,0.5),0 0 60px rgba(16,185,129,0.3)}}
        @keyframes shimmer{0%{background-position:-200% 0}100%{background-position:200% 0}}
        @keyframes slideInUp{from{opacity:0;transform:translateY(60px)}to{opacity:1;transform:translateY(0)}}
        @keyframes rotateIn{from{opacity:0;transform:rotate(-10deg) scale(0.9)}to{opacity:1;transform:rotate(0) scale(1)}}
        @keyframes bounceIn{0%{opacity:0;transform:scale(0.3) translateY(-100px)}50%{opacity:1;transform:scale(1.05)}70%{transform:scale(0.9)}100%{transform:scale(1)}}
        @keyframes gradientShift{0%{background-position:0% 50%}50%{background-position:100% 50%}100%{background-position:0% 50%}}
        @keyframes borderGlow{0%,100%{border-color:rgba(255,255,255,0.2);box-shadow:0 0 20px rgba(255,255,255,0.1)}50%{border-color:rgba(255,255,255,0.4);box-shadow:0 0 30px rgba(255,255,255,0.2)}}
        
        .animate-on-scroll{opacity:0;transform:translateY(40px);transition:all 0.8s cubic-bezier(0.4,0,0.2,1)}
        .animate-on-scroll.visible{opacity:1;transform:translateY(0)}
        .animate-left{opacity:0;transform:translateX(-40px);transition:all 0.8s cubic-bezier(0.4,0,0.2,1)}
        .animate-left.visible{opacity:1;transform:translateX(0)}
        .animate-right{opacity:0;transform:translateX(40px);transition:all 0.8s cubic-bezier(0.4,0,0.2,1)}
        .animate-right.visible{opacity:1;transform:translateX(0)}
        .animate-scale{opacity:0;transform:scale(0.8);transition:all 0.6s cubic-bezier(0.4,0,0.2,1)}
        .animate-scale.visible{opacity:1;transform:scale(1)}
        .stagger-1{transition-delay:.1s}.stagger-2{transition-delay:.2s}.stagger-3{transition-delay:.3s}.stagger-4{transition-delay:.4s}.stagger-5{transition-delay:.5s}.stagger-6{transition-delay:.6s}
        
        .header{
          position:sticky;top:0;z-index:100;
          padding:10px 20px 0;
          background:transparent;
          transition:transform 0.3s ease;
        }
        .header.header-hidden{
          transform:translateY(-100%);
        }
        .header .container{
          display:flex;
          height:60px;
          align-items:center;
          justify-content:space-between;
          background:#fff;
          border-radius:100px;
          padding:0 5px 0 18px;
          box-shadow:0 2px 16px rgba(0,0,0,0.05);
          max-width:1200px;
          margin:0 auto;
        }
        
        .logo-group{display:flex;align-items:center;gap:10px}
        .logo-wrapper{display:flex;flex-direction:column;gap:1px}
        .logo{font-size:1.125rem;font-weight:700;color:#1a1a1a;text-decoration:none;display:block;letter-spacing:-0.01em;line-height:1.1}
        .logo-img{width:36px;height:36px;object-fit:contain;border-radius:8px;flex-shrink:0}
        .logo-tagline{font-size:0.6875rem;font-weight:400;color:#aaa;letter-spacing:0.01em}
        
        .nav{display:none;align-items:center;justify-content:center;gap:2rem;flex:1;margin:0 1rem}
        @media(min-width:1024px){.nav{display:flex}}
        .nav a{font-size:0.875rem;font-weight:500;color:#555;text-decoration:none;transition:color 0.2s ease}
        .nav a:hover{color:#1a1a1a}
        
        .header-right{display:flex;align-items:center}
        .btn-header{
          padding:10px 20px;
          font-size:0.8125rem;
          font-weight:600;
          background:#10b981;
          color:#fff;
          border:none;
          border-radius:100px;
          cursor:pointer;
          transition:background 0.2s ease;
          text-decoration:none;
        }
        .btn-header:hover{background:#059669}
        
        .burger{display:flex;flex-direction:column;gap:4px;background:none;border:none;cursor:pointer;padding:10px;z-index:101}
        .burger span{display:block;width:18px;height:2px;background:#333;border-radius:2px;transition:all 0.3s ease}
        .burger.active span:nth-child(1){transform:rotate(45deg) translate(4px,4px)}
        .burger.active span:nth-child(2){opacity:0}
        .burger.active span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px)}
        @media(min-width:1024px){.burger{display:none}}
        
        .btn{display:inline-flex;align-items:center;justify-content:center;padding:0.875rem 1.75rem;font-size:1.0625rem;font-weight:600;border-radius:var(--radius);cursor:pointer;transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);text-decoration:none;border:none;position:relative;overflow:hidden;white-space:nowrap}
        .btn::before{content:'';position:absolute;top:0;left:-100%;width:100%;height:100%;background:linear-gradient(90deg,transparent,rgba(255,255,255,0.2),transparent);transition:left 0.5s ease}
        .btn:hover::before{left:100%}
        .btn-primary{background:#059669;color:var(--primary-foreground);box-shadow:0 4px 14px rgba(5,150,105,0.3)}
        .btn-primary:hover{transform:translateY(-3px) scale(1.02);box-shadow:0 8px 25px rgba(5,150,105,0.4)}
        .btn-primary:active{transform:translateY(-1px) scale(1);box-shadow:var(--shadow-md)}
        .btn-outline{background:transparent;border:2px solid var(--border);color:var(--foreground);font-weight:500}
        .btn-outline:hover{background:var(--muted);border-color:var(--primary);transform:translateY(-2px);box-shadow:var(--shadow-md)}
        .btn-outline:active{transform:translateY(0)}
        .btn-lg{padding:1rem 2.5rem;font-size:1.125rem;font-weight:600}
        @media(max-width:480px){.btn-lg{padding:0.875rem 2rem;font-size:1rem}}
        .btn-full{width:100%}
        
        .hero{background:#fafafa !important;padding:4rem 0 5rem;position:relative;overflow:hidden}
        @media(min-width:768px){.hero{padding:5rem 0 6rem}}
        @media(min-width:1024px){.hero{padding:6rem 0 7rem}}
        .hero-container{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:center;max-width:1200px;margin:0 auto;position:relative;z-index:1}
        @media(min-width:1024px){.hero-container{grid-template-columns:1fr 1fr;gap:3rem}}
        .hero-content{text-align:center}
        @media(min-width:1024px){.hero-content{text-align:left}}
        .hero-image{display:flex;justify-content:center;align-items:center}
        .hero-image-placeholder{width:100%;max-width:480px;aspect-ratio:4/3;background:#f0f0f0;border-radius:var(--radius-lg);display:flex;flex-direction:column;align-items:center;justify-content:center;gap:1rem;border:2px dashed #d0d0d0;transition:all 0.3s ease}
        .hero-image-placeholder:hover{border-color:#a0a0a0;background:#e8e8e8}
        .hero-image-placeholder svg{width:64px;height:64px;color:rgba(16,185,129,0.5)}
        .hero-image-placeholder span{font-size:1rem;color:var(--accent-green);font-weight:500;opacity:0.7}
        @media(max-width:1023px){.hero-image{order:-1}.hero-image-placeholder{max-width:400px;aspect-ratio:16/10}}
        .hero h1{font-size:1.875rem;font-weight:700;margin-bottom:1rem;line-height:1.2;animation:fadeInUp 0.8s ease-out;letter-spacing:-0.01em;color:#0a0a0a}
        @media(min-width:768px){.hero h1{font-size:2.5rem;margin-bottom:1.25rem}}
        @media(min-width:1024px){.hero h1{font-size:2.75rem}}
        .hero .lead{font-size:1rem;color:var(--muted-foreground);margin-bottom:1.75rem;animation:fadeInUp 0.8s ease-out 0.2s backwards;font-weight:400;line-height:1.6;max-width:480px}
        @media(min-width:768px){.hero .lead{font-size:1.125rem;margin-bottom:2rem}}
        @media(max-width:1023px){.hero .lead{margin-left:auto;margin-right:auto}}
        .hero-actions{display:flex;flex-direction:column;gap:1rem;animation:fadeInUp 0.8s ease-out 0.4s backwards}
        @media(min-width:640px){.hero-actions{flex-direction:row}}
        @media(min-width:1024px){.hero-actions{justify-content:flex-start}}
        @media(max-width:1023px){.hero-actions{justify-content:center}}
        .hero-meta{display:flex;flex-wrap:wrap;gap:1.25rem;margin-top:1.5rem;animation:fadeInUp 0.8s ease-out 0.5s backwards}
        @media(min-width:1024px){.hero-meta{justify-content:flex-start}}
        @media(max-width:1023px){.hero-meta{justify-content:center}}
        .hero-stat{margin-top:4rem;padding:2.5rem 2rem;background:linear-gradient(135deg,rgba(23,23,23,0.08) 0%,rgba(23,23,23,0.12) 100%);border-radius:calc(var(--radius) + 0.25rem);animation:scaleIn 0.8s ease-out 0.6s backwards;transition:all 0.4s cubic-bezier(0.4,0,0.2,1);border:1px solid var(--border);box-shadow:var(--shadow-md)}
        .hero-stat:hover{transform:translateY(-4px) scale(1.02);box-shadow:var(--shadow-xl);border-color:var(--primary)}
        .hero-stat .number{font-size:3.5rem;font-weight:800;color:var(--primary);margin-bottom:0.75rem;line-height:1;letter-spacing:-0.02em}
        @media(min-width:768px){.hero-stat .number{font-size:4rem}}
        .hero-stat p{font-size:1.125rem;color:var(--muted-foreground);font-weight:500}
        @media(min-width:768px){.hero-stat p{font-size:1.25rem}}
        
        .section{padding:4rem 0;scroll-margin-top:80px;background:#fafafa}
        @media(min-width:768px){.section{padding:6rem 0}}
        @media(min-width:1024px){.section{padding:8rem 0}}
        .section-muted{background:#fafafa;position:relative}
.section-header{text-align:center;margin-bottom:clamp(3rem,5vw,5rem);position:relative;z-index:1}
@media(max-width:480px){.section-header{margin-bottom:clamp(2.5rem,4vw,3rem)}}
@media(min-width:768px){.section-header{margin-bottom:clamp(4rem,6vw,6rem)}}
.section-header h2{
  font-size:clamp(1.75rem,3vw,2.75rem);
  font-weight:900;
  margin-bottom:1.5rem;
  line-height:1.15;
  letter-spacing:-0.03em;
  color:#0a0a0a;
  animation:fadeInUp 0.8s ease-out;
}
@media(max-width:480px){.section-header h2{font-size:clamp(1.5rem,4vw,1.875rem);margin-bottom:1.25rem}}
@media(min-width:768px){.section-header h2{font-size:clamp(2.25rem,4vw,3rem);margin-bottom:2rem}}
.section-header p{animation:fadeInUp 0.8s ease-out 0.2s backwards}
        .section-header p{font-size:1.125rem;color:var(--muted-foreground);max-width:48rem;margin:0 auto;line-height:1.7}
        @media(min-width:768px){.section-header p{font-size:1.25rem}}
        .section-header strong{color:var(--foreground);font-weight:700}
        
        .cards-grid{display:grid;gap:1.5rem}
        @media(min-width:640px){.cards-grid{gap:2rem}}
        @media(min-width:768px){.cards-grid{grid-template-columns:repeat(2,1fr);gap:2rem}}
        @media(min-width:1024px){.cards-grid{grid-template-columns:repeat(3,1fr);gap:2rem}}
        .card{
          background:var(--card);
          border:1px solid var(--border);
          border-radius:var(--radius-md);
          padding:2.25rem;
          transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
          box-shadow:var(--shadow-sm);
          position:relative;
        }
        .card::before{
          content:'';position:absolute;inset:-1px;
          border-radius:inherit;
          background:linear-gradient(135deg,var(--accent-green),var(--accent-blue),var(--accent-purple));
          opacity:0;transition:opacity 0.4s ease;z-index:-1;
          padding:1px;
          -webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
          mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
          -webkit-mask-composite:xor;mask-composite:exclude;
        }
        .card:hover{
          box-shadow:var(--shadow-xl),var(--shadow-glow);
          transform:translateY(-8px);
          border-color:transparent;
        }
        .card:hover::before{opacity:1}
        .card-icon{
          width:56px;height:56px;
          background:linear-gradient(135deg,rgba(16,185,129,0.1) 0%,rgba(59,130,246,0.1) 100%);
          border-radius:var(--radius);
          display:flex;align-items:center;justify-content:center;
          margin-bottom:1.25rem;
          transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
        }
        .card:hover .card-icon{
          background:linear-gradient(135deg,var(--accent-green) 0%,var(--accent-emerald) 100%);
          transform:scale(1.1) rotate(-5deg);
          box-shadow:0 8px 20px rgba(16,185,129,0.3);
        }
        .card:hover .card-icon svg{color:white;transform:scale(1.1)}
        .card-icon svg{width:28px;height:28px;color:var(--accent-green);transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1)}
        .card h3{font-weight:700;margin-bottom:0.75rem;font-size:1.125rem;line-height:1.3}
        .card p{font-size:1.0625rem;color:var(--muted-foreground);line-height:1.6}
        .card-horizontal{display:flex;align-items:flex-start;gap:1rem}
        .card-horizontal .card-icon{margin-bottom:0;flex-shrink:0}
        
        .stats-box{display:inline-block;padding:1.5rem;background:rgba(23,23,23,0.1);border-radius:var(--radius);margin-top:3rem}
        .stats-box p{margin-bottom:0.5rem}
        .stats-box .note{color:var(--muted-foreground)}
        
        .quiz-card{max-width:42rem;margin:0 auto;padding:2.5rem}
        @media(max-width:480px){.quiz-card{padding:1.5rem}}
        @media(min-width:768px){.quiz-card{padding:3rem}}
        .quiz-card h3{font-size:1.5rem;font-weight:800;text-align:center;margin-bottom:2rem;line-height:1.3}
        @media(max-width:480px){.quiz-card h3{font-size:1.25rem;margin-bottom:1.5rem}}
        @media(min-width:768px){.quiz-card h3{font-size:1.75rem}}
        .quiz-label{font-size:1.125rem;font-weight:600;margin-bottom:1.5rem;display:block;color:var(--foreground)}
        @media(max-width:480px){.quiz-label{font-size:1rem;margin-bottom:1.25rem}}
        .checkbox-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem;margin-bottom:1.5rem}
        .checkbox-item{display:flex;align-items:center;gap:0.75rem;padding:1rem;background:var(--muted);border-radius:var(--radius);border:2px solid transparent;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);cursor:pointer}
        .checkbox-item:hover{border-color:var(--primary);background:rgba(23,23,23,0.05);transform:translateY(-2px);box-shadow:var(--shadow-sm)}
        .checkbox-item:has(input:checked){border-color:var(--primary);background:rgba(23,23,23,0.08);box-shadow:var(--shadow-sm)}
        .checkbox-item input{width:20px;height:20px;accent-color:var(--primary);cursor:pointer;flex-shrink:0}
        .checkbox-item label{font-size:1.0625rem;font-weight:500;cursor:pointer;flex:1}
        
        .pricing-grid{display:grid;gap:1.5rem;max-width:72rem;margin:0 auto}
        @media(min-width:640px){.pricing-grid{gap:2rem}}
        @media(min-width:768px){.pricing-grid{grid-template-columns:repeat(2,1fr);gap:2rem}}
        @media(min-width:1024px){.pricing-grid{grid-template-columns:repeat(3,1fr);gap:2rem}}
        .pricing-card{
          text-align:center;position:relative;overflow:hidden;padding:2.75rem 2rem;
          background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
          border-radius:var(--radius-lg);
        }
        .pricing-card::before{
          content:'';position:absolute;top:0;left:0;right:0;height:4px;
          background:linear-gradient(90deg,var(--accent-green),var(--accent-blue),var(--accent-purple));
          transform:scaleX(0);transition:transform 0.5s cubic-bezier(0.34,1.56,0.64,1);transform-origin:left;
        }
        .pricing-card:hover::before{transform:scaleX(1)}
        .pricing-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-xl),var(--shadow-glow)}
        .pricing-card .tier{font-size:1rem;color:var(--muted-foreground);margin-bottom:1rem;font-weight:600;text-transform:uppercase;letter-spacing:0.08em}
        .pricing-card .price{
          font-size:2.5rem;font-weight:800;margin-bottom:0.75rem;line-height:1;
          background:linear-gradient(135deg,#0f0f0f 0%,#3b3b3b 100%);
          -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
        }
        @media(min-width:768px){.pricing-card .price{font-size:2.75rem}}
        .pricing-card .per{font-size:1.0625rem;color:var(--muted-foreground);margin-bottom:2rem}
        
        .guide-section{
          background:
            radial-gradient(ellipse 60% 40% at 20% 80%, rgba(16,185,129,0.08) 0%, transparent 50%),
            radial-gradient(ellipse 50% 50% at 80% 20%, rgba(59,130,246,0.06) 0%, transparent 50%),
            linear-gradient(180deg,#f8f8f8 0%,#f0f0f0 100%);
          border-radius:var(--radius-lg);padding:3.5rem 2rem;text-align:center;max-width:56rem;margin:0 auto;
          position:relative;overflow:hidden;border:1px solid var(--border);
          box-shadow:var(--shadow-lg),inset 0 1px 0 rgba(255,255,255,0.8);
        }
        @media(min-width:768px){.guide-section{padding:4.5rem 3.5rem}}
        .guide-icon{width:80px;height:80px;margin:0 auto 2rem;color:var(--accent-green);animation:float 3s ease-in-out infinite;position:relative;z-index:1}
        .guide-section h2{font-size:1.875rem;font-weight:800;margin-bottom:1.25rem;position:relative;z-index:1;line-height:1.2}
        @media(min-width:768px){.guide-section h2{font-size:2.5rem;margin-bottom:1.5rem}}
        .guide-section h2 span{
          background:linear-gradient(135deg,#10b981 0%,#059669 100%);
          -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
        }
        .guide-section .subtitle{font-size:1.25rem;color:var(--muted-foreground);margin-bottom:2rem;position:relative;z-index:1;font-weight:500}
        @media(min-width:768px){.guide-section .subtitle{font-size:1.5rem;margin-bottom:2.5rem}}
        .guide-section .note{margin-bottom:2.5rem;max-width:32rem;margin-left:auto;margin-right:auto;position:relative;z-index:1;line-height:1.7}
        
        
        .cta-box{
          max-width:48rem;margin:0 auto;
          background:#fafafa;
          border-radius:var(--radius-lg);padding:3.5rem 2rem;text-align:center;
          transition:all 0.5s cubic-bezier(0.34,1.56,0.64,1);
          border:1px solid var(--border);
          box-shadow:var(--shadow-lg),inset 0 1px 0 rgba(255,255,255,0.8);
        }
        .cta-box:hover{
          transform:translateY(-6px) scale(1.01);
          box-shadow:var(--shadow-xl),var(--shadow-glow),inset 0 1px 0 rgba(255,255,255,0.9);
          border-color:rgba(16,185,129,0.2);
        }
        @media(min-width:768px){.cta-box{padding:4.5rem 3.5rem}}
        .cta-box h2{font-size:1.875rem;font-weight:800;margin-bottom:1.5rem;line-height:1.2}
        @media(min-width:768px){.cta-box h2{font-size:2.5rem;margin-bottom:2rem}}
        .cta-box p{font-size:1.125rem;color:var(--muted-foreground);margin-bottom:2.5rem;line-height:1.7}
        @media(min-width:768px){.cta-box p{font-size:1.25rem}}
        
        .guarantees-list{display:grid;gap:1rem;max-width:48rem;margin:0 auto 2rem}
        @media(min-width:768px){.guarantees-list{grid-template-columns:repeat(2,1fr)}}
        .guarantee-item{
          display:flex;align-items:flex-start;gap:1rem;padding:1.5rem;
          background:linear-gradient(135deg,#ffffff 0%,#fafafa 100%);
          border-radius:var(--radius-md);border:1px solid var(--border);
          transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
          box-shadow:var(--shadow-sm);
        }
        .guarantee-item:hover{
          transform:translateX(10px);
          border-color:var(--accent-green);
          box-shadow:var(--shadow-lg),0 0 30px rgba(16,185,129,0.1);
          background:linear-gradient(135deg,#ffffff 0%,#f0fdf4 100%);
        }
        .guarantee-item svg{width:28px;height:28px;color:var(--accent-green);flex-shrink:0;margin-top:2px;transition:transform 0.3s ease}
        .guarantee-item:hover svg{transform:scale(1.15) rotate(5deg)}
        .guarantee-item p{font-size:1.0625rem;font-weight:500;line-height:1.5}
        
        .steps-grid{display:grid;gap:1.5rem;margin-bottom:3rem}
        @media(min-width:768px){.steps-grid{grid-template-columns:repeat(2,1fr)}}
        @media(min-width:1024px){.steps-grid{grid-template-columns:repeat(4,1fr)}}
        .step-card{
          position:relative;padding:2.25rem;
          background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
          border-radius:var(--radius-md);border:1px solid var(--border);
          transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
          box-shadow:var(--shadow-sm);overflow:hidden;
        }
        .step-card::before{
          content:'';position:absolute;bottom:0;left:0;right:0;height:3px;
          background:linear-gradient(90deg,var(--accent-green),var(--accent-blue));
          transform:scaleX(0);transition:transform 0.4s ease;transform-origin:left;
        }
        .step-card:hover::before{transform:scaleX(1)}
        .step-card:hover{transform:translateY(-10px);box-shadow:var(--shadow-xl),var(--shadow-glow);border-color:transparent}
        .step-number{
          font-size:4rem;font-weight:800;margin-bottom:1.25rem;line-height:1;letter-spacing:-0.02em;
          background:linear-gradient(135deg,rgba(16,185,129,0.2) 0%,rgba(59,130,246,0.15) 100%);
          -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
          transition:all 0.4s ease;
        }
        .step-card:hover .step-number{
          background:linear-gradient(135deg,var(--accent-green) 0%,var(--accent-blue) 100%);
          -webkit-background-clip:text;background-clip:text;
          transform:scale(1.05);
        }
        .step-card h3{font-size:1.375rem;font-weight:700;margin-bottom:1rem;line-height:1.3}
        .step-card p{font-size:1.0625rem;color:var(--muted-foreground);line-height:1.7}
        
        .cases-wrapper{position:relative;margin:0 -1.5rem;padding:0 1.5rem}
        @media(min-width:768px){.cases-wrapper{margin:0;padding:0}}
        
        /* New Cases Slider */
        .cases-section-header{display:flex;align-items:flex-end;justify-content:space-between;margin-bottom:2.5rem}
        .cases-section-header .section-title{margin:0}
        .cases-section-header .section-title span{font-size:1rem;color:var(--muted-foreground);font-weight:500;display:block;margin-bottom:0.5rem;text-transform:uppercase;letter-spacing:0.05em}
        .cases-section-header .section-title h2{font-size:2rem;font-weight:800;margin:0;line-height:1.2}
        @media(min-width:768px){.cases-section-header .section-title h2{font-size:2.5rem}}
        .cases-section-header .section-title h2 strong{color:var(--primary)}
        .cases-nav{display:flex;gap:0;background:rgba(50,50,50,0.9);border-radius:14px;padding:4px}
        .cases-nav-btn{width:48px;height:48px;border-radius:10px;background:transparent;color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease}
        .cases-nav-btn:hover{background:rgba(255,255,255,0.1)}
        .cases-nav-btn:disabled{opacity:0.4;cursor:not-allowed;transform:none}
        .cases-nav-btn svg{width:20px;height:20px}
        .cases-nav-bottom{display:none;justify-content:center;gap:10px;margin-top:1.5rem}
        .cases-nav-bottom .cases-nav-btn{width:52px;height:52px;background:rgba(60,70,80,0.95);border-radius:12px}
        
        .cases-slider{
          position:relative;overflow:hidden;border-radius:24px;
          background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
          border:1px solid var(--border);
          box-shadow:var(--shadow-xl),inset 0 1px 0 rgba(255,255,255,0.8);
        }
        .cases-slide{display:none;animation:fadeIn 0.4s ease}
        .cases-slide.active{display:grid;grid-template-columns:1fr;gap:0}
        @media(min-width:768px){.cases-slide.active{grid-template-columns:1fr 1fr}}
        @keyframes fadeIn{from{opacity:0}to{opacity:1}}
        
        .case-slide-image{position:relative;height:280px;overflow:hidden}
        @media(min-width:768px){.case-slide-image{height:auto;min-height:400px}}
        .case-slide-image img{width:100%;height:100%;object-fit:cover}
        .case-slide-image-placeholder{width:100%;height:100%;background:linear-gradient(135deg,#e5e5e5 0%,#f5f5f5 50%,#e5e5e5 100%);display:flex;align-items:center;justify-content:center}
        .case-slide-image-placeholder svg{width:80px;height:80px;color:var(--muted-foreground);opacity:0.3}
        
        .case-slide-content{padding:2rem}
        @media(min-width:768px){.case-slide-content{padding:2.5rem 3rem}}
        .case-slide-title{font-size:1.5rem;font-weight:700;margin-bottom:1.5rem}
        @media(min-width:768px){.case-slide-title{font-size:1.75rem}}
        
        .case-slide-row{margin-bottom:1.25rem}
        .case-slide-label{font-size:1rem;color:var(--muted-foreground);margin-bottom:0.25rem}
        .case-slide-value{font-size:1rem;font-weight:500}
        .case-slide-value.highlight{color:#22c55e;line-height:1.5}
        
        .case-slide-meta{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.5rem}
        .case-slide-rating{display:flex;align-items:center;gap:2rem;margin-bottom:2rem;padding:1rem;background:var(--muted);border-radius:var(--radius)}
        .case-rating-item{display:flex;align-items:center;gap:0.5rem}
        .case-rating-item .label{font-size:1rem;color:var(--muted-foreground)}
        .case-rating-item .star{color:#FFD700}
        .case-rating-item .value{font-size:1.25rem;font-weight:700}
        .case-rating-item.before .value{color:var(--muted-foreground)}
        .case-rating-item.after .value{color:var(--primary)}
        
        .case-slide-buttons{display:flex;gap:1rem;flex-wrap:wrap}
        .case-slide-buttons .btn{flex:1;min-width:140px}
        .btn-green{
          background:linear-gradient(135deg,#10b981 0%,#059669 100%);
          color:#fff;border:none;
          box-shadow:0 6px 20px rgba(16,185,129,0.35);
        }
        .btn-green:hover{
          background:linear-gradient(135deg,#34d399 0%,#10b981 100%);
          transform:translateY(-3px);
          box-shadow:0 10px 30px rgba(16,185,129,0.45);
        }
        
        .services-wrapper{position:relative;margin:0 -1.5rem;padding:0 1.5rem}
        @media(min-width:768px){.services-wrapper{margin:0;padding:0}}
        
        /* Dark Services Section */
        .section-dark{
          background:
            radial-gradient(ellipse 100% 80% at 0% 0%, rgba(16,185,129,0.08) 0%, transparent 50%),
            radial-gradient(ellipse 80% 60% at 100% 100%, rgba(59,130,246,0.06) 0%, transparent 50%),
            linear-gradient(180deg,#0a0a0a 0%,#0f0f0f 50%,#0a0a0a 100%);
          color:#fff;
          position:relative;
        }
        .section-dark::before{
          content:'';position:absolute;inset:0;
          background:url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
          opacity:0.02;pointer-events:none;
        }
        .section-dark .section-header h2{color:#fff}
        .section-dark .section-header h2 strong{
          background:linear-gradient(135deg,#10b981 0%,#34d399 100%);
          -webkit-background-clip:text;
          -webkit-text-fill-color:transparent;
          background-clip:text;
        }
        
        /* Тёмно-синий фон для секции услуг */
        #services.section-dark {
          background:
            radial-gradient(ellipse 100% 80% at 0% 0%, rgba(16,185,129,0.06) 0%, transparent 50%),
            radial-gradient(ellipse 80% 60% at 100% 100%, rgba(59,130,246,0.12) 0%, transparent 50%),
            linear-gradient(180deg,#0a1225 0%,#0f1d3a 50%,#0a1225 100%);
        }
        
        .services-header{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:1rem;margin-bottom:2.5rem}
        .services-header h2{font-size:2rem;font-weight:800;margin:0}
        @media(min-width:768px){.services-header h2{font-size:2.5rem}}
        .services-header h2 strong{color:#22c55e}
        .services-header-right{display:flex;align-items:center;gap:0.75rem}
        .btn-green-outline{background:#22c55e;color:#fff;border:none;padding:0.875rem 1.5rem}
        .btn-green-outline:hover{background:#16a34a}
        .services-nav{display:flex;gap:0;background:rgba(50,50,50,0.9);border-radius:14px;padding:4px}
        .services-nav-btn{width:44px;height:44px;border-radius:10px;background:transparent;color:#fff;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;transition:all 0.3s ease}
        .services-nav-btn:hover{background:rgba(255,255,255,0.1)}
        .services-nav-btn:disabled{opacity:0.4;cursor:not-allowed}
        .services-nav-btn svg{width:18px;height:18px}
        .services-mobile-nav{display:none}
        
        .services-slider{display:flex;gap:1.25rem;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;-webkit-overflow-scrolling:touch;padding-bottom:1rem;scrollbar-width:none;-ms-overflow-style:none}
        .services-slider::-webkit-scrollbar{display:none}
        
        .service-card-new{
          flex:0 0 calc(100% - 1rem);min-width:260px;max-width:280px;scroll-snap-align:start;
          background:linear-gradient(180deg,#ffffff 0%,#fafafa 100%);
          border-radius:20px;padding:2rem 1.5rem;text-align:center;
          transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
          border:1px solid rgba(255,255,255,0.1);
          position:relative;overflow:hidden;
        }
        .service-card-new::before{
          content:'';position:absolute;top:0;left:0;right:0;height:3px;
          background:linear-gradient(90deg,var(--accent-green),var(--accent-blue));
          transform:scaleX(0);transition:transform 0.4s ease;transform-origin:left;
        }
        .service-card-new:hover::before{transform:scaleX(1)}
        @media(min-width:640px){.service-card-new{flex:0 0 calc(50% - 0.75rem)}}
        @media(min-width:1024px){.service-card-new{flex:0 0 calc(25% - 1rem)}}
        .service-card-new:hover{transform:translateY(-8px);box-shadow:0 24px 48px rgba(0,0,0,0.25),0 0 40px rgba(16,185,129,0.1)}
        
        .service-icon{width:80px;height:80px;margin:0 auto 1.25rem;border-radius:20px;display:flex;align-items:center;justify-content:center;font-size:2.5rem;transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1)}
        .service-card-new:hover .service-icon{transform:scale(1.1) rotate(-5deg)}
        .service-icon-2gis{background:linear-gradient(135deg,#10b981 0%,#059669 100%);box-shadow:0 8px 20px rgba(16,185,129,0.3)}
        .service-icon-yandex{background:linear-gradient(135deg,#fff 0%,#f5f5f5 100%);border:1px solid #e5e5e5}
        .service-icon-google{background:linear-gradient(135deg,#fff 0%,#f5f5f5 100%);border:1px solid #e5e5e5}
        .service-icon-flamp{background:linear-gradient(135deg,#1a1a1a 0%,#0a0a0a 100%)}
        .service-icon-yell{background:linear-gradient(135deg,#ff6b35 0%,#f54a00 100%);box-shadow:0 8px 20px rgba(255,107,53,0.3)}
        .service-icon-zoon{background:linear-gradient(135deg,#8b5cf6 0%,#7c3aed 100%);box-shadow:0 8px 20px rgba(139,92,246,0.3)}
        .service-icon-olx{background:linear-gradient(135deg,#002f34 0%,#001f22 100%)}
        .service-icon-kaspi{background:linear-gradient(135deg,#f14635 0%,#dc2626 100%);box-shadow:0 8px 20px rgba(241,70,53,0.3)}
        .service-icon img,.service-icon svg{width:48px;height:48px;object-fit:contain}
        
        .service-card-new .service-name{font-size:1rem;font-weight:700;color:#1a1a1a;margin-bottom:0.5rem;text-transform:uppercase;letter-spacing:0.02em}
        .service-card-new .service-desc{font-size:1rem;color:#6b6b6b;margin-bottom:0.75rem;min-height:40px}
        .service-card-new .service-price{
          font-size:1.0625rem;
          background:linear-gradient(135deg,#10b981 0%,#059669 100%);
          -webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;
          font-weight:700;font-style:italic;margin-bottom:1.25rem;
        }
        .service-card-new .btn{
          background:linear-gradient(135deg,#10b981 0%,#059669 100%);
          color:#fff;border:none;padding:0.875rem 2rem;font-size:1.0625rem;
          box-shadow:0 6px 16px rgba(16,185,129,0.3);
        }
        .service-card-new .btn:hover{
          background:linear-gradient(135deg,#34d399 0%,#10b981 100%);
          box-shadow:0 10px 24px rgba(16,185,129,0.4);
        }
        
        .faq-list{max-width:48rem;margin:0 auto}
        .faq-item{border-bottom:1px solid var(--border);overflow:hidden}
        .faq-question{width:100%;display:flex;align-items:center;gap:0.75rem;padding:1.25rem 0;background:none;border:none;cursor:pointer;text-align:left;font-size:1rem;font-weight:500;transition:all 0.3s ease}
        .faq-question:hover{color:var(--primary)}
        .faq-number{color:var(--primary);font-weight:700;width:24px;height:24px;display:flex;align-items:center;justify-content:center;background:rgba(23,23,23,0.1);border-radius:50%;font-size:1rem}
        .faq-toggle{margin-left:auto;font-size:1.5rem;color:var(--muted-foreground);transition:all 0.4s cubic-bezier(0.4,0,0.2,1);width:32px;height:32px;display:flex;align-items:center;justify-content:center;background:var(--muted);border-radius:50%}
        .faq-answer{max-height:0;overflow:hidden;transition:all 0.4s cubic-bezier(0.4,0,0.2,1);color:var(--muted-foreground);font-size:1.0625rem;line-height:1.7}
        .faq-item.active .faq-answer{max-height:500px;padding-bottom:1.25rem}
        .faq-item.active .faq-toggle{transform:rotate(45deg);background:var(--primary);color:white}
        
        .contact-card{max-width:42rem;margin:0 auto}
        .contact-card h2{font-size:1.875rem;font-weight:700;text-align:center;margin-bottom:0.5rem}
        .contact-card>p{text-align:center;color:var(--muted-foreground);margin-bottom:2rem}
        .form-group{margin-bottom:1.5rem}
        .form-label{display:block;font-weight:500;margin-bottom:0.5rem}
        .form-input{width:100%;padding:1rem 1.25rem;border:2px solid var(--border);border-radius:var(--radius);font-size:1rem;font-family:inherit;transition:all 0.3s cubic-bezier(0.4,0,0.2,1);background:var(--card);color:var(--foreground)}
        .form-input:focus{outline:none;border-color:var(--primary);box-shadow:0 0 0 4px rgba(23,23,23,0.08);transform:translateY(-1px)}
        .form-input::placeholder{color:var(--muted-foreground);opacity:0.7}
        .form-input:hover:not(:focus){border-color:rgba(23,23,23,0.3)}
        
        .footer{
          background:#fafafa;
          padding:4rem 0 2rem;
          border-top:1px solid var(--border);
          position:relative;
        }
        .footer::before{
          display:none;
        }
        .footer-grid{display:grid;gap:2rem;margin-bottom:2rem}
        @media(min-width:768px){.footer-grid{grid-template-columns:repeat(4,1fr)}}
        .footer-card{background:transparent}
        .footer-logo{display:flex;align-items:center;gap:0.75rem;margin-bottom:0.75rem;justify-content:center}
        .footer-logo span{font-size:1.25rem;font-weight:700;color:var(--foreground)}
        .footer-logo-img{width:40px;height:40px;object-fit:contain}
        .footer h3{font-size:1.125rem;font-weight:700;margin-bottom:1rem}
        .footer h4{font-weight:600;margin-bottom:1rem;font-size:1rem;color:var(--foreground)}
        .footer p{font-size:1rem;color:var(--muted-foreground);line-height:1.6}
        .footer ul{list-style:none}
        .footer li{margin-bottom:0.625rem;font-size:1.0625rem;color:var(--muted-foreground)}
        .footer a{font-size:1.0625rem;color:var(--muted-foreground);text-decoration:none;transition:all 0.3s ease}
        .footer a:hover{color:var(--accent-green)}
        .footer-bottom{padding-top:2rem;border-top:1px solid var(--border);text-align:center}
        .footer-bottom p{font-size:1rem;color:var(--muted-foreground)}
        
        /* Mobile footer cards */
        @media(max-width:767px){
          .footer{padding:1.5rem 0 1rem;background:#fafafa}
          .footer-grid{gap:0.75rem}
          .footer-card{
            background:#ffffff;
            border-radius:16px;
            padding:1.25rem 1.5rem;
            text-align:center;
            box-shadow:0 1px 3px rgba(0,0,0,0.04);
          }
          .footer-brand{padding:1.5rem}
          .footer-logo{justify-content:center}
          .footer h4{margin-bottom:0.75rem;text-align:center}
          .footer ul{text-align:center}
          .footer li{margin-bottom:0.5rem;text-align:center}
          .footer a{display:block;padding:0.25rem 0}
          .footer-bottom{display:none}
          .footer-legal{padding:1rem 1.5rem}
          .footer-legal h4{margin-bottom:0.5rem}
          .footer-legal .muted{font-size:1.0625rem;color:var(--muted-foreground);margin:0}
        }
        
        /* Desktop footer legal */
        @media(min-width:768px){
          .footer-legal .muted{margin-top:0.5rem;font-size:1rem;color:var(--muted-foreground)}
        }
        
        .text-center{text-align:center}
        .mt-8{margin-top:2rem}
        .buttons-center{display:flex;flex-direction:column;gap:1rem;justify-content:center;align-items:center;position:relative;z-index:1}
        .buttons-center .btn{width:100%;max-width:300px}
        @media(min-width:480px){.buttons-center .btn{width:auto}}
        @media(min-width:640px){.buttons-center{flex-direction:row}}
        .scroll-progress{
          position:fixed;top:0;left:0;height:3px;
          background:linear-gradient(90deg,var(--accent-green),var(--accent-blue),var(--accent-purple));
          z-index:100;transition:width 0.15s cubic-bezier(0.4,0,0.2,1);
          box-shadow:0 0 10px rgba(16,185,129,0.5);
        }
        .back-to-top{
          position:fixed;bottom:2rem;right:2rem;width:56px;height:56px;
          background:linear-gradient(135deg,#0f0f0f 0%,#1a1a1a 100%);
          color:white;border:none;border-radius:50%;cursor:pointer;
          opacity:0;visibility:hidden;
          transition:all 0.4s cubic-bezier(0.34,1.56,0.64,1);
          display:flex;align-items:center;justify-content:center;
          box-shadow:0 8px 24px rgba(0,0,0,0.25);z-index:50;
        }
        .back-to-top.visible{opacity:1;visibility:visible}
        .back-to-top:hover{
          transform:translateY(-6px) scale(1.1);
          box-shadow:0 14px 36px rgba(0,0,0,0.3),var(--shadow-glow);
          background:linear-gradient(135deg,#1a1a1a 0%,#2a2a2a 100%);
        }
        .back-to-top:active{transform:translateY(-4px) scale(1.05)}
        @media(max-width:768px){.back-to-top{bottom:1.5rem;right:1.5rem;width:48px;height:48px}}
        
        /* Mobile Menu */
        .mobile-menu{
          position:fixed !important;
          top:80px !important;
          left:12px !important;
          right:12px !important;
          bottom:auto !important;
          width:auto !important;
          height:auto !important;
          background:#ffffff !important;
          z-index:99;
          display:flex;flex-direction:column;
          padding:24px 28px !important;
          transform:translateY(-20px);
          opacity:0;
          visibility:hidden;
          transition:transform 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
          box-shadow:0 4px 24px rgba(0,0,0,0.08) !important;
          border-radius:24px !important;
          max-height:none !important;
          gap:0 !important;
        }
        .mobile-menu.active{transform:translateY(0);opacity:1;visibility:visible}
        .mobile-menu-overlay{
          position:fixed;top:0;left:0;width:100%;height:100%;
          background:rgba(0,0,0,0.15);
          z-index:98;
          opacity:0;visibility:hidden;
          transition:all 0.25s ease;
        }
        .mobile-menu-overlay.active{opacity:1;visibility:visible}
        .mobile-menu-header{
          display:none;
        }
        .mobile-menu-title{
          font-size:18px;
          font-weight:600;
          color:#1a1a1a;
        }
        .mobile-menu-close{
          width:40px;height:40px;
          border-radius:10px;
          border:1px solid #e5e7eb;
          background:#fff;
          display:flex;align-items:center;justify-content:center;
          cursor:pointer;
          transition:all 0.2s ease;
        }
        .mobile-menu-close:hover{background:#f5f5f5}
        .mobile-menu-close svg{color:#6b7280}
        .mobile-menu-links{
          display:flex !important;
          flex-direction:column !important;
          gap:0 !important;
          padding:0 !important;
          margin:0 !important;
        }
        .mobile-nav-link{
          display:block !important;
          padding:18px 0 !important;
          font-size:17px !important;
          font-weight:600 !important;
          color:#1a1a1a !important;
          text-decoration:none !important;
          background:transparent !important;
          border:none !important;
          border-bottom:1px solid #f0f0f0 !important;
          transition:color 0.2s ease;
          margin:0 !important;
        }
        .mobile-nav-link:last-child{
          border-bottom:none !important;
          padding-bottom:0 !important;
        }
        .mobile-nav-link:first-child{
          padding-top:0 !important;
        }
        .mobile-nav-link:active{
          color:#10b981 !important;
        }
        .mobile-menu-btn{
          display:none;
        }
        .mobile-menu-copy{
          display:none;
        }
        
        /* WhatsApp Widget */
        .whatsapp-widget{position:fixed;bottom:100px;right:2rem;z-index:50;display:flex;flex-direction:column;align-items:flex-end;gap:10px}
        .whatsapp-tooltip{background:white;padding:12px 16px;border-radius:10px;box-shadow:0 4px 20px rgba(0,0,0,0.15);font-size:1rem;opacity:0;transform:translateX(20px);transition:all 0.3s ease;pointer-events:none;white-space:nowrap}
        .whatsapp-widget:hover .whatsapp-tooltip{opacity:1;transform:translateX(0)}
        .whatsapp-btn{width:60px;height:60px;background:#171717;border-radius:50%;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 20px rgba(23,23,23,0.3);transition:all 0.3s ease;animation:pulse 2s infinite}
        .whatsapp-btn:hover{transform:scale(1.1);box-shadow:0 6px 30px rgba(23,23,23,0.4);background:#2a2a2a}
        .whatsapp-btn svg{width:32px;height:32px;fill:white}
        
        /* Exit Popup */
        .popup-overlay{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.6);z-index:200;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all 0.3s ease;padding:1rem}
        .popup-overlay.active{opacity:1;visibility:visible}
        .popup-content{background:white;border-radius:1rem;padding:2rem;max-width:420px;width:100%;text-align:center;transform:scale(0.8);transition:all 0.3s ease;position:relative}
        .popup-overlay.active .popup-content{transform:scale(1)}
        .popup-close{position:absolute;top:1rem;right:1rem;background:none;border:none;font-size:1.5rem;cursor:pointer;color:var(--muted-foreground);transition:color 0.3s ease}
        .popup-close:hover{color:var(--foreground)}
        .popup-icon{font-size:3rem;margin-bottom:1rem}
        .popup-content h3{font-size:1.5rem;font-weight:700;margin-bottom:0.5rem}
        .popup-content p{color:var(--muted-foreground);margin-bottom:1.5rem}
        .popup-content .form-input{margin-bottom:1rem}
        
        /* Quiz Steps */
        .quiz-step{display:none}
        .quiz-step.active{display:block}
        .quiz-progress{display:flex;gap:0.5rem;margin-bottom:1.5rem;justify-content:center}
        .quiz-progress-dot{width:10px;height:10px;border-radius:50%;background:var(--border);transition:all 0.3s ease}
        .quiz-progress-dot.active{background:var(--primary);transform:scale(1.2)}
        .quiz-progress-dot.completed{background:var(--primary)}
        
        /* Messenger Buttons */
        .btn-whatsapp{background:#25D366;color:#fff;border:none}
        .btn-whatsapp:hover{background:#1ebe5d;transform:translateY(-2px);box-shadow:0 8px 25px rgba(37,211,102,0.35)}
        .btn-telegram{background:#0088cc;color:#fff;border:none}
        .btn-telegram:hover{background:#0077b5;transform:translateY(-2px);box-shadow:0 8px 25px rgba(0,136,204,0.35)}
        
        /* Case Modal */
        .case-modal{position:fixed;top:0;left:0;width:100%;height:100%;background:rgba(0,0,0,0.8);z-index:200;display:flex;align-items:center;justify-content:center;opacity:0;visibility:hidden;transition:all 0.3s ease;padding:1rem}
        .case-modal.active{opacity:1;visibility:visible}
        .case-modal-content{background:#fff;border-radius:20px;padding:2rem;max-width:600px;width:100%;transform:scale(0.9);transition:all 0.3s ease;position:relative;max-height:90vh;overflow-y:auto}
        .case-modal.active .case-modal-content{transform:scale(1)}
        .case-modal-close{position:absolute;top:1rem;right:1rem;background:var(--muted);border:none;width:36px;height:36px;border-radius:50%;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:1.25rem;color:var(--muted-foreground);transition:all 0.3s ease}
        .case-modal-close:hover{background:var(--primary);color:#fff}
        .case-modal-title{font-size:1.5rem;font-weight:700;margin-bottom:1rem}
        .case-modal-comparison{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.5rem}
        .case-modal-item{background:var(--muted);border-radius:12px;padding:1.25rem;text-align:center}
        .case-modal-item.before{border:2px solid var(--destructive)}
        .case-modal-item.after{border:2px solid #22c55e}
        .case-modal-label{font-size:1rem;color:var(--muted-foreground);margin-bottom:0.5rem}
        .case-modal-rating{font-size:2.5rem;font-weight:800}
        .case-modal-item.before .case-modal-rating{color:var(--destructive)}
        .case-modal-item.after .case-modal-rating{color:#22c55e}
        .case-modal-details{background:var(--muted);border-radius:12px;padding:1.25rem}
        .case-modal-details p{margin-bottom:0.75rem;font-size:1.0625rem}
        .case-modal-details p:last-child{margin-bottom:0}
        
        /* Loading states */
        .btn-loading{position:relative;color:transparent!important;pointer-events:none}
        .btn-loading::after{content:'';position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);width:20px;height:20px;border:2px solid rgba(255,255,255,0.3);border-top-color:#fff;border-radius:50%;animation:spin 0.8s linear infinite}
        @keyframes spin{to{transform:translate(-50%,-50%) rotate(360deg)}}
        .btn-success{background:#22c55e!important;color:#fff!important}
        .btn-error{background:var(--destructive)!important;color:#fff!important}
        
        /* Ripple effect */
        .btn{position:relative;overflow:hidden}
        .ripple{position:absolute;border-radius:50%;background:rgba(255,255,255,0.4);transform:scale(0);animation:ripple-anim 0.6s linear;pointer-events:none}
        @keyframes ripple-anim{to{transform:scale(4);opacity:0}}
    

        /* HERO - 1:1 как на скриншоте */
        .hero{
          padding:clamp(4rem,6vw,6rem) 0 clamp(5rem,8vw,8rem);
          background:linear-gradient(180deg, #f8fafc 0%, #ffffff 20%, #ffffff 80%, #f0f9ff 100%);
          position:relative;
          overflow:hidden;
        }
        .hero-stars{
          display:none !important;
          visibility:hidden !important;
          opacity:0 !important;
        }
        .hero-stars.left{
          display:none !important;
        }
        .hero-stars.right{
          display:none !important;
        }
        @media(min-width:768px){
          .hero-stars.left{display:none !important}
          .hero-stars.right{display:none !important}
        }
        .hero-grid{
          max-width:900px;
          margin:0 auto;
          padding:0 1.5rem;
          position:relative;
          z-index:1;
        }
        @media(min-width:768px){.hero-grid{padding:0 2rem}}
        .hero .badge{
          display:inline-flex;
          align-items:center;
          gap:8px;
          padding:8px 16px;
          background:rgba(16,185,129,0.08);
          border:1px solid rgba(16,185,129,0.15);
          border-radius:50px;
          color:#0a0a0a;
          font-size:1.0625rem;
          font-weight:500;
          margin-bottom:1.25rem;
        }
        @media(min-width:768px){.hero .badge{font-size:1rem;padding:10px 20px;margin-bottom:1.5rem}}
        .hero h1{
          color:#0a0a0a;
          font-size:clamp(1.75rem,4vw,2.75rem);
          line-height:1.15;
          margin:0 0 1rem;
          font-weight:700;
          letter-spacing:-0.02em;
        }
        .hero h1 .accent-text{
          color:#10b981;
          background:none;
          -webkit-background-clip:unset;
          -webkit-text-fill-color:#10b981;
          background-clip:unset;
        }
        @media(min-width:768px){.hero h1{margin-bottom:1.25rem;font-size:clamp(2rem,4.5vw,3rem)}}
        .hero .lead{
          font-size:1rem;
          color:rgba(10,10,10,0.6);
          line-height:1.6;
          margin:0 0 1.75rem;
          max-width:500px;
        }
        @media(min-width:768px){.hero .lead{font-size:1.0625rem;margin-bottom:2rem}}
        @media(max-width:1023px){.hero .lead{margin-left:auto;margin-right:auto}}
        .hero-actions{
          margin-bottom:1.5rem;
        }
        @media(min-width:768px){.hero-actions{margin-bottom:1.75rem}}
        .hero .btn-primary{
          display:inline-flex;
          align-items:center;
          justify-content:center;
          padding:14px 28px;
          background:#059669;
          color:#fff;
          font-size:1.0625rem;
          font-weight:600;
          border-radius:10px;
          border:none;
          text-decoration:none;
          transition:all 0.3s cubic-bezier(0.4,0,0.2,1);
          box-shadow:0 4px 14px rgba(5,150,105,0.25);
        }
        .hero .btn-primary:hover{
          transform:translateY(-2px);
          box-shadow:0 6px 20px rgba(5,150,105,0.35);
          background:#10b981;
        }
        @media(min-width:768px){.hero .btn-primary{padding:16px 32px;font-size:1rem}}
        .hero-meta{
          display:flex;
          gap:1.5rem;
          flex-wrap:wrap;
          background:transparent !important;
        }
        .hm-item{
          display:inline-flex;
          align-items:center;
          gap:6px;
          color:rgba(10,10,10,0.6);
          font-size:1.0625rem;
          font-weight:500;
          background:transparent !important;
        }
        .hm-item .ic{
          width:16px;
          height:16px;
          color:#3b82f6;
          flex-shrink:0;
          stroke:currentColor;
          filter:none !important;
        }
        .hm-item .ic-bolt{
          color:#3b82f6;
          filter:none !important;
        }
        .hm-item .ic-shield{
          color:#10b981;
          filter:none !important;
        }
        @media(min-width:768px){.hm-item{font-size:1rem;gap:8px}.hm-item .ic{width:18px;height:18px}}

        .hero-visual{
          position:relative;
          width:100%;
          height:480px;
          margin:0 auto;
          max-width:520px;
        }
        @media(min-width:980px){
          .hero-visual{
            width:520px;
            height:520px;
            margin-left:auto;
          }
        }
        @media(max-width:980px){
          .hero-visual{
            height:420px;
            margin-top:1rem;
          }
        }
        
        .phone-mockup{
          position:relative;
          width:100%;
          height:100%;
          display:flex;
          align-items:center;
          justify-content:center;
        }
        .phone-frame{
          position:absolute;
          right:20px;
          top:50%;
          transform:translateY(-50%) rotate(6deg);
          width:260px;
          height:500px;
          background:linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
          border-radius:36px;
          box-shadow:0 32px 64px rgba(0,0,0,0.5), 0 0 0 2px rgba(255,255,255,0.1);
          overflow:hidden;
          will-change:transform;
          animation:phoneFloat 6s ease-in-out infinite;
        }
        @media(min-width:980px){
          .phone-frame{
            width:280px;
            height:540px;
            right:30px;
          }
        }
        @media(max-width:640px){
          .phone-frame{
            width:220px;
            height:420px;
            border-radius:28px;
            right:10px;
          }
        }
        @keyframes phoneFloat{
          0%,100%{transform:translateY(-50%) rotate(6deg) translateY(0)}
          50%{transform:translateY(-50%) rotate(6deg) translateY(-8px)}
        }
        .phone-screen{
          position:absolute;
          top:8px;
          left:8px;
          right:8px;
          bottom:8px;
          background:#e8efe8;
          border-radius:28px;
          overflow:hidden;
          z-index:1;
        }
        @media(min-width:980px){.phone-screen{border-radius:32px}}
        @media(max-width:640px){.phone-screen{top:6px;left:6px;right:6px;bottom:6px;border-radius:22px}}
        
        .map-container{
          position:absolute;
          inset:0;
          background:#e8efe8;
          z-index:1;
        }
        .map-streets{
          position:absolute;
          inset:0;
          font-size:0.5625rem;
          color:rgba(80,80,80,0.5);
          font-weight:500;
          z-index:1;
        }
        .street{
          position:absolute;
          white-space:nowrap;
        }
        .street:nth-child(1){top:8%;right:15%;font-size:0.5rem;color:rgba(80,80,80,0.4)}
        .street:nth-child(2){top:18%;right:8%}
        .street:nth-child(3){top:28%;right:20%}
        .street:nth-child(4){top:38%;left:15%}
        .street:nth-child(5){bottom:38%;left:8%}
        .street:nth-child(6){bottom:28%;left:20%}
        .street:nth-child(7){bottom:18%;right:15%}
        
        .map-markers{
          position:absolute;
          inset:0;
          z-index:2;
        }
        .map-marker{
          position:absolute;
          width:28px;
          height:28px;
          background:#fff;
          border-radius:8px;
          display:flex;
          align-items:center;
          justify-content:center;
          font-size:1rem;
          box-shadow:0 2px 8px rgba(0,0,0,0.15);
          z-index:3;
        }
        .marker-1{top:12%;left:20%;background:#fff}
        .marker-2{top:22%;right:12%}
        .marker-3{top:45%;left:12%}
        .marker-4{bottom:35%;right:18%}
        .marker-center{
          top:42%;
          right:35%;
          width:44px;
          height:44px;
          background:linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
          border-radius:50%;
          box-shadow:0 4px 16px rgba(59,130,246,0.5);
          z-index:2;
          border:3px solid #fff;
        }
        .marker-center::after{
          content:"";
          position:absolute;
          top:50%;
          left:50%;
          transform:translate(-50%,-50%);
          width:16px;
          height:16px;
          background:#fff;
          border-radius:50%;
        }
        
        .phone-brand{
          display:none;
        }
        
        .rating-card-phone{
          position:absolute;
          bottom:12px;
          left:10px;
          right:10px;
          background:#fff;
          border-radius:12px;
          padding:12px;
          box-shadow:0 4px 16px rgba(0,0,0,0.12);
          z-index:10;
        }
        @media(min-width:980px){
          .rating-card-phone{
            bottom:14px;
            left:12px;
            right:12px;
            padding:14px;
            border-radius:14px;
          }
        }
        @media(max-width:640px){
          .rating-card-phone{
            bottom:8px;
            left:8px;
            right:8px;
            padding:10px;
            border-radius:10px;
          }
        }
        .rating-card-header{
          display:flex;
          align-items:center;
          gap:6px;
          margin-bottom:2px;
        }
        .rating-title{
          font-size:1.0625rem;
          font-weight:700;
          color:#2563eb;
        }
        @media(min-width:980px){.rating-title{font-size:1rem}}
        @media(max-width:640px){.rating-title{font-size:1rem}}
        .rating-verified-icon{
          width:16px;
          height:16px;
          background:#4ade80;
          color:#fff;
          border-radius:50%;
          display:flex;
          align-items:center;
          justify-content:center;
          font-size:0.625rem;
          font-weight:700;
        }
        @media(min-width:980px){.rating-verified-icon{width:18px;height:18px}}
        .rating-subtitle{
          font-size:0.625rem;
          color:rgba(0,0,0,0.5);
          margin-bottom:6px;
        }
        @media(min-width:980px){.rating-subtitle{font-size:0.6875rem}}
        .rating-info{
          display:flex;
          align-items:center;
          gap:4px;
          margin-bottom:6px;
          flex-wrap:wrap;
        }
        .rating-stars{
          font-size:10px;
          color:#fbbf24;
          letter-spacing:0;
        }
        @media(min-width:980px){.rating-stars{font-size:11px}}
        .rating-score{
          font-size:1rem;
          font-weight:700;
          color:#0a0a0a;
        }
        @media(min-width:980px){.rating-score{font-size:1.0625rem}}
        .rating-count{
          font-size:0.5625rem;
          color:rgba(0,0,0,0.5);
        }
        @media(min-width:980px){.rating-count{font-size:0.625rem}}
        .rating-meta{
          font-size:0.5625rem;
          color:rgba(0,0,0,0.5);
          margin-bottom:6px;
        }
        @media(min-width:980px){.rating-meta{font-size:0.625rem}}
        .rating-text{
          font-size:0.625rem;
          color:rgba(0,0,0,0.65);
          line-height:1.4;
          margin-bottom:6px;
        }
        @media(min-width:980px){.rating-text{font-size:0.6875rem}}
        .rating-time{
          display:flex;
          align-items:center;
          gap:4px;
          font-size:0.5625rem;
          color:rgba(0,0,0,0.5);
        }
        @media(min-width:980px){.rating-time{font-size:0.625rem}}
        .rating-time svg{
          width:10px;
          height:10px;
        }
        @media(min-width:980px){.rating-time svg{width:12px;height:12px}}
        
        .floating-badge{
          position:absolute;
          border-radius:14px;
          padding:12px 14px;
          box-shadow:0 8px 24px rgba(0,0,0,0.2);
          backdrop-filter:blur(12px);
          will-change:transform;
          z-index:10;
        }
        @media(max-width:640px){
          .floating-badge{
            padding:10px 12px;
            border-radius:12px;
          }
        }
        .badge-top-right{
          right:160px;
          top:20px;
          background:rgba(255,255,255,0.95);
          animation:floatB 5s ease-in-out infinite;
        }
        @media(min-width:980px){.badge-top-right{right:180px;top:10px}}
        @media(max-width:640px){.badge-top-right{right:120px;top:10px}}
        .badge-price{
          right:-10px;
          top:35%;
          background:rgba(45,55,72,0.95);
          color:#fff;
          padding:10px 14px;
          border-radius:12px;
          flex-direction:column;
          align-items:flex-start;
          animation:floatF 5.5s ease-in-out infinite;
        }
        @media(min-width:980px){.badge-price{right:-20px;top:32%}}
        @media(max-width:640px){.badge-price{right:-5px;top:30%;padding:8px 10px}}
        .badge-bottom-left{
          left:-20px;
          bottom:100px;
          background:rgba(74,222,128,0.15);
          border:1px solid rgba(74,222,128,0.25);
          animation:floatD 6s ease-in-out infinite;
        }
        @media(min-width:980px){.badge-bottom-left{left:-30px;bottom:110px}}
        @media(max-width:640px){.badge-bottom-left{left:-10px;bottom:80px}}
        .badge-bottom-left .badge-value{
          color:#fff;
        }
        .badge-bottom-left .badge-text{
          color:rgba(255,255,255,0.7);
        }
        .badge-bottom-right{
          right:80px;
          bottom:50px;
          background:rgba(255,255,255,0.95);
          animation:floatC 5.8s ease-in-out infinite;
        }
        @media(min-width:980px){.badge-bottom-right{right:90px;bottom:40px}}
        @media(max-width:640px){.badge-bottom-right{right:60px;bottom:35px}}
        @keyframes floatB{
          0%,100%{transform:translateY(0)}
          50%{transform:translateY(-8px)}
        }
        @keyframes floatC{
          0%,100%{transform:translateY(0)}
          50%{transform:translateY(8px)}
        }
        @keyframes floatD{
          0%,100%{transform:translateY(0)}
          50%{transform:translateY(-6px)}
        }
        @keyframes floatF{
          0%,100%{transform:translateY(0)}
          50%{transform:translateY(-6px)}
        }
        .badge-value{
          display:block;
          font-weight:800;
          font-size:1.25rem;
          line-height:1;
        }
        @media(max-width:640px){.badge-value{font-size:1rem}}
        .badge-top-right .badge-value,
        .badge-bottom-right .badge-value{
          color:#0f0f0f;
        }
        .badge-value sup{
          font-size:0.6em;
          font-weight:600;
        }
        .badge-text{
          display:block;
          margin-top:4px;
          font-size:0.6875rem;
          line-height:1.3;
          font-weight:500;
        }
        @media(max-width:640px){.badge-text{font-size:0.625rem}}
        .badge-top-right .badge-text,
        .badge-bottom-right .badge-text{
          color:rgba(0,0,0,0.6);
        }
        .badge-price-top{
          font-size:1.0625rem;
          color:#fff;
          margin-bottom:2px;
          white-space:nowrap;
        }
        @media(max-width:640px){.badge-price-top{font-size:1rem}}
        .badge-price-top strong{
          font-weight:800;
          color:#4ade80;
        }
        .badge-price-bottom{
          font-size:0.625rem;
          color:rgba(255,255,255,0.6);
        }
        @media(max-width:640px){.badge-price-bottom{font-size:0.5625rem}}
        
        .rating-time-inline{
          font-size:0.5625rem;
          color:rgba(0,0,0,0.5);
          margin-left:auto;
        }
        @media(min-width:980px){.rating-time-inline{font-size:0.625rem}}

        /* Новые стили для обновленной hero секции */
        .hero-badge{
          display:inline-flex;
          align-items:center;
          gap:8px;
          padding:10px 20px;
          background:linear-gradient(135deg,rgba(16,185,129,0.15) 0%,rgba(16,185,129,0.08) 100%);
          border:1px solid rgba(16,185,129,0.25);
          border-radius:50px;
          color:#10b981;
          font-size:1rem;
          font-weight:700;
          margin-bottom:1.5rem;
          animation:fadeInUp 0.8s ease-out 0.1s backwards;
          box-shadow:0 4px 12px rgba(16,185,129,0.15);
        }
        @media(min-width:768px){.hero-badge{font-size:1.0625rem;padding:12px 24px;margin-bottom:2rem}}
        
        .hero-subtitle{
          color:rgba(255,255,255,0.75);
          font-size:1.125rem;
          margin-bottom:2.5rem;
          line-height:1.6;
          animation:fadeInUp 0.8s ease-out 0.2s backwards;
        }
        @media(min-width:768px){.hero-subtitle{font-size:1.25rem;margin-bottom:3rem}}
        
        .hero-stats{
          display:flex;
          gap:1.5rem;
          margin-bottom:2.5rem;
          flex-wrap:wrap;
          animation:fadeInUp 0.8s ease-out 0.3s backwards;
        }
        @media(min-width:768px){.hero-stats{gap:2rem;margin-bottom:3rem}}
        
        .hero-stat-item{
          flex:1;
          min-width:120px;
          text-align:center;
        }
        
        .stat-number{
          font-size:2rem;
          font-weight:900;
          color:#10b981;
          line-height:1;
          margin-bottom:0.5rem;
          letter-spacing:-0.02em;
        }
        @media(min-width:768px){.stat-number{font-size:2.5rem}}
        
        .stat-label{
          font-size:1rem;
          color:rgba(255,255,255,0.7);
          font-weight:500;
        }
        @media(min-width:768px){.stat-label{font-size:1.0625rem}}
        
        .hero-trust{
          display:flex;
          gap:1.5rem;
          flex-wrap:wrap;
          margin-top:2rem;
          padding-top:2rem;
          border-top:1px solid rgba(255,255,255,0.1);
          animation:fadeInUp 0.8s ease-out 0.6s backwards;
        }
        @media(min-width:768px){.hero-trust{gap:2rem;margin-top:2.5rem}}
        
        .trust-item{
          display:flex;
          align-items:center;
          gap:8px;
          color:rgba(255,255,255,0.7);
          font-size:1rem;
          font-weight:500;
        }
        .trust-item svg{
          color:#10b981;
          flex-shrink:0;
        }
        
        .phone-content{
          position:absolute;
          inset:20px;
          display:flex;
          flex-direction:column;
          gap:12px;
          z-index:3;
        }
        
        .phone-header{
          font-size:1.125rem;
          font-weight:800;
          color:#0a0a0a;
          margin-bottom:4px;
        }
        
        .phone-company{
          display:flex;
          align-items:center;
          justify-content:space-between;
          margin-bottom:8px;
        }
        
        .company-name{
          font-size:1rem;
          font-weight:700;
          color:#0a0a0a;
        }
        
        .company-verified{
          display:inline-flex;
          align-items:center;
          justify-content:center;
          width:20px;
          height:20px;
          border-radius:50%;
          background:#10b981;
          color:#fff;
          font-size:12px;
          font-weight:700;
        }
        
        .phone-rating{
          display:flex;
          align-items:center;
          gap:8px;
          margin-bottom:12px;
        }
        
        .phone-rating .stars{
          font-size:14px;
          color:#fbbf24;
        }
        
        .phone-rating .score{
          font-size:1rem;
          font-weight:800;
          color:#0a0a0a;
        }
        
        .phone-rating .reviews{
          font-size:1rem;
          color:rgba(10,10,10,0.6);
        }
        
        .phone-stats{
          display:flex;
          flex-direction:column;
          gap:8px;
          margin-top:auto;
        }
        
        .stat-bubble{
          display:flex;
          align-items:center;
          gap:8px;
          padding:8px 12px;
          background:rgba(16,185,129,0.1);
          border-radius:12px;
          font-size:1rem;
          font-weight:600;
          color:#059669;
        }
        
        .stat-icon{
          font-size:1rem;
        }
        
        .hero-buttons .btn{
          display:inline-flex;
          align-items:center;
          justify-content:center;
        }



/* Offer/Quiz block - черно-серо-белый дизайн */
.offer-section{padding:clamp(3rem,5vw,5rem) 0;background:var(--background);position:relative}
@media(min-width:768px){.offer-section{padding:clamp(4rem,6vw,6rem) 0}}
@media(max-width:480px){.offer-section{padding:clamp(2rem,4vw,2.5rem) 0}}
.offer-shell{
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 32px 80px rgba(0,0,0,.2),0 0 0 1px rgba(255,255,255,0.05);
  transition:all 0.4s cubic-bezier(0.4,0,0.2,1);
  animation:scaleIn 0.8s ease-out;
}
.offer-shell:hover{box-shadow:0 40px 100px rgba(0,0,0,.25),0 0 0 1px rgba(255,255,255,0.08)}
@media(max-width:480px){.offer-shell{border-radius:20px}}
.offer-top{
  position:relative;
  background:#10b981;
  padding:clamp(24px,3vw,32px) clamp(20px,3vw,40px);
  text-align:center;
  overflow:hidden;
}
@media(max-width:480px){.offer-top{padding:clamp(20px,4vw,24px) clamp(16px,3vw,20px)}}
.offer-top::before{
  content:"";
  position:absolute;inset:-50%;
  background:
    radial-gradient(circle at 20% 30%,rgba(255,255,255,0.10),transparent 55%),
    radial-gradient(circle at 80% 70%,rgba(255,255,255,0.08),transparent 60%),
    repeating-radial-gradient(circle at 50% 50%, rgba(255,255,255,.06) 0 1px, transparent 1px 28px);
  opacity:.5;
  transform:rotate(-8deg);
  pointer-events:none;
  animation:patternShift 20s ease-in-out infinite;
}
.offer-top::after{
  content:"";
  position:absolute;
  top:0;left:0;right:0;bottom:0;
  background:linear-gradient(135deg,transparent 0%,rgba(255,255,255,0.03) 50%,transparent 100%);
  pointer-events:none;
}
.offer-stars{display:flex;justify-content:center;gap:8px;margin:0.5rem 0 1rem;position:relative;z-index:1;animation:float 3s ease-in-out infinite}
.offer-stars span{font-size:24px;line-height:1;color:#fbbf24;filter:drop-shadow(0 2px 6px rgba(251,191,36,0.4));transition:transform 0.3s ease}
.offer-stars span:nth-child(odd){animation:float 3s ease-in-out infinite 0.5s}
.offer-stars span:nth-child(even){animation:float 3s ease-in-out infinite 1s}
.offer-top h2{
  position:relative;z-index:1;
  margin:0 auto 0.5rem;
  max-width:800px;
  color:#fff;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(20px,3vw,32px);
  line-height:1.2;
  text-shadow:0 2px 12px rgba(0,0,0,0.2);
  animation:fadeInUp 0.8s ease-out;
}
.offer-top p{
  position:relative;z-index:1;
  margin:0;
  color:rgba(255,255,255,.8);
  font-size:clamp(13px,1.5vw,16px);
  font-style:italic;
  animation:fadeInUp 0.8s ease-out 0.2s backwards;
}
.offer-bottom{
  position:relative;
  background:#ffffff;
  padding:clamp(20px,3vw,28px) clamp(16px,3vw,32px);
  display:flex;
  justify-content:center;
  overflow:hidden;
}
.offer-bottom::after{display:none}
@media(max-width:480px){.offer-bottom{padding:16px 12px}}
.offer-bottom .quiz-card{
  width:min(700px,100%);
  margin:0 auto;
  background:transparent;
  border:none;
  border-radius:12px;
  padding:0;
  box-shadow:none;
  position:relative;
  z-index:1;
}
.offer-bottom .quiz-card:hover{border:none;box-shadow:none;transform:none}
.offer-bottom .quiz-card::before{display:none}
@media(max-width:480px){.offer-bottom .quiz-card{padding:0;border-radius:8px}}
.offer-bottom .quiz-card h3{
  color:#0a0a0a !important;
  font-size:1.25rem;
  margin-bottom:0.75rem;
  font-weight:700;
  text-align:center;
}
@media(max-width:480px){.offer-bottom .quiz-card h3{font-size:1.125rem;margin-bottom:0.5rem}}
.offer-bottom .quiz-label{
  color:#6b6b6b;
  text-align:center;
  display:block;
  margin-bottom:0.625rem;
  font-size:0.9375rem;
}
@media(max-width:480px){.offer-bottom .quiz-label{font-size:0.875rem;margin-bottom:0.5rem}}
.offer-bottom .quiz-progress{display:none}
.offer-bottom .checkbox-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:0.75rem 1.25rem;
  margin-bottom:0.875rem;
}
@media(max-width:480px){.offer-bottom .checkbox-grid{gap:0.5rem 1rem;margin-bottom:0.625rem}}
.offer-bottom .checkbox-item{
  background:transparent;
  border:none;
  padding:0;
  display:flex;
  align-items:center;
  gap:0.375rem;
  cursor:pointer;
}
.offer-bottom .checkbox-item:hover{background:transparent;border:none;transform:none;box-shadow:none}
.offer-bottom .checkbox-item input[type="checkbox"],
.offer-bottom .checkbox-item input[type="radio"]{
  width:18px;
  height:18px;
  accent-color:#10b981;
  cursor:pointer;
}
@media(max-width:480px){
  .offer-bottom .checkbox-item input[type="checkbox"],
  .offer-bottom .checkbox-item input[type="radio"]{width:16px;height:16px}
}
.offer-bottom .checkbox-item label{
  color:#0a0a0a;
  font-size:0.9375rem;
  cursor:pointer;
  font-weight:500;
}
@media(max-width:480px){.offer-bottom .checkbox-item label{font-size:0.875rem}}
.offer-bottom .btn-primary{
  background:#10b981;
  color:#ffffff;
  border:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0.75rem 2rem;
  font-size:0.9375rem;
  font-weight:600;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(16,185,129,0.25);
  transition:all 0.3s ease;
  white-space:nowrap;
}
.offer-bottom .btn-primary:hover{
  background:#059669;
  color:#ffffff;
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(16,185,129,0.3);
}
.offer-bottom .btn-primary:active{
  background:#10b981;
  color:#ffffff;
  transform:translateY(0);
}
.offer-bottom .btn-primary:disabled{
  background:#d1d5db;
  color:#9ca3af;
  cursor:not-allowed;
  transform:none;
  box-shadow:none;
}
.offer-bottom .btn-outline{
  background:transparent;
  border:2px solid #e5e7eb;
  color:#374151;
  border-radius:10px;
  padding:0.75rem 1.5rem;
  font-size:0.9375rem;
  font-weight:500;
}
.offer-bottom .btn-outline:hover{
  background:#f9fafb;
  border-color:#d1d5db;
  transform:none;
}
.offer-bottom .quiz-buttons{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0.75rem;
  margin-top:0.875rem;
}
.offer-bottom .quiz-buttons .btn{
  min-width:120px;
  padding:0.75rem 1.5rem;
}
.offer-bottom .quiz-buttons .btn-primary{
  min-width:140px;
}
@media(max-width:480px){
  .offer-bottom .quiz-buttons{gap:0.5rem;margin-top:0.625rem}
  .offer-bottom .quiz-buttons .btn{
    min-width:100px;
    padding:0.625rem 1.25rem;
    font-size:0.875rem;
  }
}
.offer-bottom .quiz-form-row{
  display:flex;
  flex-wrap:wrap;
  gap:0.625rem;
  justify-content:center;
  margin-bottom:0.75rem;
}
.offer-bottom .quiz-form-row .form-group{
  flex:1;
  min-width:160px;
  max-width:220px;
  margin-bottom:0;
}
@media(max-width:480px){
  .offer-bottom .quiz-form-row{flex-direction:column;gap:0.5rem}
  .offer-bottom .quiz-form-row .form-group{max-width:none;min-width:auto}
}
.offer-bottom .form-input{
  background:#f9fafb;
  border:1px solid #e5e7eb;
  color:#0a0a0a;
  padding:0.625rem 0.875rem;
  font-size:0.9375rem;
  border-radius:8px;
  width:100%;
}
.offer-bottom .form-input::placeholder{color:#9ca3af}
.offer-bottom .form-input:focus{
  border-color:#10b981;
  box-shadow:0 0 0 3px rgba(16,185,129,0.1);
  outline:none;
}
.offer-bottom .quiz-progress-dot{
  background:rgba(255,255,255,0.2);
}
.offer-bottom .quiz-progress-dot.active{
  background:#ffffff;
}
.offer-bottom .quiz-progress-dot.completed{
  background:#ffffff;
  opacity:0.6;
}
.offer-bottom::after{
  content:"";
  position:absolute;right:-20px;bottom:-20px;
  width:180px;height:180px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.10) 0 2px, transparent 3px),
    radial-gradient(circle at 60% 50%, rgba(255,255,255,.10) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 70%, rgba(255,255,255,.10) 0 2px, transparent 3px);
  opacity:.22;
  filter:blur(.2px);
  pointer-events:none;
  transform:rotate(12deg);
}
.offer-question{
  text-align:center;
  color:rgba(255,255,255,.55);
  font-weight:600;
  margin-bottom:18px;
}
.offer-checks{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:22px;
  margin-bottom:30px;
}
.offer-check{
  display:flex;
  align-items:center;
  gap:10px;
  color:rgba(255,255,255,.78);
  user-select:none;
  font-weight:600;
}
.offer-check input{
  width:18px;height:18px;
  accent-color:#9ca3af; /* монохром */
}
.offer-btn{
  width:280px;
  margin:0 auto;
  display:block;
  padding:16px 22px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
  color:#fff;
  font-weight:800;
  font-size:18px;
  cursor:pointer;
  backdrop-filter:blur(10px);
  transition:transform .2s ease, background .2s ease, border-color .2s ease;
}
@media(max-width:480px){.offer-btn{width:100%;font-size:16px;padding:14px 20px}}
.offer-btn:hover{background:rgba(255,255,255,.12);border-color:rgba(255,255,255,.22);transform:translateY(-2px)}



/* === Tariffs (optimized) === */
.tariffs-section{padding:3rem 0 2rem}
@media(max-width:480px){.tariffs-section{padding:2rem 0 1.5rem}}

.tariffs-surface{
  position:relative;
  border-radius:20px;
  overflow:hidden;
  background:#10b981;
  box-shadow:0 16px 48px rgba(16,185,129,0.2);
  padding:clamp(24px,4vw,40px);
}
.tariffs-surface::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 20% 25%, rgba(255,255,255,0.1), transparent 50%);
  pointer-events:none;
}
@media(max-width:480px){.tariffs-surface{padding:20px 16px;border-radius:16px}}

.tariffs-header{position:relative;z-index:1;text-align:center;margin-bottom:1.5rem}
@media(max-width:480px){.tariffs-header{margin-bottom:1rem}}
.tariffs-header h2{
  margin:0 0 0.5rem;
  color:#ffffff;
  font-weight:800;
  letter-spacing:-.02em;
  font-size:clamp(20px,3vw,32px);
  line-height:1.2;
}
.tariffs-header p{
  margin:0 auto;
  max-width:500px;
  color:rgba(255,255,255,0.9);
  font-size:clamp(13px,1.5vw,16px);
}
.tariffs-accent{color:#ffffff;font-weight:700}

.tariffs-grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin:0 auto;
  max-width:900px;
}
@media(min-width:768px){.tariffs-grid{grid-template-columns:repeat(3,1fr);gap:16px}}
@media(max-width:480px){.tariffs-grid{gap:10px}}

.tariff-card{
  background:#ffffff;
  color:#0b0b0b;
  border-radius:14px;
  padding:clamp(16px,3vw,24px) clamp(12px,2vw,20px);
  text-align:center;
  box-shadow:0 8px 24px rgba(0,0,0,0.1);
  position:relative;
  transition:all 0.3s ease;
  opacity:0;
  transform:translateY(20px);
  animation:fadeInUp 0.6s ease-out forwards;
}
.tariff-card:nth-child(1){animation-delay:0.05s}
.tariff-card:nth-child(2){animation-delay:0.1s}
.tariff-card:nth-child(3){animation-delay:0.15s}
.tariff-card:nth-child(4){animation-delay:0.2s}
.tariff-card:nth-child(5){animation-delay:0.25s}
.tariff-card:nth-child(6){animation-delay:0.3s}
.tariff-card:hover{
  transform:translateY(-4px);
  box-shadow:0 16px 40px rgba(0,0,0,0.15);
}
@media(max-width:480px){.tariff-card{padding:14px 10px;border-radius:12px}}

.tariff-light,.tariff-dark{background:#ffffff;color:#0b0b0b}

.tariff-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:8px;
  font-weight:700;
  font-size:12px;
  margin-bottom:12px;
  background:#10b981;
  color:#ffffff;
}
@media(max-width:480px){.tariff-pill{padding:5px 8px;font-size:11px;margin-bottom:10px}}
.tariff-dark .tariff-pill{background:#10b981;color:#ffffff}

.tariff-price{
  font-weight:900;
  letter-spacing:-.02em;
  line-height:1;
  margin-bottom:6px;
  color:#0b0b0b;
}
.tariff-price span{font-size:clamp(36px,5vw,48px)}
.tariff-price small{font-size:clamp(18px,2.5vw,24px);font-weight:800;margin-left:4px}
@media(max-width:480px){
  .tariff-price span{font-size:32px}
  .tariff-price small{font-size:16px}
}

.tariff-note{
  font-size:clamp(12px,1.5vw,14px);
  color:#6b6b6b;
}
.tariff-dark .tariff-note{color:#6b6b6b}

.tariffs-actions{
  position:relative;
  z-index:1;
  display:flex;
  justify-content:center;
  margin-top:1.25rem;
}
@media(max-width:480px){.tariffs-actions{margin-top:1rem}}
.tariffs-actions .btn{
  min-width:180px;
  padding:0.75rem 1.5rem;
  font-size:0.9375rem;
}
@media(max-width:480px){.tariffs-actions .btn{width:100%;min-width:auto}}

.btn-accent{
  background:#ffffff;
  color:#0b0b0b;
  font-weight:600;
  border-radius:10px;
  box-shadow:0 4px 16px rgba(0,0,0,0.15);
}
.btn-accent:hover{background:#f9fafb;transform:translateY(-2px);box-shadow:0 8px 24px rgba(0,0,0,0.2)}
.btn-accent:active{transform:translateY(0)}
/* Guide CTA block */
/* ===== GREEN CTA BLOCKS - UNIFIED STYLES ===== */

/* Общие стили для зелёных карточек */
.green-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#10b981;
  box-shadow:0 16px 48px rgba(16,185,129,0.2);
  padding:32px 28px;
}
.green-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 30%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events:none;
}

/* === GUIDE CTA === */
.guide-cta-section{padding:0 0 3rem;position:relative}
.guide-cta{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#10b981;
  box-shadow:0 16px 48px rgba(16,185,129,0.2);
  padding:32px 28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:32px;
}
.guide-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 30%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events:none;
}
.guide-cta-left{position:relative;z-index:1;flex:1;max-width:500px}
.guide-cta-left h2{
  margin:0 0 8px;
  color:#fff;
  font-weight:700;
  font-size:clamp(18px,2.2vw,26px);
  line-height:1.25;
}
.guide-accent{color:#fff;font-weight:800}
.guide-cta-subtitle{
  margin:0 0 8px;
  color:rgba(255,255,255,0.95);
  font-weight:600;
  font-size:clamp(13px,1.1vw,15px);
}
.guide-cta-note{
  margin:0 0 16px;
  color:rgba(255,255,255,0.75);
  font-size:13px;
  line-height:1.5;
}
.guide-cta-buttons{display:flex;gap:10px;flex-wrap:wrap}
.guide-cta-buttons .btn{
  padding:10px 20px;
  font-size:13px;
  font-weight:600;
  border-radius:10px;
  transition:all 0.2s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.guide-cta-buttons .btn-accent{
  background:#fff;
  color:#059669;
  border:none;
}
.guide-cta-buttons .btn-accent:hover{
  background:#f0fdf4;
  transform:translateY(-1px);
  box-shadow:0 4px 12px rgba(0,0,0,0.1);
}
.guide-cta-buttons .btn-outline-light{
  background:transparent;
  color:#fff;
  border:1.5px solid rgba(255,255,255,0.4);
}
.guide-cta-buttons .btn-outline-light:hover{
  background:rgba(255,255,255,0.1);
  border-color:rgba(255,255,255,0.6);
}
.guide-cta-right{position:relative;z-index:1;flex-shrink:0;display:flex;align-items:center;justify-content:center}
.guide-illus{width:400px;height:auto;filter:drop-shadow(0 12px 24px rgba(0,0,0,0.15));border-radius:16px}

/* Guide CTA Tablet */
@media(max-width:900px){
  .guide-cta{
    flex-direction:column;
    text-align:center;
    padding:28px 24px;
    gap:20px;
  }
  .guide-cta-left{max-width:100%;text-align:center}
  .guide-cta-buttons{justify-content:center}
  .guide-cta-right{order:1}
  .guide-illus{width:320px}
}

/* Guide CTA Mobile */
@media(max-width:480px){
  .guide-cta-section{padding:0 0 2rem}
  .guide-cta{
    padding:20px 16px;
    border-radius:16px;
    gap:16px;
  }
  .guide-cta-left h2{font-size:17px}
  .guide-cta-subtitle{font-size:13px}
  .guide-cta-note{font-size:12px;margin-bottom:12px}
  .guide-cta-buttons{
    flex-direction:column;
    gap:8px;
    width:100%;
  }
  .guide-cta-buttons .btn{
    width:100%;
    padding:11px 16px;
  }
  .guide-illus{width:300px;max-height:220px;height:auto;object-fit:contain}
}

/* === CTA CARD (with form) === */
.cta-section{padding:3rem 0}
.cta-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#10b981;
  box-shadow:0 16px 48px rgba(16,185,129,0.2);
  padding:32px 28px;
  display:grid;
  grid-template-columns:400px 1fr;
  gap:28px;
  align-items:center;
}
.cta-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 30%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events:none;
}
.cta-left,.cta-right{position:relative;z-index:1}
.cta-left{display:flex;align-items:center;justify-content:center}

/* CTA иллюстрация */
.cta-illus{
  position:relative;
  width:180px;
  height:180px;
  margin:0 auto;
}
.cta-illus-img{
  width:400px;
  height:auto;
  border-radius:16px;
  filter:drop-shadow(0 12px 24px rgba(0,0,0,0.2));
}
.bubble{position:absolute;border-radius:999px}
.bubble.gray{
  width:140px;height:140px;left:20px;top:20px;
  background:rgba(255,255,255,.18);
}
.bubble.green{
  width:90px;height:90px;right:0;top:0;
  background:rgba(255,255,255,.22);
}
.user-icon{
  position:absolute;left:50%;top:50%;
  transform:translate(-50%,-50%);
  width:70px;height:70px;border-radius:999px;
  background:rgba(255,255,255,.12);
  display:flex;align-items:center;justify-content:center;
}
.user-icon svg{width:42px;height:42px;fill:#fff;opacity:.9}

/* CTA текст */
.cta-title{
  margin:0 0 8px;
  color:#fff;
  font-weight:700;
  font-size:clamp(18px,2.2vw,26px);
  line-height:1.25;
}
.cta-title .hl{color:#fff;font-weight:800}
.cta-sub{
  margin:0 0 16px;
  color:rgba(255,255,255,.85);
  font-size:clamp(13px,1.1vw,15px);
  line-height:1.5;
  max-width:480px;
}

/* CTA форма */
.cta-form{display:grid;gap:10px;max-width:420px}
.cta-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.cta-input{
  width:100%;
  height:42px;
  border-radius:10px;
  border:1.5px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:0 14px;
  font-size:14px;
  outline:none;
  transition:all 0.2s ease;
}
.cta-input::placeholder{color:rgba(255,255,255,.45)}
.cta-input:focus{border-color:#fff;background:rgba(255,255,255,.12)}
.cta-btn{
  width:100%;
  max-width:180px;
  height:42px;
  border:none;
  border-radius:10px;
  background:#fff;
  color:#059669;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.2s ease;
}
.cta-btn:hover{background:#f0fdf4;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,0.1)}
.cta-btn:disabled{opacity:0.7;cursor:not-allowed;transform:none}

/* CTA Tablet */
@media(max-width:900px){
  .cta-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:28px 24px;
    gap:20px;
  }
  .cta-left{order:-1}
  .cta-illus{width:140px;height:140px}
  .cta-illus-img{width:320px}
  .bubble.gray{width:110px;height:110px;left:15px;top:15px}
  .bubble.green{width:70px;height:70px}
  .user-icon{width:55px;height:55px}
  .user-icon svg{width:32px;height:32px}
  .cta-title{text-align:center}
  .cta-sub{text-align:center;margin-left:auto;margin-right:auto}
  .cta-form{margin:0 auto}
  .cta-row{grid-template-columns:1fr}
  .cta-btn{width:100%;max-width:100%}
}

/* CTA Mobile */
@media(max-width:480px){
  .cta-section{padding:2rem 0}
  .cta-card{
    padding:20px 16px;
    border-radius:16px;
    gap:16px;
  }
  .cta-title{font-size:17px}
  .cta-sub{font-size:13px;margin-bottom:12px}
  .cta-illus{width:120px;height:120px}
  .cta-illus-img{width:300px;max-height:220px;height:auto;object-fit:contain}
  .bubble.gray{width:90px;height:90px;left:12px;top:15px}
  .bubble.green{width:60px;height:60px}
  .user-icon{width:45px;height:45px}
  .user-icon svg{width:26px;height:26px}
  .cta-input{height:40px;font-size:13px}
  .cta-btn{height:40px}
}

/* === LEAD CARD (with form + illustration) === */
.lead-section{padding:3rem 0;background:#fff}
.lead-card{
  position:relative;
  overflow:hidden;
  border-radius:20px;
  background:#10b981;
  box-shadow:0 16px 48px rgba(16,185,129,0.2);
  padding:32px 28px;
  display:grid;
  grid-template-columns:1fr 400px;
  gap:28px;
  align-items:center;
}
.lead-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at 15% 30%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events:none;
}
.lead-left,.lead-right{position:relative;z-index:1}
.lead-right{display:flex;align-items:center;justify-content:center}
.lead-title{
  margin:0 0 8px;
  color:#fff;
  font-weight:700;
  font-size:clamp(20px,2.5vw,28px);
  line-height:1.2;
}
.lead-sub{
  margin:0 0 16px;
  color:rgba(255,255,255,.85);
  font-size:clamp(13px,1.1vw,15px);
  line-height:1.5;
  max-width:480px;
}
.lead-form{display:grid;gap:10px;max-width:420px}
.lead-row{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.lead-form .form-group{margin:0}
.lead-form .form-label{display:none}
.lead-form .form-input{
  width:100%;
  height:42px;
  border-radius:10px;
  border:1.5px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:0 14px;
  font-size:14px;
  outline:none;
  transition:all 0.2s ease;
}
.lead-form .form-input::placeholder{color:rgba(255,255,255,.45)}
.lead-form .form-input:focus{border-color:#fff;background:rgba(255,255,255,.12)}
.lead-form .form-select{
  width:100%;
  height:42px;
  border-radius:10px;
  border:1.5px solid rgba(255,255,255,.3);
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:0 14px;
  font-size:14px;
  outline:none;
  cursor:pointer;
  appearance:none;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='white' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 14px center;
}
.lead-form .form-select option{background:#059669;color:#fff}
.lead-form #submitBtn{
  width:100%;
  max-width:180px;
  height:42px;
  border:none;
  border-radius:10px;
  background:#fff;
  color:#059669;
  font-size:13px;
  font-weight:600;
  cursor:pointer;
  transition:all 0.2s ease;
}
.lead-form #submitBtn:hover{background:#f0fdf4;transform:translateY(-1px);box-shadow:0 4px 12px rgba(0,0,0,0.1)}
.lead-form #submitBtn:disabled{opacity:0.7;cursor:not-allowed;transform:none}
.lead-illustration{width:100%;max-width:280px}
.lead-illustration svg{width:100%;height:auto;display:block;filter:drop-shadow(0 16px 32px rgba(0,0,0,0.12))}
.lead-illustration-img{
  width:400px;
  max-width:400px;
  height:auto;
  border-radius:16px;
  filter:drop-shadow(0 16px 32px rgba(0,0,0,0.15));
}

/* Lead Tablet */
@media(max-width:900px){
  .lead-card{
    grid-template-columns:1fr;
    text-align:center;
    padding:28px 24px;
    gap:20px;
  }
  .lead-left{text-align:center}
  .lead-title{text-align:center}
  .lead-sub{text-align:center;margin-left:auto;margin-right:auto}
  .lead-form{margin:0 auto}
  .lead-row{grid-template-columns:1fr}
  .lead-form #submitBtn{width:100%;max-width:100%}
  .lead-right{order:-1;width:100%;display:flex;justify-content:center}
  .lead-illustration{max-width:240px}
  .lead-illustration-img{max-width:320px}
}

/* Lead Mobile */
@media(max-width:480px){
  .lead-section{padding:2rem 0}
  .lead-card{
    padding:20px 16px;
    border-radius:16px;
    gap:16px;
  }
  .lead-title{font-size:18px}
  .lead-sub{font-size:13px;margin-bottom:12px}
  .lead-form .form-input,
  .lead-form .form-select{height:40px;font-size:13px}
  .lead-form #submitBtn{height:40px}
  .lead-right{order:-1;display:flex;justify-content:center}
  .lead-illustration-img{width:300px;max-height:220px;height:auto;object-fit:contain}
}

/* === FIXES & IMPROVEMENTS === */

/* 2. Одинаковые карточки "Зачем отзывы" */
.section-muted .cards-grid .card-horizontal {
  min-height: 140px;
  display: flex;
  align-items: flex-start;
}
.section-muted .cards-grid .card-horizontal > div:last-child {
  flex: 1;
}
.section-muted .cards-grid .card-horizontal h3 {
  min-height: 2.6em;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .section-muted .cards-grid .card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .section-muted .cards-grid .card-horizontal h3 {
    justify-content: center;
    text-align: center;
  }
  .section-muted .cards-grid .card-horizontal > div:last-child {
    text-align: center;
  }
}

/* 3. Меньшие тарифы */
.tariff-card {
  padding: clamp(20px, 3vw, 28px) clamp(16px, 2.5vw, 24px) !important;
}
.tariff-price span {
  font-size: 42px !important;
}
.tariff-price small {
  font-size: 22px !important;
}
@media(max-width: 420px) {
  .tariff-price span { font-size: 36px !important; }
  .tariff-price small { font-size: 18px !important; }
}
.tariff-pill {
  padding: 6px 10px;
  font-size: 12px;
  margin-bottom: 14px;
}
.tariff-note {
  font-size: 13px;
}

/* 4. Анимация Guide иллюстрации */
.guide-illus {
  animation: floatGuide 4s ease-in-out infinite;
}
@keyframes floatGuide {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-8px) rotate(1deg); }
  50% { transform: translateY(-4px) rotate(0deg); }
  75% { transform: translateY(-10px) rotate(-1deg); }
}
.guide-illus rect:nth-child(1) { animation: paperStack1 3s ease-in-out infinite; }
.guide-illus rect:nth-child(2) { animation: paperStack2 3s ease-in-out infinite 0.2s; }
.guide-illus rect:nth-child(3) { animation: paperStack3 3s ease-in-out infinite 0.4s; }
@keyframes paperStack1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-3px, -3px); }
}
@keyframes paperStack2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-2px, -2px); }
}
@keyframes paperStack3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(0, 0); }
}

/* 5. Анимация CTA иллюстрации */
.bubble.gray {
  animation: bubbleFloat1 4s ease-in-out infinite;
}
.bubble.green {
  animation: bubbleFloat2 4.5s ease-in-out infinite 0.5s;
}
@keyframes bubbleFloat1 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; }
}
@keyframes bubbleFloat2 {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}
.user-icon {
  animation: userPulse 3s ease-in-out infinite;
}
@keyframes userPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.2); }
  50% { box-shadow: 0 0 20px 5px rgba(255,255,255,0.15); }
}

/* 6. Одинаковые карточки "Преимущества" */
#about .cards-grid .card-horizontal {
  min-height: 160px;
  display: flex;
  align-items: flex-start;
}
#about .cards-grid .card-horizontal > div:last-child {
  flex: 1;
  display: flex;
  flex-direction: column;
}
#about .cards-grid .card-horizontal h3 {
  min-height: 2.6em;
  display: flex;
  align-items: center;
  line-height: 1.3;
}
#about .cards-grid .card-horizontal p {
  flex: 1;
}
@media (max-width: 768px) {
  #about .cards-grid .card-horizontal {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  #about .cards-grid .card-horizontal h3 {
    justify-content: center;
    text-align: center;
  }
  #about .cards-grid .card-horizontal > div:last-child {
    text-align: center;
    align-items: center;
  }
  #about .cards-grid .card-horizontal p {
    text-align: center;
  }
}

/* 7. Select стили для формы */
.form-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.6)' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-select:hover {
  border-color: rgba(255,255,255,0.3);
}
.form-select:focus {
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.form-select option {
  background: #1a1a1a;
  color: #fff;
  padding: 12px;
}

/* ============================================
   MOBILE RESPONSIVE STYLES - ПОЛНАЯ ОПТИМИЗАЦИЯ
   ============================================ */

/* === GLOBAL MOBILE === */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 70px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.2;
  }
  
  .section-header p {
    font-size: 0.9375rem;
    line-height: 1.5;
  }
}

/* === HEADER MOBILE === */
@media (max-width: 1023px) {
  .header {
    padding: 8px 12px 0;
  }
  
  .header .container {
    height: 52px;
    padding: 0 4px 0 14px;
  }
  
  .logo-group {
    gap: 8px;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo-img {
    width: 30px;
    height: 30px;
    border-radius: 6px;
  }
  
  .logo-tagline {
    display: none;
  }
  
  .btn-header {
    padding: 8px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 6px 10px 0;
  }
  
  .header .container {
    height: 48px;
    padding: 0 4px 0 12px;
  }
  
  .logo-img {
    width: 28px;
    height: 28px;
  }
  
  .logo {
    font-size: 0.9375rem;
  }
  
  .btn-header {
    display: none;
  }
}

/* === HERO MOBILE === */
@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 0 3.5rem;
  }
  
  .hero-grid {
    padding: 0 16px;
    text-align: center;
  }
  
  .badge {
    font-size: 0.75rem;
    padding: 8px 14px;
    margin-bottom: 1rem;
  }
  
  .hero h1 {
    font-size: 1.625rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  
  .hero .lead {
    font-size: 0.9375rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }
  
  .hero-actions {
    margin-bottom: 1.5rem;
  }
  
  .hero .btn-primary {
    width: 100%;
    max-width: 280px;
    padding: 14px 24px;
    font-size: 0.9375rem;
  }
  
  .hero-meta {
    gap: 1.25rem;
    flex-direction: column;
    align-items: center;
  }
  
  .hm-item {
    font-size: 0.875rem;
  }
  
  .hero-stars {
    display: none;
  }
}

/* === CARDS MOBILE === */
@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card {
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .card-horizontal {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    min-height: auto !important;
  }
  
  .card-horizontal .card-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }
  
  .card-horizontal .card-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    min-height: auto !important;
  }
  
  .card p {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

/* === QUIZ/OFFER SECTION MOBILE === */
@media (max-width: 768px) {
  .offer-section {
    padding: 2rem 0;
  }
  
  .offer-shell {
    border-radius: 20px;
  }
  
  .offer-top {
    padding: 24px 20px;
  }
  
  .offer-top h2 {
    font-size: 1.25rem;
    line-height: 1.25;
    margin-bottom: 0.75rem;
  }
  
  .offer-top p {
    font-size: 0.875rem;
  }
  
  .offer-stars {
    margin-bottom: 1rem;
  }
  
  .offer-stars span {
    font-size: 20px;
  }
  
  .offer-bottom {
    padding: 24px 20px;
  }
  
  .offer-bottom .quiz-card {
    padding: 20px 16px;
    border-radius: 16px;
  }
  
  .offer-bottom .quiz-card h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .quiz-label {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  
  .checkbox-item {
    padding: 10px 12px;
    border-radius: 10px;
  }
  
  .checkbox-item label {
    font-size: 0.8125rem;
  }
  
  .checkbox-item input {
    width: 18px;
    height: 18px;
  }
  
  .quiz-buttons {
    flex-direction: row;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .quiz-buttons .btn {
    flex: 1 1 140px;
    max-width: 180px;
    min-width: 140px;
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .quiz-form-row {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .quiz-form-row .form-group {
    max-width: none;
    min-width: auto;
  }
}

/* === TARIFFS MOBILE === */
@media (max-width: 768px) {
  .tariffs-section {
    padding: 2.5rem 0 2rem;
  }
  
  .tariffs-surface {
    padding: 24px 16px;
    border-radius: 20px;
  }
  
  .tariffs-header {
    margin-bottom: 1.5rem;
  }
  
  .tariffs-header h2 {
    font-size: 1.375rem;
  }
  
  .tariffs-header p {
    font-size: 0.8125rem;
  }
  
  .tariffs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  
  .tariff-card {
    padding: 16px 12px !important;
    border-radius: 14px;
  }
  
  .tariff-pill {
    font-size: 10px;
    padding: 4px 8px;
    margin-bottom: 10px;
    border-radius: 6px;
  }
  
  .tariff-price span {
    font-size: 28px !important;
  }
  
  .tariff-price small {
    font-size: 16px !important;
    margin-left: 4px;
  }
  
  .tariff-note {
    font-size: 11px;
  }
  
  .tariffs-actions {
    margin-top: 20px;
  }
  
  .tariffs-actions .btn {
    width: 100%;
    padding: 14px 24px;
  }
}

/* === GUIDE CTA MOBILE === */
@media (max-width: 768px) {
  .guide-cta-section {
    padding: 0 0 2.5rem;
  }
  
  .guide-cta {
    padding: 24px 20px;
    border-radius: 20px;
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .guide-cta-left h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
  }
  
  .guide-cta-subtitle {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
  
  .guide-cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .guide-cta-buttons .btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.9375rem;
  }
  
  .guide-cta-right {
    order: -1;
  }
  
  .guide-illus {
    width: 300px;
    max-height: 220px;
    margin: 0 auto;
  }
}

/* === GUARANTEES MOBILE === */
@media (max-width: 768px) {
  .guarantees-list {
    gap: 0.75rem;
  }
  
  .guarantee-item {
    padding: 1rem;
    font-size: 0.875rem;
    border-radius: 12px;
  }
  
  .guarantee-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
  }
  
  .guarantee-item p {
    font-size: 0.875rem;
  }
  
  .buttons-center {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }
  
  .buttons-center .btn {
    width: 100%;
    max-width: none;
    padding: 14px 20px;
  }
}

/* === STEPS MOBILE === */
@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
  
  .step-card {
    padding: 1.25rem 1rem;
    border-radius: 14px;
  }
  
  .step-number {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .step-card h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.5rem;
  }
  
  .step-card p {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
}

/* === CASES SLIDER MOBILE === */
@media (max-width: 768px) {
  .cases-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .section-title span {
    font-size: 0.75rem;
  }
  
  .section-title h2 {
    font-size: 1.375rem;
  }
  
  .cases-nav {
    display: none;
  }
  
  .cases-nav-bottom {
    display: flex;
  }
  
  .cases-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  .cases-slide {
    flex-direction: column;
    gap: 1.25rem;
    padding: 1.25rem;
    border-radius: 16px;
  }
  
  .case-slide-image {
    height: 160px;
    border-radius: 12px;
  }
  
  .case-slide-content {
    padding: 0;
  }
  
  .case-slide-title {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
  }
  
  .case-slide-row {
    margin-bottom: 0.5rem;
  }
  
  .case-slide-label {
    font-size: 0.75rem;
  }
  
  .case-slide-value {
    font-size: 0.8125rem;
  }
  
  .case-slide-rating {
    gap: 1rem;
    margin: 1rem 0;
  }
  
  .case-rating-item .value {
    font-size: 1.5rem;
  }
  
  .case-slide-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .case-slide-buttons .btn {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.875rem;
  }
}

/* === SERVICES SECTION MOBILE === */
@media (max-width: 768px) {
  .section-dark {
    padding: 3rem 0;
  }
  
  .services-header {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  
  .services-header h2 {
    font-size: 1.375rem;
  }
  
  .services-header-right {
    display: none;
  }
  
  .btn-green-outline {
    padding: 10px 16px;
    font-size: 0.8125rem;
  }
  
  .services-nav-btn {
    width: 40px;
    height: 40px;
  }
  
  /* Mobile services bottom navigation */
  .section-dark .container {
    position: relative;
  }
  
  .services-mobile-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 1.5rem;
  }
  
  .services-mobile-nav .services-nav-btn {
    width: 48px;
    height: 48px;
    background: rgba(60,60,60,0.95);
    border-radius: 12px;
  }
  
  .services-mobile-nav .btn-green-outline {
    flex: 1;
    max-width: 200px;
    background: #10b981;
    color: #fff;
    border-color: #10b981;
    border-radius: 50px;
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .services-mobile-nav {
    display: flex;
  }
  
  .services-slider {
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }
  
  .service-card-new {
    min-width: 200px;
    max-width: 200px;
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }
  
  .service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    border-radius: 14px;
  }
  
  .service-icon img,
  .service-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .service-card-new .service-name {
    font-size: 0.875rem;
  }
  
  .service-card-new .service-desc {
    font-size: 0.75rem;
    min-height: 32px;
    margin-bottom: 0.5rem;
  }
  
  .service-card-new .service-price {
    font-size: 0.8125rem;
    margin-bottom: 1rem;
  }
  
  .service-card-new .btn {
    padding: 10px 16px;
    font-size: 0.8125rem;
  }
}

/* === FAQ MOBILE - see COMPREHENSIVE MOBILE FIX === */

/* === FOOTER MOBILE === */
@media (max-width: 768px) {
  .footer {
    padding: 2.5rem 0 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  
  .footer h3 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer h4 {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
  
  .footer p,
  .footer a {
    font-size: 0.8125rem;
  }
  
  .footer li {
    margin-bottom: 0.375rem;
  }
  
  .footer-bottom {
    padding-top: 1.5rem;
  }
  
  .footer-bottom p {
    font-size: 0.75rem;
  }
}

/* === MODALS MOBILE === */
@media (max-width: 768px) {
  .popup-overlay,
  .case-modal {
    padding: 16px;
  }
  
  .popup-content,
  .case-modal-content {
    padding: 24px 20px;
    border-radius: 20px;
  }
  
  .popup-icon {
    font-size: 2.5rem;
  }
  
  .popup-content h3 {
    font-size: 1.25rem;
  }
  
  .popup-content p {
    font-size: 0.875rem;
  }
  
  .popup-content .form-input {
    height: 48px;
    font-size: 0.9375rem;
  }
  
  .case-modal-title {
    font-size: 1.25rem;
  }
  
  .case-modal-comparison {
    gap: 0.75rem;
  }
  
  .case-modal-item {
    padding: 1rem;
    border-radius: 10px;
  }
  
  .case-modal-rating {
    font-size: 2rem;
  }
  
  .case-modal-details {
    padding: 1rem;
    border-radius: 10px;
  }
  
  .case-modal-details p {
    font-size: 0.8125rem;
  }
}

/* === BACK TO TOP MOBILE === */
@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
  
  .back-to-top svg {
    width: 20px;
    height: 20px;
  }
}

/* === EXTRA SMALL SCREENS === */
@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }
  
  .hero h1 {
    font-size: 1.375rem;
  }
  
  .tariffs-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .tariff-card {
    padding: 14px 16px !important;
  }
  
  .tariff-price span {
    font-size: 32px !important;
  }
  
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* === COMPREHENSIVE MOBILE FIX === */
@media (max-width: 768px) {
  /* Global centering */
  .container {
    padding: 0 16px;
  }
  
  /* All h3 centered */
  h3 {
    text-align: center;
  }
  
  /* Hero section mobile */
  .hero {
    padding: 3rem 0 4rem;
  }
  
  .hero-container {
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .hero h1 {
    font-size: 1.75rem;
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .hero .lead {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 1.5rem;
  }
  
  .hero .badge {
    text-align: center;
    margin: 0 auto 1rem;
  }
  
  .hero-actions {
    width: 100%;
    justify-content: center;
    align-items: center;
  }
  
  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
  
  .hero-meta {
    width: 100%;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  
  .hm-item {
    justify-content: center;
  }
  
  .hero-image {
    order: -1;
    justify-content: center;
  }
  
  .hero-image-placeholder {
    max-width: 100%;
    aspect-ratio: 16/9;
    margin: 0 auto;
  }
  
  /* Section headers */
  .section-header {
    text-align: center;
    padding: 0 8px;
  }
  
  .section-header h2 {
    text-align: center;
  }
  
  .section-header p {
    text-align: center;
  }
  
  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .card {
    text-align: center;
  }
  
  .card h3 {
    text-align: center !important;
  }
  
  .card-horizontal {
    flex-direction: column;
    text-align: center !important;
    align-items: center !important;
  }
  
  .card-horizontal > div {
    text-align: center !important;
  }
  
  .card-icon {
    margin: 0 auto 1rem !important;
  }
  
  /* Steps */
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .step-card {
    text-align: center;
  }
  
  .step-card h3 {
    text-align: center;
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .pricing-card {
    text-align: center;
  }
  
  .pricing-card h3 {
    text-align: center;
  }
  
  /* FAQ */
  .faq-list {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .faq-item {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid #e8e8e8;
    border-left: 3px solid #e8e8e8;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active {
    border-left-color: #10b981;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  }
  
  .faq-question {
    width: 100%;
    padding: 16px 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-align: left;
  }
  
  .faq-number {
    display: none;
  }
  
  .faq-question > span:nth-child(2) {
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.4;
  }
  
  .faq-toggle {
    width: 20px;
    height: 20px;
    min-width: 20px;
    background: transparent;
    border-radius: 0;
    font-size: 18px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
  
  .faq-item.active .faq-toggle {
    background: transparent;
    color: #10b981;
    transform: rotate(45deg);
  }
  
  .faq-answer {
    padding: 0 16px;
    font-size: 14px;
    line-height: 1.6;
    color: #6b7280;
  }
  
  .faq-item.active .faq-answer {
    padding-bottom: 16px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-grid > div {
    text-align: center;
  }
  
  .footer-grid h3,
  .footer-grid h4 {
    text-align: center;
  }
  
  .footer-grid ul {
    text-align: center;
  }
  
  .footer-bottom {
    text-align: center;
  }
  
  /* Buttons centering */
  .buttons-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .buttons-center .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
    justify-content: center;
  }
  
  /* CTA box */
  .cta-box {
    text-align: center;
  }
  
  .cta-box h2,
  .cta-box h3,
  .cta-box p {
    text-align: center;
  }
  
  /* Guarantees */
  .guarantees-list {
    grid-template-columns: 1fr;
  }
  
  .guarantee-item {
    justify-content: center;
    text-align: center;
  }
  
  /* Services slider */
  .services-header {
    text-align: center;
    align-items: center;
  }
  
  .services-header h2 {
    text-align: center;
  }
  
  .service-card-new h3 {
    text-align: center;
  }
  
  /* Cases section */
  .cases-section-header {
    text-align: center;
    align-items: center;
  }
  
  .section-title {
    text-align: center;
  }
  
  .case-slide-title {
    text-align: center;
  }
  
  /* Quiz */
  .quiz-card {
    text-align: center;
  }
  
  .quiz-card h3 {
    text-align: center;
  }
  
  .checkbox-grid {
    justify-items: center;
  }
  
  /* Contact form */
  #contact .section-header {
    text-align: center;
  }
  
  /* Guide section */
  .guide-section {
    text-align: center;
  }
  
  .guide-section h2,
  .guide-section h3,
  .guide-section p {
    text-align: center;
  }
  
  /* About section */
  .about-content h3 {
    text-align: center;
  }
  
  /* Tariff cards */
  .tariff-card h3 {
    text-align: center;
  }
}

/* === SMALL MOBILE (480px and below) === */
@media (max-width: 480px) {
  .hero {
    padding: 2.5rem 0 3rem;
  }
  
  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
  
  .hero .lead {
    font-size: 0.9375rem;
  }
  
  .hero-actions .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.9375rem;
  }
  
  .hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .section {
    padding: 2.5rem 0;
  }
  
  .section-header h2 {
    font-size: 1.375rem;
  }
  
  .section-header p {
    font-size: 0.9375rem;
  }
  
  .card {
    padding: 1.25rem;
  }
  
  .btn-lg {
    padding: 0.75rem 1.5rem;
    font-size: 0.9375rem;
  }
}

/* === TOUCH OPTIMIZATIONS === */
@media (max-width: 768px) {
  .btn,
  .checkbox-item,
  .faq-question,
  .service-card-new,
  .tariff-card {
    -webkit-tap-highlight-color: transparent;
  }
  
  .btn:active {
    transform: scale(0.98);
  }
  
  /* Disable hover effects on touch */
  @media (hover: none) {
    .card:hover,
    .tariff-card:hover,
    .service-card-new:hover {
      transform: none;
      box-shadow: inherit;
    }
  }
}

/* === SAFE AREAS FOR NOTCHED PHONES === */
@supports (padding: max(0px)) {
  .header {
    padding-left: max(12px, env(safe-area-inset-left));
    padding-right: max(12px, env(safe-area-inset-right));
  }
  
  .footer {
    padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
  }
  
  .back-to-top {
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
  }
}





/* Hero Image */
.hero-image{position:relative}
.hero-img{width:100%;max-width:480px;height:auto;border-radius:var(--radius-lg);object-fit:cover;animation:fadeInRight 0.8s ease-out 0.3s backwards;filter:drop-shadow(0 16px 32px rgba(0,0,0,0.12))}
@media(max-width:1023px){.hero-img{max-width:380px}}

/* Hero Floating Badges */
.hero-badge{
  position:absolute;
  background:rgba(255,255,255,0.97);
  backdrop-filter:blur(10px);
  border-radius:10px;
  padding:8px 12px;
  box-shadow:0 4px 16px rgba(0,0,0,0.1);
  display:flex;
  flex-direction:column;
  gap:2px;
  z-index:10;
  animation:float 3s ease-in-out infinite;
}
.hero-badge-num{
  font-size:1.1rem;
  font-weight:700;
  line-height:1;
}
.hero-badge-num small{font-size:0.7rem}
.hero-badge-num.orange{color:#f97316}
.hero-badge-num.green{color:#10b981}
.hero-badge-text{
  font-size:0.55rem;
  color:#525252;
  line-height:1.2;
  font-weight:500;
}
.hero-badge-price{
  font-size:0.9rem;
  font-weight:700;
  color:#0a0a0a;
}
.hero-badge-sub{
  font-size:0.55rem;
  color:#737373;
}

/* Badge positions */
.hero-badge-1{top:5%;left:15%;animation-delay:0s}
.hero-badge-2{top:20%;right:-10%;animation-delay:0.5s}
.hero-badge-3{top:50%;left:-6%;animation-delay:1s}
.hero-badge-4{bottom:12%;right:2%;animation-delay:1.5s}

@media(max-width:1200px){
  .hero-badge-1{top:3%;left:10%}
  .hero-badge-2{top:15%;right:-5%}
  .hero-badge-3{top:55%;left:-3%}
  .hero-badge-4{bottom:8%;right:5%}
}
@media(max-width:1023px){
  .hero-badge-1{top:0;left:15%}
  .hero-badge-2{top:5%;right:0}
  .hero-badge-3{bottom:30%;left:0}
  .hero-badge-4{bottom:5%;right:10%}
}
@media(max-width:640px){
  .hero-image{margin-bottom:0.5rem}
  .hero-badge{padding:6px 8px;border-radius:8px}
  .hero-badge-num{font-size:0.9rem}
  .hero-badge-num small{font-size:0.6rem}
  .hero-badge-text{font-size:0.5rem}
  .hero-badge-price{font-size:1rem}
  .hero-badge-sub{font-size:0.5rem}
  .hero-badge-1{top:-2%;left:10%}
  .hero-badge-2{top:3%;right:2%}
  .hero-badge-3{bottom:22%;left:2%}
  .hero-badge-4{bottom:2%;right:8%}
}
@media(max-width:480px){
  .hero-badge{padding:5px 7px;border-radius:6px}
  .hero-badge-num{font-size:0.8rem}
  .hero-badge-num small{font-size:0.5rem}
  .hero-badge-text{font-size:0.45rem}
  .hero-badge-price{font-size:0.7rem}
  .hero-badge-1{top:0;left:8%}
  .hero-badge-2{top:5%;right:3%}
  .hero-badge-3{bottom:18%;left:3%}
  .hero-badge-4{bottom:3%;right:5%}
}
