/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --c-navy: #0f1b3d;
    --c-navy-light: #1a2d5a;
    --c-line: #06C755;
    --c-line-hover: #05a648;
    --c-green-pale: #e9f7ef;
    --c-smart: #1f3261;
    --c-smart-hover: #162647;
    --c-text: #1c1c1e;
    --c-text-sub: #5a5a5e;
    --c-bg: #f7f8fa;
    --c-bg-alt: #ffffff;
    --c-border: #e4e6ea;
    --c-white: #ffffff;
    --radius: 14px;
    --radius-sm: 8px;
    --radius-full: 100px;
    --shadow-s: 0 1px 3px rgba(0,0,0,.06);
    --shadow-m: 0 4px 20px rgba(0,0,0,.08);
    --shadow-l: 0 12px 40px rgba(0,0,0,.12);
    --shadow-xl: 0 24px 60px rgba(0,0,0,.16);
    --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--c-text);
    line-height: 1.7;
    background: var(--c-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.sp-only { display: none; }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 1rem 2rem;
    font-size: .9375rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    min-height: 48px;
}

.btn-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.btn-line {
    background: var(--c-line);
    color: var(--c-white);
    box-shadow: 0 4px 16px rgba(6,199,85,.3);
}
.btn-line:hover {
    background: var(--c-line-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6,199,85,.35);
}

.btn-smart {
    background: var(--c-white);
    color: var(--c-smart);
    border: 2px solid var(--c-border);
}
.btn-smart:hover {
    background: var(--c-smart);
    color: var(--c-white);
    border-color: var(--c-smart);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1.1rem 2.5rem;
    font-size: 1.0625rem;
}

/* ===== Hero ===== */
.hero {
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
    background: var(--c-navy);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15,27,61,.92) 0%, rgba(15,27,61,.75) 50%, rgba(6,199,85,.15) 100%),
        url('images/ゴルフトップ.jpg') center / cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to top, var(--c-white), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: .5rem 1.25rem;
    background: rgba(6,199,85,.15);
    border: 1px solid rgba(6,199,85,.3);
    border-radius: var(--radius-full);
    color: var(--c-line);
    font-size: .8125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s ease-out both;
}

.hero-title {
    animation: fadeUp .7s ease-out .1s both;
}

.hero-logo {
    display: block;
    width: 220px;
    height: auto;
    margin-bottom: 1.25rem;
    filter: brightness(0) invert(1);
}

.hero-headline {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.25;
    color: var(--c-white);
    letter-spacing: -.02em;
}

.hero-desc {
    margin-top: 1.5rem;
    font-size: 1.0625rem;
    line-height: 1.85;
    color: rgba(255,255,255,.75);
    animation: fadeUp .7s ease-out .2s both;
}

.hero-actions {
    margin-top: 2.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    animation: fadeUp .7s ease-out .3s both;
}

.hero-actions .btn-smart {
    background: transparent;
    border-color: rgba(255,255,255,.35);
    color: var(--c-white);
}
.hero-actions .btn-smart:hover {
    background: var(--c-white);
    color: var(--c-smart);
    border-color: var(--c-white);
}

.hero-visual {
    display: flex;
    justify-content: center;
    animation: fadeRight .8s ease-out .2s both;
}

/* Phone mockup */
.phone-mockup {
    width: 280px;
    height: 580px;
    background: #111;
    border-radius: 42px;
    padding: 11px;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.08);
    position: relative;
}

.phone-notch {
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 110px;
    height: 24px;
    background: #111;
    border-radius: 0 0 18px 18px;
    z-index: 10;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--c-white);
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.phone-screen::before {
    content: '';
    height: 28px;
    background: var(--c-white);
    flex-shrink: 0;
}

.phone-screen img {
    width: 100%;
    flex: 1;
    min-height: 0;
    object-fit: cover;
    object-position: top;
    display: block;
}

/* ===== Value Props ===== */
.value {
    padding: 60px 0;
    background: var(--c-white);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--c-bg);
    border-radius: var(--radius);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-m);
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    background: var(--c-line);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-white);
}

.value-icon svg {
    width: 26px;
    height: 26px;
}

.value-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .5rem;
}

.value-card p {
    font-size: .875rem;
    color: var(--c-text-sub);
    line-height: 1.7;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: .8125rem;
    font-weight: 700;
    color: var(--c-line);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .5rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--c-text);
    letter-spacing: -.01em;
}

.section-subtitle {
    margin-top: .5rem;
    font-size: 1rem;
    color: var(--c-text-sub);
}

.section-header--light .section-label {
    color: rgba(255,255,255,.6);
}
.section-header--light .section-title {
    color: var(--c-white);
}

/* ===== How-to / Steps ===== */
.howto {
    padding: 60px 0 50px;
    background: var(--c-bg);
}

