/* =========================================================
   KIVOPAY WEBSITE - MAIN STYLESHEET
   Theme: Orange + Green + Golden
   ========================================================= */


/* =========================
   ROOT VARIABLES
   ========================= */

:root {

    --primary: #f27a00;
    --primary-dark: #d95f00;
    --primary-light: #fff3df;

    --green: #2f851f;
    --green-dark: #176b18;
    --green-light: #edf8e9;

    --gold: #d99b16;
    --gold-dark: #a96f00;
    --gold-light: #fff8dc;

    --orange: #f28a00;
    --orange-light: #fff0d4;

    --dark: #252a20;
    --dark-green: #18351a;

    --text: #50594d;
    --muted: #778074;

    --white: #ffffff;
    --light: #fffdf8;
    --background: #f6f8f2;

    --border: #e5e8df;

    --shadow:
        0 8px 28px rgba(40, 72, 35, 0.08);

    --shadow-hover:
        0 14px 38px rgba(40, 72, 35, 0.14);

    --radius-card: 22px;
    --radius-button: 13px;
    --radius-small: 10px;

}


/* =========================
   RESET
   ========================= */

* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}


body {
    margin: 0;
    padding: 0;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            #fffdf8 0%,
            #f7f9f3 45%,
            #f4f8f0 100%
        );

    color: var(--text);

    line-height: 1.75;

    overflow-x: hidden;
}


img {
    max-width: 100%;
    height: auto;
}


a {
    text-decoration: none;
}


button,
a {
    -webkit-tap-highlight-color: transparent;
}


::selection {
    background: var(--primary);
    color: var(--white);
}


/* =========================
   HEADER
   ========================= */

.site-header {

    position: sticky;

    top: 0;

    z-index: 9999;

    width: 100%;

    background:
        rgba(255, 255, 255, 0.97);

    border-bottom:
        1px solid #e7eadf;

    box-shadow:
        0 4px 18px rgba(35, 70, 30, 0.06);

    backdrop-filter: blur(12px);
}


.header-inner {

    width: 100%;

    max-width: 980px;

    min-height: 76px;

    margin: 0 auto;

    padding:
        10px 20px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;
}


/* =========================
   BRAND
   ========================= */

.brand {

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--green-dark);

    font-size: 23px;

    font-weight: 800;

    letter-spacing: -0.3px;

    transition: 0.25s ease;
}


.brand:hover {
    color: var(--primary);
}


.brand img {

    width: 52px;

    height: 52px;

    object-fit: cover;

    border-radius: 50%;

    box-shadow:
        0 4px 12px rgba(242, 122, 0, 0.18);
}


/* =========================
   MENU BUTTON
   ========================= */

.menu-toggle {

    width: 46px;

    height: 43px;

    padding: 8px;

    display: none;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 5px;

    border: 0;

    border-radius: 11px;

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--green-dark)
        );

    cursor: pointer;

    box-shadow:
        0 5px 14px rgba(47, 133, 31, 0.20);
}


.menu-toggle span {

    display: block;

    width: 22px;

    height: 2px;

    background: var(--white);

    border-radius: 10px;

    transition: 0.25s ease;
}


/* =========================
   NAVIGATION
   ========================= */

.main-menu {

    max-width: 980px;

    margin: 0 auto;

    padding:
        0 20px 13px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 7px;
}


.main-menu a {

    padding:
        7px 13px;

    color: #4b5947;

    font-size: 14px;

    font-weight: 700;

    border-radius: 20px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}


.main-menu a:hover {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--green-dark)
        );

    transform: translateY(-1px);
}


/* =========================
   MAIN CONTAINER
   ========================= */

.page-container {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding:
        25px 18px 60px;
}


/* =========================
   HERO SECTION
   ========================= */

.hero-section {

    position: relative;

    overflow: hidden;

    margin:
        0 0 25px;

    padding:
        42px 25px 38px;

    text-align: center;

    border:
        1px solid rgba(217, 155, 22, 0.25);

    border-radius:
        28px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(255, 248, 203, 0.95) 0%,
            rgba(255, 238, 190, 0.70) 18%,
            rgba(255, 248, 226, 0.92) 42%,
            rgba(237, 248, 228, 0.95) 72%,
            rgba(222, 243, 216, 1) 100%
        );

    box-shadow:
        0 12px 38px rgba(53, 98, 42, 0.10);
}


