/* ===========================
   CSS Variables
=========================== */
:root {
    --dark: #0c0d1b;
    --blue: #4e7ef5;
    --blue-hover: #3a6ae0;
    --cream: #f9f8ef;
    --olive: #2c2c1c;
    --white: #ffffff;
    --footer-bottom: #1a1a11;
    --text-dark: #1a1a1a;
    --text-muted: #555;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --nav-height: 80px;
    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-dark);
    line-height: 1.6;
}

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

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

ul {
    list-style: none;
}

/* ===========================
   Buttons
=========================== */
.btn-trial {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn-trial:hover {
    background: var(--blue-hover);
}

.btn-more {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    padding: 0.85rem 1.75rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1.5rem;
}

.btn-more:hover {
    background: var(--blue-hover);
}

.btn-why {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    padding: 0.9rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 1.5rem;
}

.btn-why:hover {
    background: var(--blue-hover);
}

/* ===========================
   Navbar
=========================== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--dark);
    display: flex;
    align-items: center;
    height: var(--nav-height);
    padding: 0 2.5rem;
    gap: 2rem;
}

.nav-logo img {
    height: 52px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2rem;
    margin-left: auto;
}

.nav-links li a {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--white);
    border-bottom: 2px solid var(--blue);
    padding-bottom: 2px;
}

.nav-trial {
    margin-left: 1.5rem;
    font-size: 0.8rem;
    padding: 0.65rem 1.25rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: auto;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===========================
   Hero Section
=========================== */
.hero {
    position: relative;
    background-color: var(--dark);
    background-image: url('images/heroearth.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: calc(100vh - var(--nav-height));
    padding: 3rem 0 5rem;
    overflow: hidden;
}

.hero-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.hero-device {
    max-width: 380px;
    margin-bottom: 2.5rem;
}

.hero-device img {
    width: 100%;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}

.hero-text h1 {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

.hero-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.05rem;
    margin-bottom: 1.75rem;
}

.hero-examples {
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.9;
}

.gdpr-badge {
    position: absolute;
    bottom: 2.5rem;
    right: 2.5rem;
    width: 72px;
}

.gdpr-badge img {
    width: 100%;
    height: auto;
}

/* ===========================
   Value Proposition Section
=========================== */
.value-prop {
    background: var(--cream);
    padding: 5rem 0;
}

.value-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.value-lead {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.value-sub {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.value-heading {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.value-list {
    list-style: disc;
    padding-left: 1.25rem;
}

.value-list li {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    line-height: 1.6;
    color: var(--text-dark);
}

.value-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 4px;
    max-height: 620px;
}

/* ===========================
   About Us Page
=========================== */
.about-hero {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 480px;
    overflow: hidden;
}

.about-hero-text {
    padding: 4rem 3rem 4rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: var(--max-width);
}

.about-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.about-heading {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
}

.about-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-bottom: 4rem;
}

.about-col p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-col a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.about-col a:hover {
    color: var(--blue);
}

.about-hero-image {
    overflow: hidden;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
    }

    .about-hero-image {
        height: 220px;
        order: -1;
    }

    .about-body {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   Legal Pages (Privacy, Terms)
=========================== */
.legal-main {
    background: var(--cream);
    min-height: calc(100vh - var(--nav-height) - 260px);
    padding: 3rem 0 5rem;
}

.legal-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2.5rem 0 6rem;
}

.legal-intro {
    font-size: 1rem;
    color: #3a3020;
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h2 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2a2410;
    margin-bottom: 0.75rem;
}

.legal-section p {
    font-size: 0.95rem;
    color: #3a3020;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section ul li {
    font-size: 0.95rem;
    color: #3a3020;
    line-height: 1.75;
    margin-bottom: 0.25rem;
}

.legal-section a {
    color: #6b8dd6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===========================
   FAQ Page
=========================== */
.faq-main {
    background: var(--cream);
    min-height: calc(100vh - var(--nav-height) - 260px);
    padding: 3rem 0 5rem;
}

.faq-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.faq-list {
    margin-top: 1rem;
}

.faq-item {
    border-bottom: 1px solid #d4cdb8;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    text-align: left;
    gap: 2rem;
    font-family: var(--font);
    font-size: 1rem;
    color: #2a2410;
}

.faq-question:hover {
    color: var(--text-dark);
}

.faq-icon {
    font-size: 1rem;
    color: #8a7f60;
    flex-shrink: 0;
    transition: transform 0.25s;
    transform: rotate(180deg);
}

.faq-item.open .faq-icon {
    transform: rotate(0deg);
}

.faq-answer {
    display: none;
    padding: 0 0 1.5rem;
}

.faq-item.open .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.95rem;
    color: #3a3020;
    line-height: 1.7;
    margin-bottom: 0.75rem;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer a {
    color: #6b8dd6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===========================
   Apply / Signup Page
=========================== */
.apply-main {
    background: var(--cream);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-height) - 260px);
    overflow: hidden;
}

.apply-inner {
    padding: 3.5rem 2.5rem 5rem;
}

.apply-label {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.apply-heading {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.apply-intro {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.apply-intro p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.65;
}

.apply-intro a {
    color: var(--text-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.apply-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.apply-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.apply-form-group label {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.apply-form-group input,
.apply-form-group textarea {
    background: var(--white);
    border: 1.5px solid #ccc;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
    width: 100%;
}

.apply-form-group input::placeholder,
.apply-form-group textarea::placeholder {
    color: #aaa;
}

.apply-form-group input:focus,
.apply-form-group textarea:focus {
    border-color: #888;
}

.apply-input-narrow {
    max-width: 60%;
}

.apply-upload-desc {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.btn-upload {
    display: inline-block;
    background: #6b6635;
    color: var(--white);
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    width: fit-content;
}

.btn-upload:hover {
    background: #5a5528;
}

.btn-apply-submit {
    display: inline-block;
    background: var(--blue);
    color: var(--white);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    padding: 1rem 1.5rem;
    max-width: 60%;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.btn-apply-submit:hover {
    background: var(--blue-hover);
}

.apply-disclaimer {
    font-size: 0.95rem;
    color: var(--text-dark);
}

.apply-image {
    overflow: hidden;
}

.apply-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .apply-main {
        grid-template-columns: 1fr;
    }

    .apply-image {
        height: 220px;
    }

    .apply-input-narrow,
    .btn-apply-submit {
        max-width: 100%;
    }
}

/* ===========================
   Contact Page
=========================== */
.contact-main {
    background: #c8c1aa;
    min-height: calc(100vh - var(--nav-height) - 260px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
}

.contact-inner {
    padding: 3.5rem 2.5rem 5rem;
}

.contact-image {
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {
    .contact-main {
        grid-template-columns: 1fr;
    }

    .contact-image {
        height: 220px;
    }
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2a2516;
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    color: #3a3320;
}

.form-group input,
.form-group textarea {
    background: var(--white);
    border: 1.5px solid #8a8270;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-family: var(--font);
    font-size: 1rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3a3320;
}

.form-submit {
    display: flex;
    justify-content: flex-end;
}

.btn-submit {
    background: #2a2516;
    color: rgba(255, 255, 255, 0.75);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 400;
    border: none;
    border-radius: 50px;
    padding: 1rem 0;
    width: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #3d3520;
}

.form-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.form-error-global {
    color: #c62828;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.field-error {
    color: #c62828;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* ===========================
   Inner Pages (shared)
=========================== */
.page-main {
    background: var(--white);
    min-height: calc(100vh - var(--nav-height) - 260px);
    padding: 3rem 0 5rem;
}

.page-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

/* ===========================
   Pricing Cards
=========================== */
.pricing-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

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

.pricing-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border: 1.5px solid #e0ddd5;
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem;
    text-decoration: none;
    color: var(--text-dark);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.pricing-card--featured {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
    padding-top: 3rem;
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--blue);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-card--featured .plan-name {
    color: rgba(255,255,255,0.6);
}

.plan-price-wrap {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-dark);
}

.pricing-card--featured .plan-price {
    color: var(--white);
}

.plan-per {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-card--featured .plan-per {
    color: rgba(255,255,255,0.5);
}

.plan-features {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2.5rem;
    flex: 1;
}

.plan-features li {
    font-size: 0.92rem;
    color: var(--text-dark);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.4;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue);
    font-weight: 700;
}

.pricing-card--featured .plan-features li {
    color: rgba(255,255,255,0.85);
}

.pricing-card--featured .plan-features li::before {
    color: #7fa8f8;
}

.plan-cta {
    display: block;
    text-align: center;
    background: var(--blue);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.9rem 1.5rem;
    border-radius: 10px;
    transition: background 0.2s;
}

.pricing-card:hover .plan-cta {
    background: var(--blue-hover);
}

.pricing-card--featured .plan-cta {
    background: var(--white);
    color: var(--dark);
}

.pricing-card--featured:hover .plan-cta {
    background: #e8e8e8;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
    }
}

/* ===========================
   Features Section
=========================== */
.features {
    background: var(--white);
    padding: 5rem 0;
}

.features-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.features-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.features-center {
    width: 340px;
}

.features-center img {
    width: 100%;
    filter: drop-shadow(0 4px 16px rgba(0,0,0,0.12));
}

.features-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.feature-block h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-align: center;
}

.feature-block ul {
    list-style: disc;
    padding-left: 1.2rem;
}

.feature-block ul li {
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
    color: var(--text-dark);
}

/* ===========================
   Why Section
=========================== */
.why {
    background: var(--olive);
    padding: 4rem 0 5rem;
}

.why-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2.5rem;
}

.why h2 {
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--white);
    margin-bottom: 3rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.why-col p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.why-col a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.why-col a:hover {
    color: var(--white);
}

/* ===========================
   Footer
=========================== */
.footer {
    background: var(--white);
}

.footer-main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 3rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.75rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-nav a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--blue);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 1rem;
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.footer-bottom {
    background: var(--footer-bottom);
    padding: 1rem 0;
}

.footer-bottom-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--white);
}

.footer-bottom-inner > p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   404 Page
=========================== */
.not-found {
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: var(--dark);
    text-align: center;
    padding: 2rem;
}

.not-found h1 {
    font-size: 8rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    opacity: 0.15;
}

.not-found p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    margin-top: -3rem;
}

/* ===========================
   Responsive
=========================== */
@media (max-width: 900px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: var(--dark);
        padding: 1.5rem 2.5rem;
        gap: 1rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-links li a {
        font-size: 1rem;
    }

    .nav-trial {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .value-inner {
        grid-template-columns: 1fr;
    }

    .value-image {
        order: -1;
    }

    .value-image img {
        max-height: 380px;
    }

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

    .features-center {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-right {
        align-items: flex-start;
    }

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

@media (max-width: 600px) {
    .hero {
        padding: 2rem 0 4rem;
    }

    .hero-device {
        max-width: 260px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .gdpr-badge {
        bottom: 1rem;
        right: 1rem;
        width: 56px;
    }

    .features-header h2 {
        font-size: 1.8rem;
    }

    .value-inner {
        grid-template-columns: 1fr;
    }

    .value-image {
        order: -1;
    }

    .page-title {
        font-size: 2rem;
    }

    .navbar {
        padding: 0 1.25rem;
    }

    .hero-inner {
        padding: 0 1.25rem;
    }
}