.steps {
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 1.75rem;
    align-items: center;
    background: var(--c-white);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    box-shadow: var(--shadow-s);
    transition: var(--transition);
}

.step:hover {
    box-shadow: var(--shadow-m);
}

.step--reverse {
    grid-template-columns: 1fr 220px;
}
.step--reverse .step-phone { order: 2; }
.step--reverse .step-body { order: 1; }

/* Phone frame (small) */
.phone-frame {
    width: 200px;
    height: 400px;
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px;
    box-shadow: var(--shadow-m);
    margin: 0 auto;
    transition: var(--transition);
}

.phone-frame:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-l);
}

.phone-frame--done {
    box-shadow: 0 4px 20px rgba(6,199,85,.2);
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 22px;
    display: block;
}

.step-body {
    padding: .5rem 0;
}

.step-num {
    display: inline-block;
    padding: .3rem .9rem;
    background: var(--c-navy);
    color: var(--c-white);
    font-size: .75rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: .75rem;
    letter-spacing: .05em;
}

.step-num--done {
    background: var(--c-line);
}

.step-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: .5rem;
}

.step-desc {
    font-size: .9375rem;
    color: var(--c-text-sub);
    line-height: 1.7;
}

.step-body--done {
    background: var(--c-green-pale);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
}

.step-connector {
    display: flex;
    justify-content: center;
    padding: .5rem 0;
}

.step-connector span {
    width: 2px;
    height: 24px;
    background: linear-gradient(to bottom, var(--c-border), var(--c-line));
    border-radius: 1px;
    display: block;
}

/* Mid CTA */
.mid-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2.5rem;
    background: var(--c-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-s);
}

.mid-cta-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--c-text);
    margin-bottom: 1.25rem;
}

/* ===== Features ===== */
.features {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(15,27,61,.93), rgba(31,50,97,.88)),
        url('images/golf_ground.jpg') center / cover no-repeat;
    z-index: 0;
}

.features .container {
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: rgba(255,255,255,.07);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255,255,255,.12);
    transform: translateY(-4px);
    border-color: rgba(6,199,85,.3);
}

.feature-num {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--c-line);
    line-height: 1;
    margin-bottom: 1.25rem;
    opacity: .5;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--c-white);
    margin-bottom: .75rem;
}

.feature-desc {
    font-size: .9375rem;
    color: rgba(255,255,255,.65);
    line-height: 1.75;
}

/* ===== FAQ ===== */
.faq {
    padding: 60px 0;
    background: var(--c-bg);
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: .75rem;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--c-white);
    border: 1px solid var(--c-border);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--c-line);
    box-shadow: 0 0 0 1px var(--c-line);
}

.faq-q {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    color: var(--c-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--c-line);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform var(--transition);
    color: var(--c-text-sub);
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--c-line);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-item.active .faq-a {
    max-height: 300px;
}

.faq-a p {
    padding: 0 1.5rem 1.25rem;
    font-size: .9375rem;
    color: var(--c-text-sub);
    line-height: 1.8;
}

.faq-link {
    display: inline-block;
    margin-top: .5rem;
    color: var(--c-line);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.faq-link:hover {
    border-bottom-color: var(--c-line);
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background:
        linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 40%, #0d3320 100%);
    color: var(--c-white);
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6,199,85,.12), transparent 70%);
    border-radius: 50%;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: .75rem;
}

.final-cta-desc {
    font-size: 1.0625rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.final-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem;
}

.final-cta-actions .btn-smart {
    background: var(--c-white);
    color: var(--c-smart);
    border-color: var(--c-white);
}
.final-cta-actions .btn-smart:hover {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,.5);
}

/* ===== Footer ===== */
.footer {
    background: var(--c-navy);
    padding: 40px 0 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
    width: 160px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: .7;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    font-size: .875rem;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--c-line);
}

.footer-copy {
    margin-top: 1.25rem;
    text-align: center;
    font-size: .75rem;
    color: rgba(255,255,255,.3);
}

/* ===== Floating CTA (mobile) ===== */
.floating-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: .6rem .75rem calc(.6rem + env(safe-area-inset-bottom));
    background: rgba(15,27,61,.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255,255,255,.08);
    gap: .5rem;
}

.floating-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .85rem .55rem;
    font-size: .875rem;
    font-weight: 700;
    font-family: inherit;
    text-decoration: none;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    min-height: 50px;
}

.floating-btn--line {
    background: var(--c-line);
    color: var(--c-white);
}

.floating-btn--smart {
    background: rgba(255,255,255,.12);
    color: var(--c-white);
    border: 1px solid rgba(255,255,255,.15);
}

.floating-icon {
    width: 18px;
    height: 18px;
}