/* Hero decorative top */

.hero-section::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    top: -190px;

    left: 50%;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(242, 122, 0, 0.25),
            transparent 68%
        );

    pointer-events: none;
}


/* Hero decorative bottom */

.hero-section::after {

    content: "";

    position: absolute;

    width: 280px;

    height: 180px;

    right: -120px;

    bottom: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(47, 133, 31, 0.20),
            transparent 70%
        );

    pointer-events: none;
}


.hero-content {

    position: relative;

    z-index: 2;
}


/* =========================
   HERO BADGE
   ========================= */

.hero-badge {

    display: inline-block;

    margin-bottom: 17px;

    padding:
        7px 15px;

    border:
        1px solid rgba(242, 122, 0, 0.28);

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.76);

    color:
        var(--primary-dark);

    font-size: 13px;

    font-weight: 800;

    letter-spacing: 0.3px;

    box-shadow:
        0 4px 12px rgba(60, 80, 40, 0.05);
}


/* =========================
   HERO LOGO
   ========================= */

.hero-logo {

    display: block;

    width: 205px;

    height: 205px;

    margin:
        3px auto 17px;

    object-fit: cover;

    border-radius: 50%;

    box-shadow:
        0 10px 30px rgba(177, 106, 0, 0.22);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
}


.hero-logo:hover {

    transform:
        scale(1.025);

    box-shadow:
        0 14px 38px rgba(177, 106, 0, 0.28);
}


/* =========================
   HERO TITLE
   ========================= */

.hero-section h1 {

    max-width: 760px;

    margin:
        0 auto 15px;

    color:
        var(--dark-green);

    font-size:
        clamp(28px, 5vw, 43px);

    line-height: 1.2;

    letter-spacing: -0.7px;

    font-weight: 850;
}


.hero-section h1::after {

    content: "";

    display: block;

    width: 70px;

    height: 4px;

    margin:
        16px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary),
            var(--gold),
            var(--green)
        );
}


/* =========================
   HERO TEXT
   ========================= */

.hero-text {

    max-width: 720px;

    margin:
        20px auto 23px;

    color:
        #5d6659;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================
   HERO BUTTONS
   ========================= */

.hero-buttons,
.final-buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 10px;

    margin-top: 22px;
}


/* =========================
   BUTTONS
   ========================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 46px;

    padding:
        11px 19px;

    border:
        1px solid transparent;

    border-radius:
        var(--radius-button);

    font-size: 14px;

    font-weight: 800;

    line-height: 1.2;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}


.btn:hover {

    transform:
        translateY(-2px);

    box-shadow:
        0 8px 18px rgba(40, 80, 35, 0.15);
}


.btn-primary {

    color: var(--white);

    background:
        linear-gradient(
            135deg,
            #f28a00,
            #dc5f00
        );

    box-shadow:
        0 5px 14px rgba(232, 105, 0, 0.20);
}


.btn-outline {

    color:
        var(--green-dark);

    background:
        var(--white);

    border-color:
        rgba(47, 133, 31, 0.45);
}


.btn-outline:hover {

    color:
        var(--white);

    background:
        var(--green);
}


.btn-secondary {

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            #3e922b,
            #176b18
        );

    box-shadow:
        0 5px 14px rgba(47, 133, 31, 0.18);
}


/* =========================
   HERO NOTE
   ========================= */

.hero-note {

    max-width: 700px;

    margin:
        23px auto 0;

    padding:
        11px 15px;

    border-left:
        4px solid var(--gold);

    border-radius:
        9px;

    background:
        rgba(255, 255, 255, 0.68);

    color:
        #636b5c;

    text-align: left;

    font-size: 13px;
}


/* =========================
   CONTENT CARD
   ========================= */

