/* ============================================
   X-Telega Landing — Crystal Theme
   Mobile-first, light/ice-blue
   ============================================ */

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

:root {
    --bg-white: #ffffff;
    --bg-light: #f0f8ff;
    --bg-ice: #e8f4fd;
    --primary: #0088cc;
    --primary-dark: #006da3;
    --secondary: #00b4d8;
    --text: #1a1a2e;
    --text-muted: #4a5568;
    --text-light: #718096;
    --card-shadow: 0 4px 24px rgba(0, 136, 204, 0.08);
    --card-shadow-hover: 0 8px 40px rgba(0, 136, 204, 0.14);
    --radius: 14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-heading: "Fustat", "Inter", system-ui, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul,
ol {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ───── Utility ───── */
.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 540px;
    line-height: 1.65;
}

.text-center {
    text-align: center;
}

.text-center .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ───── Buttons ───── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-ghost:hover {
    background: var(--bg-ice);
    transform: translateY(-2px);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 4px 16px rgba(0, 136, 204, 0.12);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 136, 204, 0.2);
}

.btn-link {
    background: none;
    color: var(--primary);
    padding: 14px 8px;
    font-weight: 600;
}

.btn-link:hover {
    opacity: 0.8;
}

/* ───── Header ───── */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all var(--transition);
    border-bottom: 1px solid transparent;
}

header.header--sticky {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid var(--bg-ice);
    box-shadow: 0 2px 20px rgba(0, 136, 204, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    color: var(--text);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    font-weight: 800;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 32px;
}

.nav-desktop a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition);
    position: relative;
}

.nav-desktop a::after {
    content: "";
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
    transition: width var(--transition);
}

.nav-desktop a:hover {
    color: var(--primary);
}

.nav-desktop a:hover::after {
    width: 100%;
}

.header-cta {
    display: none;
}

.burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: background var(--transition);
}

.burger:hover {
    background: var(--bg-ice);
}

.burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all var(--transition);
}

/* Drawer */
.drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1001;
}

.drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background-color: white;
    /*max-width: 85vw;*/
    /*background: var(--bg-white);*/
    z-index: 1002;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-ice);
}

.drawer-close {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--bg-ice);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--text-muted);
    transition: all var(--transition);
}

.drawer-close:hover {
    background: var(--primary);
    color: #fff;
}

.drawer a {
    display: block;
    padding: 14px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.drawer a:hover {
    background: var(--bg-ice);
    color: var(--primary);
}

.drawer .btn {
    margin-top: 12px;
    width: 100%;
}

[hidden] {
    display: none !important;
}

/* ───── Hero ───── */
.hero {
    padding: 100px 0 60px;
    /*background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        var(--bg-white) 100%
    );*/
    overflow: hidden;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.hero-content {
    text-align: center;
    max-width: 560px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-white);
    border: 1px solid var(--bg-ice);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--card-shadow);
}

.hero-rating .stars {
    color: #f5a623;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.hero-image {
    width: 100%;
    /*max-width: 280px;*/
}

.hero-image img {
    width: 100%;
    height: auto;
    /*filter: drop-shadow(0 20px 40px rgba(0, 136, 204, 0.12));*/
}

/* ───── Statement ───── */
.statement {
    padding: 60px 0;
    background: var(--bg-white);
}

.statement-inner {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.statement-text h2 {
    font-size: 26px;
    margin-bottom: 14px;
}

.statement-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

.statement-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--card-shadow);
}

.statement-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-ice);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.chip:hover {
    border-color: var(--primary);
    background: var(--bg-white);
}

/* ───── Features Rail ───── */
.features {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        var(--bg-white) 100%
    );
}

.features-header {
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.feature-card {
    position: relative;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 136, 204, 0.2);
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 10px;
    margin-bottom: 14px;
}

.feature-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.features-image {
    text-align: center;
}

.features-image img {
    max-width: 320px;
    margin: 0 auto;
    filter: drop-shadow(0 12px 30px rgba(0, 136, 204, 0.08));
}