/* ===== Animations ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

[data-aos] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Scroll progress ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--c-line);
    z-index: 9999;
    transition: width .1s linear;
}

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
    .hero {
        padding: 50px 0 70px;
        min-height: auto;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-logo {
        margin: 0 auto 1rem;
        width: 200px;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }

    .value { padding: 50px 0; }
    .howto { padding: 50px 0 40px; }
    .features { padding: 70px 0; }
    .faq { padding: 50px 0; }
    .final-cta { padding: 70px 0; }
}

/* Mobile large */
@media (max-width: 768px) {
    .container { padding: 0 18px; }
    .sp-only { display: inline; }

    .hero {
        padding: 32px 0 40px;
        min-height: 70vh;
        min-height: 70dvh;
        display: flex;
        align-items: center;
    }

    .hero .container {
        flex: 1;
    }

    .hero-inner {
        grid-template-columns: auto 1fr;
        gap: 1.25rem;
        text-align: left;
        align-items: center;
    }

    .hero-badge {
        font-size: .75rem;
        padding: .4rem 1rem;
        margin-bottom: .75rem;
    }

    .hero-logo {
        margin: 0 0 .5rem;
        width: 150px;
    }

    .hero-headline {
        font-size: 1.625rem;
        line-height: 1.35;
    }

    .hero-desc {
        font-size: .875rem;
        margin-top: .6rem;
        line-height: 1.7;
    }

    .hero-actions {
        justify-content: flex-start;
        flex-direction: column;
        gap: .6rem;
        margin-top: 1.25rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 100%;
        padding: .75rem 1.25rem;
        min-height: 44px;
        font-size: .875rem;
    }

    .hero-text {
        min-width: 0;
        order: 1;
    }

    .hero-visual {
        order: 0;
        justify-content: flex-start;
    }

    .phone-mockup {
        width: 150px;
        height: 300px;
        border-radius: 30px;
        padding: 8px;
        flex-shrink: 0;
    }

    .phone-notch {
        width: 68px;
        height: 16px;
    }

    .phone-screen {
        border-radius: 23px;
    }

    .phone-screen::before {
        height: 20px;
    }

    .value { padding: 50px 0; }

    .value-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    .value-card {
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 1rem;
        text-align: left;
        padding: 1.35rem 1.5rem;
        align-items: center;
    }

    .value-icon {
        margin: 0;
        width: 50px;
        height: 50px;
        grid-row: 1 / 3;
    }

    .value-card h3 {
        margin-bottom: 0;
        font-size: 1.05rem;
        font-weight: 700;
    }
    .value-card p {
        font-size: .875rem;
        line-height: 1.65;
    }

    .section-title { font-size: 1.875rem; }
    .section-subtitle { font-size: .9375rem; }

    .howto { padding: 50px 0 35px; }

    .step {
        grid-template-columns: minmax(0, 140px) 1fr;
        gap: 1rem;
        padding: 1.25rem 1.25rem;
        align-items: center;
    }

    .step--reverse {
        grid-template-columns: 1fr minmax(0, 140px);
    }
    .step--reverse .step-phone { order: 2; }
    .step--reverse .step-body { order: 1; }

    .phone-frame {
        width: 120px;
        height: 240px;
        padding: 6px;
        border-radius: 22px;
    }

    .phone-frame img {
        border-radius: 16px;
    }

    .step-connector {
        padding: .4rem 0;
    }

    .step-connector span {
        height: 20px;
    }

    .step-body {
        padding: 0;
        min-width: 0;
    }

    .step-num {
        padding: .25rem .6rem;
        font-size: .6875rem;
        margin-bottom: .5rem;
    }

    .step-title {
        font-size: 1.1rem;
        margin-bottom: .35rem;
    }

    .step-desc {
        font-size: .8125rem;
        line-height: 1.6;
    }

    .step-body--done {
        padding: .85rem 1rem;
    }

    .mid-cta {
        padding: 2rem 1.5rem;
        margin-top: 2.5rem;
    }

    .mid-cta-text {
        font-size: 1.05rem;
    }

    .mid-cta .btn {
        width: 100%;
        max-width: 340px;
    }

    .features { padding: 70px 0; }

    .features-grid {
        grid-template-columns: 1fr;
        gap: .85rem;
    }

    .feature-card {
        padding: 2.25rem 1.75rem;
        display: grid;
        grid-template-columns: 52px 1fr;
        gap: 0 1.35rem;
    }

    .feature-num {
        font-size: 1.9rem;
        grid-row: 1 / 3;
        align-self: center;
        margin-bottom: 0;
    }

    .feature-title {
        font-size: 1.15rem;
        margin-bottom: .35rem;
    }

    .feature-desc {
        font-size: .9375rem;
        line-height: 1.7;
    }

    .faq { padding: 50px 0; }

    .faq-q {
        padding: 1.35rem 1.5rem;
        font-size: 1.05rem;
    }

    .faq-a p {
        padding: 0 1.5rem 1.35rem;
        font-size: 1rem;
        line-height: 1.85;
    }

    .final-cta { padding: 70px 0; }
    .final-cta-title { font-size: 2.25rem; }
    .final-cta-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .final-cta-actions {
        flex-direction: column;
        align-items: center;
        gap: .6rem;
    }

    .final-cta-actions .btn {
        width: 100%;
        max-width: 340px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.35rem;
        text-align: center;
    }

    .footer-links {
        gap: 1.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    /* Show floating CTA on mobile */
    .floating-cta {
        display: flex;
    }

    body {
        padding-bottom: calc(70px + env(safe-area-inset-bottom));
    }
}

/* Mobile small */
@media (max-width: 450px) {
    .container { padding: 0 16px; }

    .hero {
        padding: 24px 0 32px;
        min-height: 70vh;
        min-height: 70dvh;
    }

    .hero-inner {
        gap: 1rem;
    }

    .hero-badge {
        font-size: .7rem;
        padding: .35rem .85rem;
        margin-bottom: .5rem;
    }

    .hero-logo {
        width: 125px;
        margin-bottom: .35rem;
    }

    .hero-headline {
        font-size: 1.45rem;
        line-height: 1.3;
    }

    .hero-desc {
        font-size: .8125rem;
        line-height: 1.65;
        margin-top: .5rem;
    }

    .hero-actions {
        margin-top: 1rem;
        gap: .5rem;
    }

    .hero-actions .btn {
        padding: .65rem 1.1rem;
        font-size: .8125rem;
        min-height: 40px;
    }

    .phone-mockup {
        width: 120px;
        height: 240px;
        border-radius: 26px;
        padding: 7px;
    }

    .phone-notch {
        width: 48px;
        height: 11px;
        top: 6px;
        border-radius: 0 0 10px 10px;
    }

    .phone-screen {
        border-radius: 16px;
    }

    .phone-screen::before {
        height: 14px;
    }

    .value { padding: 45px 0; }

    .value-card {
        padding: 1.25rem 1.35rem;
        grid-template-columns: 50px 1fr;
        gap: .9rem;
    }

    .value-icon {
        width: 48px;
        height: 48px;
    }

    .value-card h3 { font-size: 1rem; }
    .value-card p { font-size: .8125rem; }

    .section-title { font-size: 1.625rem; }
    .section-subtitle { font-size: .875rem; }
    .section-label { font-size: .75rem; }

    .howto { padding: 45px 0 30px; }

    .step {
        padding: 1rem 1rem;
        gap: .85rem;
        grid-template-columns: minmax(0, 120px) 1fr;
    }

    .step--reverse {
        grid-template-columns: 1fr minmax(0, 120px);
    }

    .phone-frame {
        width: 100px;
        height: 200px;
        border-radius: 20px;
        padding: 5px;
    }

    .phone-frame img {
        border-radius: 14px;
    }

    .step-num {
        font-size: .625rem;
        padding: .2rem .5rem;
        margin-bottom: .35rem;
    }

    .step-title {
        font-size: 1rem;
        margin-bottom: .25rem;
    }

    .step-desc {
        font-size: .75rem;
        line-height: 1.55;
    }

    .step-body--done {
        padding: .7rem .85rem;
    }

    .step-connector span {
        height: 16px;
    }

    .mid-cta {
        padding: 1.75rem 1.35rem;
        margin-top: 2.25rem;
    }

    .mid-cta-text {
        font-size: 1rem;
        margin-bottom: 1.15rem;
    }

    .features { padding: 60px 0; }

    .feature-card {
        padding: 2rem 1.5rem;
        grid-template-columns: 48px 1fr;
        gap: 0 1.2rem;
    }

    .feature-num { font-size: 1.7rem; }
    .feature-title { font-size: 1.075rem; }
    .feature-desc { font-size: .875rem; }

    .faq { padding: 45px 0; }

    .faq-q {
        padding: 1.25rem 1.35rem;
        font-size: 1rem;
    }

    .faq-a p {
        padding: 0 1.35rem 1.25rem;
        font-size: .9375rem;
    }

    .final-cta { padding: 60px 0; }
    .final-cta-title {
        font-size: 2rem;
        margin-bottom: .65rem;
    }
    .final-cta-desc {
        font-size: .9375rem;
        margin-bottom: 1.85rem;
    }

    .footer { padding: 35px 0 28px; }
    .footer-logo { width: 145px; }
    .footer-links { font-size: .8125rem; }
    .footer-copy { font-size: .7rem; }

    .floating-btn {
        font-size: .8rem;
        padding: .7rem .45rem;
    }
}