.content-card {

    margin:
        0 0 21px;

    padding:
        27px 25px;

    background:
        rgba(255, 255, 255, 0.96);

    border:
        1px solid var(--border);

    border-radius:
        var(--radius-card);

    box-shadow:
        var(--shadow);

    transition:
        box-shadow 0.25s ease,
        transform 0.25s ease;
}


.content-card:hover {

    box-shadow:
        var(--shadow-hover);
}


/* =========================
   SECTION HEADING
   ========================= */

.section-heading {

    display: flex;

    align-items: flex-start;

    gap: 13px;

    margin-bottom: 17px;
}


.section-number {

    flex: 0 0 auto;

    min-width: 43px;

    height: 43px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 5px 8px;

    border-radius: 13px;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--gold)
        );

    font-size: 11px;

    font-weight: 900;

    box-shadow:
        0 5px 12px rgba(223, 112, 0, 0.18);
}


.section-heading h2 {

    margin:
        0 0 2px;

    color:
        var(--dark-green);

    font-size:
        clamp(22px, 4vw, 29px);

    line-height: 1.3;

    letter-spacing: -0.3px;
}


.section-heading p {

    margin:
        0;

    color:
        var(--muted);

    font-size: 13px;
}


/* =========================
   TEXT
   ========================= */

.content-card p {

    margin:
        0 0 15px;

    color:
        var(--text);

    font-size: 15px;
}


.content-card p:last-child {
    margin-bottom: 0;
}


.content-card strong {

    color:
        #334d2d;

    font-weight: 800;
}


.content-card h3 {

    margin:
        22px 0 9px;

    color:
        var(--green-dark);

    font-size: 19px;

    line-height: 1.4;
}


/* =========================
   INFO GRID
   ========================= */

.info-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 12px;

    margin-top: 20px;
}


.info-box {

    padding:
        17px;

    border:
        1px solid #e5ecdF;

    border-radius:
        15px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f7fbf2
        );

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.info-box:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0 8px 20px rgba(46, 100, 35, 0.09);
}


.info-box strong {

    display: block;

    margin-bottom: 5px;

    color:
        var(--primary-dark);

    font-size: 16px;
}


.info-box p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;
}


/* =========================
   NOTICE BOX
   ========================= */

.notice-box {

    margin:
        20px 0 2px;

    padding:
        17px 18px;

    border-left:
        5px solid var(--green);

    border-radius:
        12px;

    background:
        linear-gradient(
            135deg,
            #f1faed,
            #fbfff8
        );
}


.notice-box.warning {

    border-left-color:
        var(--primary);

    background:
        linear-gradient(
            135deg,
            #fff6e6,
            #fffdf8
        );
}


.notice-box strong {

    display: block;

    margin-bottom: 5px;

    color:
        var(--green-dark);

    font-size: 15px;
}


.notice-box.warning strong {

    color:
        var(--primary-dark);
}


.notice-box p {

    margin: 0;

    font-size: 14px;
}


/* =========================
   CHECK LIST
   ========================= */

.check-list {

    margin:
        12px 0 18px;

    padding: 0;

    list-style: none;
}


.check-list li {

    position: relative;

    margin-bottom: 9px;

    padding:
        9px 12px 9px 36px;

    border-radius:
        10px;

    background:
        #f7faf4;

    color:
        #586154;

    font-size: 14px;

    border:
        1px solid #edf1e9;
}


.check-list li::before {

    content: "✓";

    position: absolute;

    left: 12px;

    top: 7px;

    color:
        var(--green);

    font-size: 16px;

    font-weight: 900;
}


/* =========================
   STEP LIST
   ========================= */

.step-list {

    counter-reset: steps;

    margin:
        13px 0 18px;

    padding: 0;

    list-style: none;
}


.step-list li {

    position: relative;

    counter-increment: steps;

    margin-bottom: 10px;

    padding:
        11px 13px 11px 49px;

    border:
        1px solid #e9ede5;

    border-radius:
        12px;

    background:
        #fbfcf9;

    font-size: 14px;

    color:
        #555e51;
}


.step-list li::before {

    content:
        counter(steps);

    position: absolute;

    left: 11px;

    top: 8px;

    width: 29px;

    height: 29px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--green-dark)
        );

    font-size: 12px;

    font-weight: 900;
}


