/* roulang page: index */
:root{
      --primary:#2563eb;
      --primary-dark:#1d4ed8;
      --primary-soft:#eff6ff;
      --accent:#0ea5e9;
      --ink:#0f172a;
      --muted:#64748b;
      --light:#f8fafc;
      --panel:#ffffff;
      --line:#e2e8f0;
      --line-strong:#cbd5e1;
      --success:#10b981;
      --warning:#f59e0b;
      --danger:#ef4444;
      --radius-sm:12px;
      --radius-md:18px;
      --radius-lg:28px;
      --radius-xl:36px;
      --shadow-sm:0 8px 24px rgba(15,23,42,.06);
      --shadow-md:0 18px 48px rgba(15,23,42,.10);
      --shadow-lg:0 30px 80px rgba(37,99,235,.16);
      --container:1180px;
      --ease:all .22s ease;
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI","Microsoft YaHei",sans-serif;
      color:var(--ink);
      background:
        radial-gradient(circle at 8% 4%, rgba(37,99,235,.10), transparent 28%),
        radial-gradient(circle at 85% 12%, rgba(14,165,233,.10), transparent 24%),
        linear-gradient(180deg,#ffffff 0%,#f8fbff 48%,#ffffff 100%);
      line-height:1.65;
      text-rendering:optimizeLegibility;
      -webkit-font-smoothing:antialiased;
      padding-bottom:78px;
    }
    a{color:inherit;text-decoration:none;transition:var(--ease)}
    img,svg{display:block;max-width:100%}
    button,input,select,textarea{font:inherit}
    button{cursor:pointer}
    ::selection{background:rgba(37,99,235,.18)}
    .container{
      width:min(var(--container), calc(100% - 40px));
      margin-inline:auto;
    }
    .skip-link{
      position:absolute;
      left:-999px;
      top:12px;
      z-index:9999;
      padding:10px 14px;
      border-radius:12px;
      background:var(--ink);
      color:white;
    }
    .skip-link:focus{left:16px;outline:3px solid rgba(37,99,235,.35)}
    .site-header{
      position:sticky;
      top:0;
      z-index:50;
      border-bottom:1px solid rgba(226,232,240,.82);
      background:rgba(255,255,255,.84);
      backdrop-filter:blur(18px);
    }
    .nav-wrap{
      height:76px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:24px;
    }
    .brand-mark{
      display:flex;
      align-items:center;
      gap:12px;
      min-width:0;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--ink);
    }
    .brand-icon{
      width:36px;
      height:36px;
      border-radius:14px;
      background:linear-gradient(135deg,var(--primary),var(--accent));
      box-shadow:0 12px 30px rgba(37,99,235,.24);
      display:grid;
      place-items:center;
      color:#fff;
      flex:0 0 auto;
    }
    .brand-text{
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width:430px;
    }
    .desktop-nav{
      display:flex;
      align-items:center;
      gap:8px;
    }
    .nav-link{
      position:relative;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding:10px 14px;
      border-radius:999px;
      color:#334155;
      font-size:15px;
      font-weight:650;
    }
    .nav-link:hover{
      color:var(--primary);
      background:var(--primary-soft);
    }
    .nav-link.active{
      color:var(--primary);
      background:#fff;
      box-shadow:inset 0 0 0 1px rgba(37,99,235,.16);
    }
    .nav-link.active:after{
      content:"";
      position:absolute;
      left:50%;
      bottom:5px;
      width:20px;
      height:2px;
      border-radius:999px;
      background:var(--primary);
      transform:translateX(-50%);
    }
    .nav-cta{
      display:inline-flex;
      align-items:center;
      gap:8px;
      border:1px solid rgba(37,99,235,.18);
      background:var(--primary);
      color:white;
      padding:11px 16px;
      border-radius:999px;
      font-weight:750;
      box-shadow:0 12px 28px rgba(37,99,235,.22);
    }
    .nav-cta:hover{
      background:var(--primary-dark);
      transform:translateY(-1px);
      box-shadow:0 16px 34px rgba(37,99,235,.28);
    }
    .mobile-toggle{
      display:none;
      width:42px;
      height:42px;
      border:1px solid var(--line);
      border-radius:14px;
      background:white;
      color:var(--ink);
      align-items:center;
      justify-content:center;
    }
    .mobile-panel{
      display:none;
      border-top:1px solid var(--line);
      padding:12px 0 18px;
    }
    .mobile-panel.open{display:block}
    .section{
      padding:84px 0;
      position:relative;
    }
    .section-tight{padding:54px 0}
    .section-kicker{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:7px 11px;
      border:1px solid rgba(37,99,235,.16);
      border-radius:999px;
      background:rgba(239,246,255,.78);
      color:var(--primary-dark);
      font-size:13px;
      font-weight:800;
      letter-spacing:.02em;
    }
    .section-title{
      margin:16px 0 0;
      font-size:clamp(28px,3.3vw,46px);
      line-height:1.12;
      letter-spacing:-.045em;
      font-weight:900;
      color:var(--ink);
    }
    .section-desc{
      margin:18px 0 0;
      max-width:760px;
      color:var(--muted);
      font-size:17px;
    }
    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:9px;
      min-height:46px;
      padding:12px 18px;
      border-radius:999px;
      border:1px solid transparent;
      font-weight:820;
      line-height:1;
      transition:var(--ease);
      user-select:none;
    }
    .btn-primary{
      background:linear-gradient(135deg,var(--primary),#0ea5e9);
      color:#fff;
      box-shadow:0 18px 40px rgba(37,99,235,.26);
    }
    .btn-primary:hover{
      transform:translateY(-2px);
      box-shadow:0 22px 52px rgba(37,99,235,.32);
    }
    .btn-secondary{
      background:white;
      color:var(--ink);
      border-color:var(--line-strong);
      box-shadow:var(--shadow-sm);
    }
    .btn-secondary:hover{
      border-color:rgba(37,99,235,.32);
      color:var(--primary);
      transform:translateY(-2px);
      box-shadow:var(--shadow-md);
    }
    .btn-ghost{
      background:rgba(255,255,255,.72);
      border-color:rgba(226,232,240,.9);
      color:#334155;
    }
    .btn-ghost:hover{
      color:var(--primary);
      border-color:rgba(37,99,235,.28);
      background:white;
    }
    .btn:focus-visible,
    .nav-link:focus-visible,
    .nav-cta:focus-visible,
    .mobile-toggle:focus-visible,
    input:focus,
    select:focus,
    textarea:focus{
      outline:3px solid rgba(37,99,235,.22);
      outline-offset:3px;
    }
    .badge{
      display:inline-flex;
      align-items:center;
      gap:6px;
      padding:6px 10px;
      border-radius:999px;
      background:#f1f5f9;
      color:#475569;
      font-size:13px;
      font-weight:750;
    }
    .card{
      background:rgba(255,255,255,.88);
      border:1px solid rgba(226,232,240,.86);
      border-radius:var(--radius-lg);
      box-shadow:var(--shadow-sm);
      transition:var(--ease);
    }
    .card:hover{
      transform:translateY(-4px);
      border-color:rgba(37,99,235,.22);
      box-shadow:var(--shadow-md);
    }
    .hero{
      padding:58px 0 76px;
    }
    .hero-band{
      position:relative;
      overflow:hidden;
      border:1px solid rgba(191,219,254,.78);
      border-radius:40px;
      background:
        linear-gradient(120deg, rgba(255,255,255,.96), rgba(239,246,255,.94) 52%, rgba(224,242,254,.92)),
        radial-gradient(circle at 88% 18%, rgba(37,99,235,.18), transparent 30%);
      box-shadow:var(--shadow-lg);
    }
    .hero-band:before{
      content:"";
      position:absolute;
      inset:0;
      background-image:linear-gradient(rgba(37,99,235,.06) 1px, transparent 1px),linear-gradient(90deg, rgba(37,99,235,.06) 1px, transparent 1px);
      background-size:42px 42px;
      mask-image:linear-gradient(90deg, rgba(0,0,0,.8), transparent 86%);
      pointer-events:none;
    }
    .hero-inner{
      position:relative;
      display:grid;
      grid-template-columns:minmax(0,1.06fr) minmax(360px,.82fr);
      gap:34px;
      padding:46px;
      align-items:stretch;
    }
    .hero h1{
      margin:18px 0 0;
      max-width:760px;
      font-size:clamp(36px,5.6vw,72px);
      line-height:.98;
      letter-spacing:-.065em;
      font-weight:950;
      color:#0b1220;
    }
    .hero-intro{
      margin:22px 0 0;
      max-width:720px;
      color:#475569;
      font-size:18px;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:12px;
      margin-top:28px;
    }
    .metric-row{
      margin-top:32px;
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:12px;
      max-width:680px;
    }
    .metric{
      padding:16px;
      border:1px solid rgba(226,232,240,.9);
      border-radius:20px;
      background:rgba(255,255,255,.72);
    }
    .metric strong{
      display:block;
      font-size:24px;
      line-height:1;
      letter-spacing:-.03em;
      color:var(--primary-dark);
    }
    .metric span{
      display:block;
      margin-top:8px;
      font-size:13px;
      color:var(--muted);
    }
    .booking-panel{
      position:relative;
      border-radius:32px;
      background:rgba(255,255,255,.92);
      border:1px solid rgba(203,213,225,.88);
      box-shadow:0 24px 60px rgba(15,23,42,.12);
      padding:22px;
      align-self:center;
    }
    .panel-head{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap:16px;
      padding-bottom:16px;
      border-bottom:1px solid var(--line);
    }
    .panel-title{
      margin:0;
      font-size:20px;
      font-weight:900;
      letter-spacing:-.03em;
    }
    .time-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:10px;
      margin-top:18px;
    }
    .time-card{
      border:1px solid var(--line);
      border-radius:18px;
      padding:14px;
      background:#fff;
      transition:var(--ease);
    }
    .time-card:hover,.time-card.active{
      border-color:rgba(37,99,235,.42);
      background:var(--primary-soft);
      transform:translateY(-2px);
    }
    .time-card b{
      display:block;
      font-size:15px;
      color:var(--ink);
    }
    .time-card span{
      display:block;
      margin-top:4px;
      font-size:12px;
      color:var(--muted);
    }
    .mini-form{
      margin-top:18px;
      display:grid;
      gap:10px;
    }
    .field{
      width:100%;
      border:1px solid var(--line);
      border-radius:16px;
      background:#fff;
      padding:13px 14px;
      color:var(--ink);
      transition:var(--ease);
    }
    .field::placeholder{color:#94a3b8}
    .field:focus{
      border-color:rgba(37,99,235,.46);
      box-shadow:0 0 0 4px rgba(37,99,235,.10);
      outline:none;
    }
    .ladder{
      display:grid;
      grid-template-columns:.84fr 1.16fr;
      gap:22px;
      align-items:start;
    }
    .ladder-steps{
      display:grid;
      gap:14px;
    }
    .ladder-step{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px;
      border-radius:24px;
      background:white;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .step-index{
      width:44px;
      height:44px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:var(--primary-soft);
      color:var(--primary);
      font-weight:900;
    }
    .step-copy b{
      display:block;
      font-size:17px;
    }
    .step-copy span{
      display:block;
      margin-top:4px;
      color:var(--muted);
      font-size:14px;
    }
    .step-save{
      color:var(--success);
      font-weight:900;
      white-space:nowrap;
    }
    .plans{
      display:grid;
      grid-template-columns:repeat(3,minmax(0,1fr));
      gap:18px;
      margin-top:30px;
    }
    .plan{
      padding:26px;
      position:relative;
      overflow:hidden;
    }
    .plan.recommend{
      border-color:rgba(37,99,235,.36);
      box-shadow:var(--shadow-lg);
      transform:translateY(-6px);
    }
    .plan.recommend:hover{transform:translateY(-10px)}
    .plan-tag{
      position:absolute;
      right:18px;
      top:18px;
      padding:6px 10px;
      border-radius:999px;
      background:var(--primary);
      color:white;
      font-size:12px;
      font-weight:900;
    }
    .plan h3{
      margin:0;
      font-size:22px;
      font-weight:950;
      letter-spacing:-.04em;
    }
    .price{
      display:flex;
      align-items:flex-end;
      gap:6px;
      margin-top:16px;
      color:var(--ink);
    }
    .price strong{
      font-size:38px;
      line-height:1;
      letter-spacing:-.05em;
    }
    .price span{color:var(--muted);font-size:14px}
    .feature-list{
      list-style:none;
      padding:0;
      margin:22px 0 0;
      display:grid;
      gap:12px;
    }
    .feature-list li{
      display:flex;
      align-items:flex-start;
      gap:10px;
      color:#475569;
      font-size:15px;
    }
    .check{
      width:19px;
      height:19px;
      border-radius:50%;
      background:#dcfce7;
      color:#047857;
      display:grid;
      place-items:center;
      flex:0 0 auto;
      margin-top:2px;
      font-size:12px;
      font-weight:900;
    }
    .guarantee-bar{
      display:grid;
      grid-template-columns:repeat(4,minmax(0,1fr));
      gap:14px;
      padding:18px;
      border-radius:30px;
      background:var(--ink);
      color:white;
      box-shadow:0 24px 60px rgba(15,23,42,.18);
    }
    .guarantee-item{
      padding:18px;
      border:1px solid rgba(255,255,255,.12);
      border-radius:22px;
      background:rgba(255,255,255,.06);
    }
    .guarantee-item b{
      display:block;
      font-size:18px;
      margin-top:12px;
    }
    .guarantee-item p{
      margin:8px 0 0;
      color:#cbd5e1;
      font-size:14px;
    }
    .news-layout{
      display:grid;
      grid-template-columns:1fr 360px;
      gap:22px;
      margin-top:30px;
      align-items:start;
    }
    .news-list{
      display:grid;
      gap:12px;
    }
    .news-item{
      display:grid;
      grid-template-columns:auto 1fr auto;
      gap:14px;
      align-items:center;
      padding:18px;
      border:1px solid var(--line);
      border-radius:24px;
      background:white;
      box-shadow:var(--shadow-sm);
    }
    .news-date{
      width:62px;
      height:62px;
      border-radius:20px;
      background:var(--primary-soft);
      color:var(--primary-dark);
      display:grid;
      place-items:center;
      text-align:center;
      font-weight:900;
      line-height:1.1;
      font-size:13px;
    }
    .news-item h3{
      margin:0;
      font-size:18px;
      font-weight:900;
      letter-spacing:-.02em;
    }
    .news-item p{
      margin:5px 0 0;
      color:var(--muted);
      font-size:14px;
    }
    .arrow-link{
      color:var(--primary);
      font-weight:900;
      white-space:nowrap;
    }
    .arrow-link:hover{color:var(--primary-dark);transform:translateX(2px)}
    .side-card{
      padding:24px;
      position:sticky;
      top:96px;
    }
    .rank-list{
      margin:18px 0 0;
      display:grid;
      gap:11px;
    }
    .rank-row{
      display:grid;
      grid-template-columns:30px 1fr auto;
      gap:10px;
      align-items:center;
      padding:10px 0;
      border-bottom:1px dashed var(--line);
    }
    .rank-row:last-child{border-bottom:0}
    .rank-no{
      width:28px;
      height:28px;
      border-radius:10px;
      background:#eef2ff;
      color:var(--primary-dark);
      display:grid;
      place-items:center;
      font-weight:900;
      font-size:13px;
    }
    .rank-row b{font-size:14px}
    .rank-row span{font-size:13px;color:var(--muted)}
    .quote-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:22px;
      margin-top:30px;
    }
    .quote-card{
      padding:30px;
      border-radius:30px;
      background:linear-gradient(135deg,#ffffff,#eff6ff);
      border:1px solid rgba(191,219,254,.74);
      box-shadow:var(--shadow-sm);
    }
    .quote-card blockquote{
      margin:0;
      font-size:24px;
      line-height:1.45;
      letter-spacing:-.035em;
      font-weight:850;
      color:#1e293b;
    }
    .quote-card p{margin:18px 0 0;color:var(--muted)}
    .insight-list{
      display:grid;
      gap:12px;
    }
    .insight{
      padding:20px;
      border-radius:24px;
      background:white;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .insight b{display:block;font-size:17px}
    .insight span{display:block;margin-top:6px;color:var(--muted);font-size:14px}
    .timeline{
      margin-top:30px;
      border-left:2px solid rgba(37,99,235,.18);
      padding-left:24px;
      display:grid;
      gap:16px;
    }
    .timeline-item{
      position:relative;
      padding:20px;
      border:1px solid var(--line);
      border-radius:24px;
      background:white;
      box-shadow:var(--shadow-sm);
    }
    .timeline-item:before{
      content:"";
      position:absolute;
      left:-34px;
      top:26px;
      width:16px;
      height:16px;
      border-radius:50%;
      background:var(--primary);
      box-shadow:0 0 0 8px var(--primary-soft);
    }
    .timeline-item time{
      display:inline-flex;
      margin-bottom:8px;
      color:var(--primary-dark);
      font-weight:900;
      font-size:13px;
    }
    .timeline-item h3{margin:0;font-size:18px;font-weight:900}
    .timeline-item p{margin:6px 0 0;color:var(--muted);font-size:14px}
    .demo{
      display:grid;
      grid-template-columns:.92fr 1.08fr;
      gap:24px;
      align-items:center;
      margin-top:30px;
    }
    .demo-stage{
      padding:24px;
      border-radius:34px;
      background:#0f172a;
      color:white;
      box-shadow:0 26px 70px rgba(15,23,42,.22);
      overflow:hidden;
      position:relative;
    }
    .demo-stage:after{
      content:"";
      position:absolute;
      width:220px;
      height:220px;
      border-radius:50%;
      background:rgba(37,99,235,.32);
      right:-80px;
      top:-80px;
      filter:blur(4px);
    }
    .screen-line{
      position:relative;
      display:flex;
      justify-content:space-between;
      gap:16px;
      padding:14px 0;
      border-bottom:1px solid rgba(255,255,255,.12);
      z-index:1;
    }
    .screen-line:last-child{border-bottom:0}
    .screen-line span{color:#cbd5e1;font-size:14px}
    .screen-line b{font-weight:900;color:white}
    .step-cards{
      display:grid;
      gap:13px;
    }
    .step-card{
      display:flex;
      gap:14px;
      padding:18px;
      border-radius:24px;
      background:white;
      border:1px solid var(--line);
      box-shadow:var(--shadow-sm);
    }
    .faq-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:16px;
      margin-top:30px;
    }
    .faq-item{
      padding:22px;
      border-radius:26px;
      border:1px solid var(--line);
      background:white;
      box-shadow:var(--shadow-sm);
    }
    .faq-item h3{
      margin:0;
      font-size:18px;
      letter-spacing:-.02em;
      font-weight:900;
    }
    .faq-item p{
      margin:10px 0 0;
      color:var(--muted);
      font-size:15px;
    }
    .limited{
      overflow:hidden;
      border-radius:40px;
      border:1px solid rgba(191,219,254,.84);
      background:
        linear-gradient(135deg, #0f172a, #1e40af 62%, #0ea5e9);
      color:white;
      box-shadow:var(--shadow-lg);
    }
    .limited-inner{
      display:grid;
      grid-template-columns:1fr 380px;
      gap:26px;
      padding:42px;
      align-items:center;
    }
    .limited h2{
      margin:14px 0 0;
      font-size:clamp(30px,4vw,52px);
      line-height:1.06;
      letter-spacing:-.055em;
      font-weight:950;
    }
    .limited p{
      margin:18px 0 0;
      color:#dbeafe;
      max-width:720px;
    }
    .contact-box{
      border:1px solid rgba(255,255,255,.18);
      background:rgba(255,255,255,.10);
      border-radius:28px;
      padding:22px;
      backdrop-filter:blur(12px);
    }
    .contact-box label{
      display:block;
      margin-bottom:7px;
      font-size:13px;
      font-weight:800;
      color:#dbeafe;
    }
    .contact-box .field{
      background:rgba(255,255,255,.96);
      border-color:transparent;
    }
    .site-footer{
      border-top:1px solid var(--line);
      background:#fff;
      padding:48px 0 28px;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1fr auto;
      gap:24px;
      align-items:start;
    }
    .footer-brand{
      display:flex;
      gap:12px;
      align-items:center;
      font-weight:900;
      font-size:18px;
      letter-spacing:-.03em;
    }
    .footer-copy{
      margin-top:14px;
      max-width:680px;
      color:var(--muted);
      font-size:14px;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:10px;
    }
    .footer-links a{
      padding:9px 12px;
      border-radius:999px;
      color:#475569;
      font-weight:700;
      font-size:14px;
    }
    .footer-links a:hover{
      background:var(--primary-soft);
      color:var(--primary);
    }
    .copyright{
      margin-top:28px;
      padding-top:20px;
      border-top:1px solid var(--line);
      display:flex;
      justify-content:space-between;
      gap:16px;
      color:#94a3b8;
      font-size:13px;
    }
    .fixed-cta{
      position:fixed;
      left:50%;
      bottom:16px;
      transform:translateX(-50%);
      z-index:60;
      width:min(940px,calc(100% - 32px));
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:12px 14px 12px 18px;
      border:1px solid rgba(191,219,254,.86);
      border-radius:999px;
      background:rgba(255,255,255,.9);
      backdrop-filter:blur(18px);
      box-shadow:0 18px 50px rgba(15,23,42,.16);
    }
    .fixed-cta b{font-size:15px}
    .fixed-cta span{color:var(--muted);font-size:13px}
    .fixed-text{display:flex;flex-direction:column;min-width:0}
    .fixed-actions{display:flex;gap:8px;flex:0 0 auto}
    @media (max-width:1024px){
      .brand-text{max-width:310px}
      .hero-inner,.ladder,.news-layout,.quote-grid,.demo,.limited-inner{
        grid-template-columns:1fr;
      }
      .booking-panel,.side-card{position:relative;top:auto}
      .plans{grid-template-columns:1fr}
      .plan.recommend{transform:none}
      .guarantee-bar{grid-template-columns:repeat(2,minmax(0,1fr))}
      .footer-grid{grid-template-columns:1fr}
      .footer-links{justify-content:flex-start}
    }
    @media (max-width:768px){
      body{padding-bottom:104px}
      .container{width:min(100% - 28px,var(--container))}
      .nav-wrap{height:68px}
      .desktop-nav,.nav-cta.desktop-only{display:none}
      .mobile-toggle{display:flex}
      .brand-text{max-width:calc(100vw - 140px);font-size:14px}
      .hero{padding-top:30px}
      .hero-inner{padding:26px;border-radius:30px}
      .hero-band{border-radius:30px}
      .metric-row,.time-grid,.guarantee-bar,.faq-grid{
        grid-template-columns:1fr;
      }
      .section{padding:60px 0}
      .section-tight{padding:42px 0}
      .ladder-step,.news-item{
        grid-template-columns:1fr;
        align-items:start;
      }
      .news-date{width:auto;height:auto;padding:10px 12px;place-items:start;text-align:left}
      .limited-inner{padding:28px}
      .copyright{flex-direction:column}
      .fixed-cta{
        border-radius:24px;
        align-items:stretch;
        flex-direction:column;
      }
      .fixed-actions{width:100%}
      .fixed-actions .btn{flex:1}
    }
    @media (max-width:520px){
      .hero h1{font-size:38px}
      .section-title{font-size:30px}
      .hero-actions,.fixed-actions{flex-direction:column}
      .btn{width:100%}
      .plan{padding:22px}
      .quote-card blockquote{font-size:20px}
      .footer-links{display:grid;grid-template-columns:1fr 1fr;width:100%}
      .footer-links a{text-align:center;background:#f8fafc}
    }
