/* Start custom CSS */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --blue:    #141841;
      --heading: #141841;
      --orange:  #E65E33;
      --peach:   #FDEAE2;
      --bg:      #F6F6F6;
      --white:   #FFFFFF;
      --text:    #2d2d2d;
      --muted:   #666666;
      --border:  #dedede;
      --font-head: 'Barlow Condensed', 'DIN Condensed', 'Arial Narrow', Arial, sans-serif;
      --font-body: Tahoma, Geneva, Verdana, sans-serif;
    }

    body { font-family: var(--font-body); background-color: var(--bg); color: var(--text); line-height: 1.65; }
    h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.15; color: var(--heading); }
    p { font-size: 16px; line-height: 1.7; }
    a { color: var(--orange); text-decoration: none; }
    img { max-width: 100%; display: block; }

    .wrap { max-width: 800px; margin: 0 auto; padding: 0 28px; }
    section { padding: 72px 0; }
    .label { display: inline-block; font-family: var(--font-body); font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--orange); margin-bottom: 14px; }
    .section-title { font-size: clamp(30px, 4.5vw, 46px); margin-bottom: 20px; }
    .section-intro { font-size: 17px; color: var(--muted); max-width: 620px; line-height: 1.75; margin-bottom: 44px; }

    .btn { display: inline-block; background-color: var(--orange); color: var(--white); padding: 16px 36px; font-family: var(--font-body); font-size: 16px; font-weight: bold; border-radius: 50px; border: none; cursor: pointer; text-decoration: none; transition: background 0.18s; }
    .btn:hover { background-color: #c44d27; color: var(--white); }
    .btn-white { background-color: var(--white); color: var(--blue); }
    .btn-white:hover { background-color: #e8e8e8; color: var(--blue); }

    nav { background-color: var(--white); padding: 12px 28px; display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; z-index: 100; border-bottom: 1px solid rgba(20,24,65,0.08); box-shadow: 0 1px 4px rgba(0,0,0,0.04); }
    .nav-logo { height: 120px; width: auto; display: block; flex-shrink: 0; }
    .nav-cta { font-size: 13px; padding: 7px 16px; }

    .hero { background: linear-gradient(90deg, #8EC3DE 0%, #8EC3DE 12%, #F6F6F6 38%, #FDEAE2 100%); padding: 0; overflow: hidden; }
    .hero-inner { display: grid; grid-template-columns: 1fr 380px; align-items: stretch; max-width: 1060px; margin: 0 auto; min-height: 600px; }
    .hero-text { padding: 80px 40px 80px 36px; display: flex; flex-direction: column; justify-content: center; }
    .hero-text .label { color: var(--orange); }
    .hero-text h1 { font-size: clamp(34px, 5vw, 60px); color: var(--heading); margin-bottom: 22px; }
    .hero-text h1 em { font-style: normal; color: var(--orange); }
    .hero-text .subline { font-size: 17px; color: var(--muted); max-width: 480px; margin-bottom: 32px; line-height: 1.7; }
    .hero-meta { display: flex; gap: 22px; flex-wrap: wrap; margin-bottom: 28px; }
    .hero-meta-item { font-size: 14px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .hero-meta-item::before { content: '●'; color: var(--orange); font-size: 8px; }
    .hero-date { font-family: var(--font-head); font-size: 20px; font-weight: 700; color: var(--heading); margin-bottom: 24px; letter-spacing: 0.5px; }
    .hero-text .btn { align-self: flex-start; }
    .hero-note { margin-top: 14px; font-size: 13px; color: var(--muted); }
    .hero-img-col { overflow: hidden; }
    .hero-img-col img { width: 100%; height: 100%; object-fit: cover; object-position: right top; display: block; }

    .problem { background-color: var(--bg); }
    .problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin: 40px 0; }
    .problem-card { background: var(--white); border-left: 4px solid var(--orange); padding: 24px 22px; border-radius: 2px; }
    .problem-card p { font-size: 15px; color: var(--text); line-height: 1.65; }
    .quote-block { background-color: var(--peach); border-left: 4px solid var(--orange); border-radius: 2px; padding: 44px 52px 36px; margin-top: 44px; position: relative; }
    .quote-mark { font-family: Georgia, serif; font-size: 88px; color: var(--orange); line-height: 0; position: absolute; top: 56px; left: 36px; opacity: 0.7; }
    .quote-block blockquote { font-size: 18px; font-style: italic; line-height: 1.75; color: var(--heading); padding-left: 36px; }
    .quote-block cite { display: block; margin-top: 20px; font-size: 13px; color: var(--muted); font-style: normal; padding-left: 36px; }

    .solution { background-color: var(--white); }
    .solution-body { font-size: 18px; line-height: 1.8; max-width: 660px; margin-bottom: 40px; color: var(--text); }
    .solution-facts { display: flex; gap: 40px; flex-wrap: wrap; padding: 32px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 44px; }
    .fact { display: flex; flex-direction: column; }
    .fact-label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--orange); margin-bottom: 4px; }
    .fact-value { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--blue); }

    .modules { background-color: var(--bg); }
    .module-list { display: flex; flex-direction: column; }
    .module-item { display: flex; gap: 28px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--border); }
    .module-item:last-child { border-bottom: none; }
    .module-num { flex-shrink: 0; width: 50px; height: 50px; border-radius: 50%; background-color: var(--orange); color: var(--white); font-family: var(--font-head); font-size: 24px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
    .module-text h4 { font-size: 22px; color: var(--heading); margin-bottom: 6px; }
    .module-text p { font-size: 15px; color: var(--muted); }
    .cta-box { background-color: var(--orange); border-radius: 4px; padding: 40px 48px; margin-top: 52px; text-align: center; }
    .cta-box h3 { color: var(--white); font-size: 28px; margin-bottom: 10px; }
    .cta-box p { color: rgba(255,255,255,0.9); margin-bottom: 28px; font-size: 16px; }

    .proof { background-color: var(--white); }
    .testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; margin-top: 44px; }
    .testimonial { background: var(--bg); padding: 28px 26px; border-radius: 4px; }
    .stars { color: var(--orange); font-size: 15px; letter-spacing: 3px; margin-bottom: 14px; }
    .testimonial blockquote { font-size: 15px; font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 20px; }
    .t-author { font-size: 14px; font-weight: bold; color: var(--heading); }
    .t-role { font-size: 13px; color: var(--muted); }
    .testimonial-placeholder { background: transparent; border: 2px dashed var(--border); display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; min-height: 200px; color: var(--muted); font-size: 14px; gap: 8px; border-radius: 4px; }

    .differentiation { background-color: var(--bg); }
    .story-block { background-color: var(--peach); border-left: 4px solid var(--orange); border-radius: 2px; padding: 40px 48px; margin-bottom: 44px; color: var(--text); font-size: 17px; line-height: 1.8; }
    .story-block p + p { margin-top: 16px; }
    .story-block em { font-style: italic; color: var(--heading); }
    .diff-list { list-style: none; }
    .diff-item { display: flex; gap: 24px; align-items: flex-start; padding: 24px 0; border-bottom: 1px solid var(--border); }
    .diff-item:last-child { border-bottom: none; }
    .diff-icon { flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%; background-color: var(--blue); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: bold; font-family: var(--font-head); }
    .diff-body h4 { font-size: 21px; color: var(--heading); margin-bottom: 6px; }
    .diff-body p { font-size: 15px; color: var(--muted); }

    .promise { background-color: var(--white); }
    .promise-list { list-style: none; margin-top: 40px; }
    .promise-item { display: flex; gap: 20px; align-items: flex-start; padding: 20px 0; border-bottom: 1px solid var(--border); font-size: 17px; line-height: 1.6; color: var(--text); }
    .promise-item:last-child { border-bottom: none; }
    .promise-arrow { color: var(--orange); font-size: 20px; font-weight: bold; flex-shrink: 0; margin-top: 1px; }

    .action { background-color: var(--peach); padding: 88px 0; }
    .action .label { color: var(--orange); }
    .action h2 { color: var(--heading); font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 16px; }
    .action-intro { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.75; margin-bottom: 36px; }
    .urgency-box { background: var(--white); border-left: 4px solid var(--orange); border-radius: 2px; padding: 20px 24px; margin-bottom: 40px; max-width: 580px; }
    .urgency-box p { font-size: 15px; color: var(--text); line-height: 1.65; }
    .urgency-box strong { color: var(--orange); }
    .email-form { max-width: 480px; display: flex; flex-direction: column; gap: 12px; }
    .email-form input { padding: 14px 18px; font-size: 15px; font-family: var(--font-body); border: 1px solid var(--border); border-radius: 50px; background: var(--white); color: var(--text); outline: none; }
    .email-form input::placeholder { color: #aaa; }
    .email-form input:focus { border-color: var(--orange); }
    .email-form .btn { width: 100%; text-align: center; font-size: 16px; padding: 17px; }
    .form-disclaimer { font-size: 12px; color: var(--muted); line-height: 1.5; margin-top: 8px; }

    .about { background-color: var(--bg); }
    .about .wrap { max-width: 980px; }
    .about-grid { display: grid; grid-template-columns: 420px 1fr; gap: 56px; align-items: start; }
    .about-img { width: 420px; height: 420px; object-fit: cover; object-position: center top; border-radius: 50%; flex-shrink: 0; display: block; }
    .about-text h2 { font-size: clamp(26px, 3.5vw, 38px); margin-bottom: 18px; }
    .about-text p { font-size: 16px; line-height: 1.75; color: var(--text); margin-bottom: 14px; }
    .about-text p:last-child { margin-bottom: 0; }

    .faq { background-color: var(--white); }
    .faq-list { margin-top: 44px; }
    .faq-item { border-bottom: 1px solid var(--border); padding: 28px 0; }
    .faq-item:last-child { border-bottom: none; }
    .faq-q { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--heading); margin-bottom: 12px; }
    .faq-a { font-size: 16px; line-height: 1.75; color: var(--muted); max-width: 680px; }

    .closing { background-color: var(--peach); padding: 96px 0; text-align: center; }
    .closing h2 { color: var(--heading); font-size: clamp(32px, 5vw, 52px); max-width: 640px; margin: 0 auto 18px; }
    .closing-sub { font-size: 18px; color: var(--muted); max-width: 500px; margin: 0 auto 44px; line-height: 1.7; }
    .closing .email-form { margin: 0 auto; }
    .closing .form-disclaimer { text-align: center; }

    footer { background-color: #0d1130; color: rgba(255,255,255,0.4); text-align: center; padding: 28px; font-size: 13px; }
    footer a { color: rgba(255,255,255,0.55); text-decoration: underline; }
    footer a:hover { color: rgba(255,255,255,0.8); }

    @media (max-width: 640px) {
      section { padding: 56px 0; }
      .hero-inner { grid-template-columns: 1fr; min-height: auto; }
      .hero-text { padding: 56px 24px 40px; }
      .hero-img-col { height: 300px; order: -1; }
      .about-grid { grid-template-columns: 1fr; }
      .about-img { width: 260px; height: 260px; }
      .quote-block { padding: 36px 28px 28px; }
      .quote-mark { top: 44px; left: 24px; font-size: 64px; }
      .quote-block blockquote { padding-left: 24px; font-size: 16px; }
      .cta-box { padding: 32px 24px; }
      .story-block { padding: 32px 28px; }
      nav .nav-cta { display: none; }
      .nav-logo { height: 52px; }
    }

    @keyframes zoomIn { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: scale(1); } }
    .action .wrap { opacity: 0; transform: scale(0.82); }
    .action .wrap.zoom-in { animation: zoomIn 0.65s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }
    @keyframes flyInLeft { from { opacity: 0; transform: translateX(-56px); } to { opacity: 1; transform: translateX(0); } }
    .module-item { opacity: 0; transform: translateX(-56px); }
    .module-item.fly-in { animation: flyInLeft 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards; }/* End custom CSS */