/* =========================
   FEATURE GRID
   ========================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;

    margin-top: 20px;
}


.feature-box {

    padding:
        20px 17px;

    border:
        1px solid #e6ebe0;

    border-radius:
        17px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f6faf3
        );

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}


.feature-box:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(242, 122, 0, 0.28);

    box-shadow:
        0 10px 25px rgba(48, 95, 40, 0.10);
}


.feature-icon {

    width: 43px;

    height: 43px;

    margin-bottom: 11px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--gold)
        );

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 0.5px;
}


.feature-box h3 {

    margin:
        0 0 6px;

    font-size: 17px;

    color:
        var(--green-dark);
}


.feature-box p {

    margin: 0;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================
   SCREENSHOT AREA
   ========================= */

.screenshot-area {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;

    margin-top: 20px;
}


.screenshot-placeholder {

    min-height: 210px;

    padding:
        25px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    border:
        2px dashed #d9e1d2;

    border-radius:
        17px;

    background:
        linear-gradient(
            145deg,
            #fbfdf8,
            #f2f8ed
        );
}


.screenshot-placeholder span {

    display: inline-block;

    margin-bottom: 8px;

    padding:
        5px 10px;

    border-radius: 20px;

    background:
        var(--gold-light);

    color:
        var(--gold-dark);

    font-size: 11px;

    font-weight: 800;
}


.screenshot-placeholder strong {

    margin-bottom: 4px;

    color:
        var(--green-dark);

    font-size: 15px;
}


.screenshot-placeholder p {

    margin: 0;

    color:
        var(--muted);

    font-size: 12px;
}


/* =========================
   TWO COLUMN INFO
   ========================= */

.two-column-info {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 16px;

    margin-top: 18px;
}


.two-column-info > div {

    padding:
        18px;

    border:
        1px solid #e5ebe0;

    border-radius:
        15px;

    background:
        #fafcf8;
}


.two-column-info h3 {

    margin:
        0 0 9px;

    font-size: 17px;
}


.two-column-info ul {

    margin:
        0;

    padding-left: 19px;
}


.two-column-info li {

    margin-bottom: 7px;

    color:
        #596254;

    font-size: 14px;
}


/* =========================
   PROCESS GRID
   ========================= */

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 12px;

    margin-top: 20px;
}


.process-item {

    position: relative;

    padding:
        19px 14px;

    text-align: center;

    border:
        1px solid #e5ebe0;

    border-radius:
        16px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f5faf2
        );
}


.process-item > span {

    width: 39px;

    height: 39px;

    margin:
        0 auto 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color:
        var(--white);

    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--gold)
        );

    font-size: 14px;

    font-weight: 900;
}


.process-item h3 {

    margin:
        0 0 5px;

    font-size: 16px;
}