/* ───── Workflow ───── */
.workflow {
    padding: 60px 0;
    background: var(--bg-light);
}

.workflow-header {
    margin-bottom: 40px;
}

.workflow-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    counter-reset: wstep;
}

.workflow-step {
    counter-increment: wstep;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 28px 24px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    transition:
        transform var(--transition),
        box-shadow var(--transition);
    position: relative;
    overflow: hidden;
}

.workflow-step::before {
    content: counter(wstep, decimal-leading-zero);
    position: absolute;
    top: 16px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
}

.workflow-step:hover {
    transform: translateY(-3px);
    box-shadow: var(--card-shadow-hover);
}

.step-num {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    border-radius: 10px;
}

.workflow-step h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--text);
}

.workflow-step p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* ───── Matrix ───── */
.matrix {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        var(--bg-white) 100%
    );
}

.matrix-header {
    margin-bottom: 40px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.matrix-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

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

.matrix-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-ice);
    border-radius: 14px;
    margin-bottom: 16px;
    color: var(--primary);
}

.matrix-icon svg {
    display: block;
}

.matrix-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.matrix-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ───── Comparison ───── */
.comparison {
    padding: 60px 0;
    background: var(--bg-white);
}

.comparison-header {
    margin-bottom: 40px;
}

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-row {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius);
    padding: 20px;
    transition: all var(--transition);
}

.comparison-row:hover {
    box-shadow: var(--card-shadow-hover);
}

.comparison-row h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--bg-ice);
}

.comparison-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.comp-col {
    font-size: 13px;
    line-height: 1.6;
}

.comp-col .label {
    display: block;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
    color: var(--text-light);
}

.comp-col.telegram {
    color: var(--text-muted);
}

.comp-col.xtelega {
    color: var(--primary);
    font-weight: 600;
}

/* ───── Trust ───── */
.trust {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        var(--bg-white) 100%
    );
}

.trust-header {
    margin-bottom: 40px;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius);
    padding: 24px;
    transition: all var(--transition);
}

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

.trust-card-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-ice);
    border-radius: 14px;
    margin-bottom: 16px;
    color: var(--primary);
}

.trust-card-icon svg {
    display: block;
}

.trust-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.trust-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.trust-image {
    text-align: center;
}

.trust-image img {
    max-width: 240px;
    margin: 0 auto;
    filter: drop-shadow(0 12px 30px rgba(0, 136, 204, 0.08));
}

/* ───── Install ───── */
.install {
    padding: 60px 0;
    background: var(--bg-white);
}

.install-header {
    margin-bottom: 32px;
}

.install-card {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    margin-bottom: 32px;
    box-shadow: 0 8px 32px rgba(0, 136, 204, 0.25);
}

.install-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.install-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-bottom: 20px;
}

.install-card .btn-white {
    font-size: 16px;
    padding: 16px 36px;
}

.install-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.install-step {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius);
}

.install-step-num {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-ice);
    color: var(--primary);
    font-weight: 800;
    font-size: 14px;
    border-radius: 10px;
}

.install-step h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
}

.install-step p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ───── FAQ ───── */
.faq {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        var(--bg-light) 0%,
        var(--bg-white) 100%
    );
}

.faq-header {
    margin-bottom: 32px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--bg-ice);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all var(--transition);
}

.faq-item:hover {
    box-shadow: var(--card-shadow);
}

.faq-item[open] {
    box-shadow: var(--card-shadow-hover);
    border-color: rgba(0, 136, 204, 0.2);
}

.faq-item summary {
    padding: 18px 24px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    transition: color var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-ice);
    color: var(--primary);
    border-radius: 50%;
    font-size: 18px;
    font-weight: 400;
    transition: all var(--transition);
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item summary:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 24px 18px;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ───── CTA ───── */
.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: "";
    position: absolute;
    top: -60%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.06) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 12px;
}

.cta p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.cta .btn-link {
    color: rgba(255, 255, 255, 0.85);
}

.cta .btn-link:hover {
    color: #fff;
    opacity: 1;
}

/* ───── Footer ───── */
footer {
    padding: 40px 0 24px;
    background: var(--bg-light);
    border-top: 1px solid var(--bg-ice);
}

.footer-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.footer-info {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-info strong {
    color: var(--text);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-links a {
    font-size: 13px;
    color: var(--primary);
    font-weight: 500;
    transition: opacity var(--transition);
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--bg-ice);
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

/* ============================================
   Tablet (768px+)
   ============================================ */
@media (min-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    /* Header */
    .nav-desktop {
        display: flex;
    }

    .header-cta {
        display: block;
    }

    .burger {
        display: none;
    }

    .header-inner {
        height: 72px;
    }

    /* Hero */
    .hero {
        padding: 120px 0 80px;
    }

    .hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-content {
        text-align: left;
        flex: 1;
        max-width: 500px;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-image {
        flex: 0 0 280px;
    }

    /* Statement */
    .statement {
        padding: 80px 0;
    }

    .statement-inner {
        flex-direction: row;
        align-items: flex-start;
        gap: 40px;
    }

    .statement-text {
        flex: 1;
    }

    .statement-card {
        flex: 1;
    }

    /* Features */
    .features {
        padding: 80px 0;
    }

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

    /* Workflow */
    .workflow {
        padding: 80px 0;
    }

    .workflow-steps {
        grid-template-columns: 1fr 1fr;
    }

    /* Matrix */
    .matrix {
        padding: 80px 0;
    }

    .matrix-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Comparison */
    .comparison {
        padding: 80px 0;
    }

    .comparison-table {
        gap: 16px;
    }

    /* Trust */
    .trust {
        padding: 80px 0;
    }

    .trust-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .trust-content {
        display: flex;
        align-items: flex-start;
        gap: 40px;
    }

    .trust-grid-wrap {
        flex: 1;
    }

    .trust-image {
        flex: 0 0 240px;
    }

    /* Install */
    .install {
        padding: 80px 0;
    }

    .install-card {
        padding: 40px;
    }

    .install-steps {
        grid-template-columns: 1fr 1fr;
    }

    /* FAQ */
    .faq {
        padding: 80px 0;
    }

    /* CTA */
    .cta {
        padding: 80px 0;
    }

    .cta h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    /* Footer */
    footer {
        padding: 48px 0 24px;
    }

    .footer-inner {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-brand {
        flex: 1;
        min-width: 200px;
    }

    .footer-info {
        flex: 1;
        min-width: 200px;
    }
}

/* ============================================
   Desktop (1024px+)
   ============================================ */
@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .section-title {
        font-size: 42px;
    }

    /* Hero */
    .hero {
        padding: 140px 0 100px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-image {
        flex: 0 0 550px;
    }

    /* Statement */
    .statement {
        padding: 100px 0;
    }

    .statement-text h2 {
        font-size: 36px;
    }

    /* Features */
    .features {
        padding: 100px 0;
    }

    .features-layout {
        display: flex;
        align-items: center;
        gap: 48px;
    }

    .features-grid {
        flex: 1;
        margin-bottom: 0;
    }

    .features-image {
        flex: 0 0 320px;
    }

    .features-image img {
        max-width: 100%;
    }

    /* Workflow */
    .workflow {
        padding: 100px 0;
    }

    .workflow-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Matrix */
    .matrix {
        padding: 100px 0;
    }

    .matrix-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Comparison */
    .comparison {
        padding: 100px 0;
    }

    .comparison-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    /* Trust */
    .trust {
        padding: 100px 0;
    }

    /* Install */
    .install {
        padding: 100px 0;
    }

    .install-steps {
        grid-template-columns: repeat(4, 1fr);
    }

    /* FAQ */
    .faq {
        padding: 100px 0;
    }

    /* CTA */
    .cta {
        padding: 100px 0;
    }

    .cta h2 {
        font-size: 42px;
    }
}

/* ───── Animations ───── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.6s ease both;
}

.hero-image {
    animation: fadeInUp 0.6s 0.2s ease both;
}

/* Subtle float for hero image */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.hero-image img {
    animation: float 4s ease-in-out infinite;
}