.process-item p {

    margin: 0;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================
   PROS & CONS
   ========================= */

.pros-cons {

    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 15px;

    margin-top: 20px;
}


.pros-box,
.cons-box {

    padding:
        20px;

    border-radius:
        17px;

    border:
        1px solid #e5ebe1;
}


.pros-box {

    background:
        linear-gradient(
            145deg,
            #f1faed,
            #ffffff
        );
}


.cons-box {

    background:
        linear-gradient(
            145deg,
            #fff7ea,
            #ffffff
        );
}


.pros-box h3,
.cons-box h3 {

    margin:
        0 0 12px;

    font-size: 18px;
}


.pros-box h3 {
    color: var(--green-dark);
}


.cons-box h3 {
    color: var(--primary-dark);
}


.pros-box ul,
.cons-box ul {

    margin: 0;

    padding-left: 20px;
}


.pros-box li,
.cons-box li {

    margin-bottom: 8px;

    font-size: 14px;

    color:
        #596254;
}


/* =========================
   SUPPORT BOX
   ========================= */

.support-box {

    margin-top: 18px;

    padding:
        18px;

    border-radius:
        15px;

    background:
        linear-gradient(
            135deg,
            #fff5df,
            #f5faee
        );

    border:
        1px solid #e8e5d8;
}


.support-box strong {

    display: block;

    margin-bottom: 4px;

    color:
        var(--primary-dark);

    font-size: 17px;
}


.support-box p {

    margin: 0;

    font-size: 14px;
}


/* =========================
   FAQ
   ========================= */

.faq-list {

    margin-top: 17px;
}


.faq-list details {

    margin-bottom: 10px;

    overflow: hidden;

    border:
        1px solid #e5eae1;

    border-radius:
        13px;

    background:
        #fbfcfa;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;
}


.faq-list details[open] {

    border-color:
        rgba(242, 122, 0, 0.35);

    background:
        #fffdf8;
}


.faq-list summary {

    position: relative;

    padding:
        15px 43px 15px 16px;

    color:
        var(--green-dark);

    font-size: 15px;

    font-weight: 800;

    cursor: pointer;

    list-style: none;
}


.faq-list summary::-webkit-details-marker {
    display: none;
}


.faq-list summary::after {

    content: "+";

    position: absolute;

    right: 16px;

    top: 11px;

    color:
        var(--primary);

    font-size: 23px;

    font-weight: 400;
}


.faq-list details[open] summary::after {
    content: "−";
}


.faq-list details p {

    margin:
        0;

    padding:
        0 16px 16px;

    color:
        #626b5d;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================
   CONCLUSION CARD
   ========================= */

.conclusion-card {

    background:
        linear-gradient(
            145deg,
            #fffaf0,
            #f4faef
        );

    border-color:
        #e6e5d8;
}


.conclusion-card .section-number {

    background:
        linear-gradient(
            135deg,
            var(--green),
            var(--primary)
        );
}


/* =========================
   FOOTER
   ========================= */

.site-footer {

    margin-top: 10px;

    background:
        linear-gradient(
            145deg,
            #19391b,
            #285d20
        );

    color:
        rgba(255, 255, 255, 0.85);
}


.footer-inner {

    width: 100%;

    max-width: 900px;

    margin: 0 auto;

    padding:
        38px 20px 20px;
}


/* =========================
   FOOTER BRAND
   ========================= */

.footer-brand {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    padding-bottom: 23px;

    border-bottom:
        1px solid rgba(255, 255, 255, 0.13);
}


.footer-brand img {

    width: 58px;

    height: 58px;

    flex: 0 0 auto;

    object-fit: cover;

    border-radius: 50%;

    background:
        #ffffff;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.20);
}


.footer-brand h3 {

    margin:
        0 0 4px;

    color:
        var(--white);

    font-size: 22px;
}


.footer-brand p {

    max-width: 650px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.72);

    font-size: 13px;

    line-height: 1.65;
}


/* =========================
   FOOTER LINKS
   ========================= */

.footer-links {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 7px 15px;

    padding:
        21px 0;
}


.footer-links a {

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 13px;

    font-weight: 700;

    transition:
        color 0.2s ease;
}


.footer-links a:hover {

    color:
        #ffd77a;
}


/* =========================
   FOOTER BOTTOM
   ========================= */

.footer-bottom {

    padding-top:
        17px;

    border-top:
        1px solid rgba(255, 255, 255, 0.11);

    text-align: center;
}


.footer-bottom p {

    margin: 0;

    color:
        rgba(255, 255, 255, 0.58);

    font-size: 12px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {


    .page-container {

        max-width: 760px;

        padding:
            20px 15px 45px;
    }


    .info-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .screenshot-area {

        grid-template-columns:
            repeat(2, 1fr);
    }


    .process-grid {

        grid-template-columns:
            repeat(2, 1fr);
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 680px) {


    html {

        scroll-padding-top: 76px;
    }


    .site-header {

        position: sticky;

        top: 0;
    }


    .header-inner {

        min-height: 68px;

        padding:
            8px 14px;
    }


    .brand {

        font-size: 20px;

        gap: 9px;
    }


    .brand img {

        width: 47px;

        height: 47px;
    }


    .menu-toggle {

        display: flex;
    }


    .main-menu {

        display: none;

        max-width: none;

        padding:
            8px 14px 14px;

        flex-direction: column;

        align-items: stretch;

        gap: 4px;

        background:
            #ffffff;

        border-top:
            1px solid #eef0e9;
    }


    .main-menu.active {

        display: flex;
    }


    .main-menu a {

        width: 100%;

        padding:
            11px 13px;

        border-radius:
            10px;

        text-align: left;

        background:
            #f7faf5;
    }


    .main-menu a:hover {

        transform: none;
    }


    .page-container {

        padding:
            14px 11px 35px;
    }


    .hero-section {

        padding:
            30px 15px 27px;

        border-radius:
            21px;
    }


    .hero-logo {

        width: 170px;

        height: 170px;

        margin-bottom: 15px;
    }


    .hero-section h1 {

        font-size:
            clamp(25px, 7vw, 34px);

        letter-spacing:
            -0.4px;
    }


    .hero-text {

        font-size: 14px;

        line-height: 1.75;
    }


    .hero-buttons,
    .final-buttons {

        flex-direction: column;

        width: 100%;

        gap: 9px;
    }


    .hero-buttons .btn,
    .final-buttons .btn {

        width: 100%;

        min-height: 45px;
    }


    .hero-note {

        font-size: 12px;

        padding:
            10px 12px;
    }


    .content-card {

        padding:
            21px 16px;

        border-radius:
            18px;

        margin-bottom: 15px;
    }


    .section-heading {

        gap: 10px;

        margin-bottom: 14px;
    }


    .section-number {

        min-width: 38px;

        height: 38px;

        border-radius: 11px;

        font-size: 10px;
    }


    .section-heading h2 {

        font-size: 21px;
    }


    .section-heading p {

        font-size: 12px;
    }


    .content-card p {

        font-size: 14px;
    }


    .content-card h3 {

        font-size: 18px;
    }


    .info-grid,
    .feature-grid,
    .screenshot-area,
    .process-grid,
    .two-column-info,
    .pros-cons {

        grid-template-columns:
            1fr;
    }


    .info-box {

        padding: 15px;
    }


    .feature-box {

        padding:
            17px 15px;
    }


    .screenshot-placeholder {

        min-height: 180px;
    }


    .process-item {

        padding:
            18px 14px;
    }


    .pros-box,
    .cons-box {

        padding:
            17px;
    }


    .footer-inner {

        padding:
            30px 15px 18px;
    }


    .footer-brand {

        gap: 11px;
    }


    .footer-brand img {

        width: 50px;

        height: 50px;
    }


    .footer-brand h3 {

        font-size: 19px;
    }


    .footer-brand p {

        font-size: 12px;
    }


    .footer-links {

        justify-content:
            flex-start;

        gap:
            8px 13px;
    }


    .footer-links a {

        font-size: 12px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {


    .header-inner {

        padding-left: 11px;

        padding-right: 11px;
    }


    .brand {

        font-size: 18px;
    }


    .brand img {

        width: 43px;

        height: 43px;
    }


    .hero-section {

        padding:
            25px 12px;
    }


    .hero-logo {

        width: 145px;

        height: 145px;
    }


    .hero-section h1 {

        font-size: 24px;
    }


    .content-card {

        padding:
            19px 14px;
    }


    .section-heading h2 {

        font-size: 19px;
    }


    .section-number {

        min-width: 35px;

        height: 35px;

        font-size: 9px;
    }


    .check-list li,
    .step-list li {

        font-size: 13px;
    }


    .faq-list summary {

        padding:
            13px 39px 13px 13px;

        font-size: 14px;
    }


    .faq-list details p {

        padding:
            0 13px 14px;

        font-size: 13px;
    }

}


/* =========================================================
   ACCESSIBILITY / PERFORMANCE
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {

        transition: none !important;

        animation: none !important;
    }

}


/* Prevent accidental horizontal overflow */

.site-header,
main,
.site-footer {

    max-width: 100%;

}


/* Better image rendering */

.hero-logo,
.brand img,
.footer-brand img {

    image-rendering: auto;
}


/* Focus states */

a:focus-visible,
button:focus-visible,
summary:focus-visible {

    outline:
        3px solid rgba(242, 122, 0, 0.45);

    outline-offset:
        3px;
}