@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
    --background: #050816;
    --surface: #0c1328;
    --primary: #5b8cff;
    --secondary: #20d5c2;
    --text: #f7f9ff;
    --muted: #aab4d0;
    --border: rgba(255, 255, 255, 0.1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Navigation */

.header {
    position: fixed;
    top: 0;
    z-index: 1000;
    width: 100%;
    border-bottom: 1px solid var(--border);
    background: rgba(5, 8, 22, 0.82);
    backdrop-filter: blur(18px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1180px, calc(100% - 40px));
    height: 76px;
    margin: auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-image {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(91, 140, 255, 0.35);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-links a:hover {
    color: var(--text);
}

.nav-contact {
    padding: 10px 18px;
    border: 1px solid rgba(91, 140, 255, 0.5);
    border-radius: 10px;
}

.menu-button {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-button span {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background: white;
}

/* Hero */

.hero {
    position: relative;
    display: grid;
    min-height: 100vh;
    padding: 130px 20px 70px;
    place-items: center;
    overflow: hidden;
}

.hero-background,
.grid-overlay {
    position: absolute;
    inset: 0;
}

.grid-overlay {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.25;
}

.glow-one {
    top: 5%;
    left: -160px;
    background: var(--primary);
}

.glow-two {
    right: -170px;
    bottom: 0;
    background: var(--secondary);
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(950px, 100%);
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    padding: 8px 15px;
    border: 1px solid rgba(32, 213, 194, 0.3);
    border-radius: 999px;
    background: rgba(32, 213, 194, 0.08);
    color: #7af4e6;
    font-size: 13px;
    font-weight: 600;
}

.hero-label {
    margin-top: 28px;
    color: #86a9ff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

.hero h1 {
    margin: 20px auto 24px;
    font-size: clamp(42px, 7vw, 78px);
    line-height: 1.07;
    letter-spacing: -3px;
}

.hero h1 span {
    display: block;
    background: linear-gradient(90deg, #78a3ff, #58ead9);
    background-clip: text;
    color: transparent;
}

.hero-description {
    width: min(700px, 100%);
    margin: auto;
    color: var(--muted);
    font-size: clamp(17px, 2vw, 20px);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    padding: 0 26px;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: linear-gradient(135deg, var(--primary), #735bff);
    box-shadow: 0 14px 35px rgba(91, 140, 255, 0.3);
}

.button-secondary {
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(12, 19, 40, 0.62);
    backdrop-filter: blur(12px);
}

.highlight {
    padding: 22px;
}

.highlight+.highlight {
    border-left: 1px solid var(--border);
}

.highlight strong,
.highlight span {
    display: block;
}

.highlight strong {
    margin-bottom: 5px;
}

.highlight span {
    color: var(--muted);
    font-size: 13px;
}

/* Products */

.products-section {
    position: relative;
    padding: 120px 20px;
    background:
        radial-gradient(circle at 50% 0%,
            rgba(91, 140, 255, 0.12),
            transparent 38%),
        var(--surface);
}

.section-container {
    width: min(1180px, 100%);
    margin: auto;
}

.section-heading {
    width: min(720px, 100%);
    margin: 0 auto 58px;
    text-align: center;
}

.section-label,
.product-category {
    color: #86a9ff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
}

.section-heading h2 {
    margin: 12px 0 18px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1.15;
    letter-spacing: -2px;
}

.section-heading>p:last-child {
    color: var(--muted);
    font-size: 17px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-card {
    position: relative;
    display: flex;
    min-height: 570px;
    padding: 28px;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 24px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.055),
            rgba(255, 255, 255, 0.018));
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(91, 140, 255, 0.45);
    box-shadow: 0 28px 65px rgba(0, 0, 0, 0.3);
}

.featured-product {
    border-color: rgba(32, 213, 194, 0.28);
}

.product-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 35px;
}

.product-icon {
    display: grid;
    width: 66px;
    height: 66px;
    place-items: center;
    border-radius: 19px;
    font-size: 30px;
}

.receipt-icon {
    background: linear-gradient(135deg,
            rgba(32, 213, 194, 0.25),
            rgba(91, 140, 255, 0.18));
}

.journal-icon {
    background: linear-gradient(135deg,
            rgba(130, 105, 255, 0.3),
            rgba(91, 140, 255, 0.16));
}

.health-icon {
    background: linear-gradient(135deg,
            rgba(255, 91, 132, 0.28),
            rgba(255, 160, 120, 0.15));
}

.product-status {
    padding: 7px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
}

.available {
    background: rgba(32, 213, 194, 0.12);
    color: #72ecde;
}

.coming-soon {
    background: rgba(134, 169, 255, 0.12);
    color: #a9c1ff;
}

.product-content {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.product-card h3 {
    margin: 10px 0 16px;
    font-size: 27px;
    line-height: 1.2;
}

.product-description {
    min-height: 105px;
    color: var(--muted);
    font-size: 15px;
}

.product-features {
    display: grid;
    gap: 12px;
    margin: 24px 0 30px;
    list-style: none;
}

.product-features li {
    position: relative;
    padding-left: 27px;
    color: #dce4fa;
    font-size: 14px;
}

.product-features li::before {
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: 800;
    content: "✓";
}

.product-button {
    display: flex;
    min-height: 50px;
    margin-top: auto;
    padding: 0 18px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(91, 140, 255, 0.4);
    border-radius: 12px;
    background: rgba(91, 140, 255, 0.1);
    color: #dfe8ff;
    font-size: 14px;
    font-weight: 700;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}

a.product-button:hover {
    border-color: var(--primary);
    background: rgba(91, 140, 255, 0.2);
}

.disabled-button {
    justify-content: center;
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.025);
    color: #7f89a5;
    cursor: default;
}

@media (max-width: 980px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        min-height: auto;
    }

    .product-description {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .products-section {
        padding: 90px 20px;
    }

    .product-card {
        padding: 23px;
    }

    .product-card h3 {
        font-size: 24px;
    }
}


/* Services */

.services-section {
    position: relative;
    padding: 120px 20px;
    background:
        radial-gradient(circle at 10% 50%,
            rgba(32, 213, 194, 0.08),
            transparent 32%),
        var(--background);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.service-card {
    position: relative;
    padding: 32px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 22px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.05),
            rgba(255, 255, 255, 0.015));
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(91, 140, 255, 0.42);
    background:
        linear-gradient(145deg,
            rgba(91, 140, 255, 0.09),
            rgba(255, 255, 255, 0.02));
}

.service-icon {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 24px;
    place-items: center;
    border-radius: 18px;
    font-size: 28px;
}

.mobile-service {
    background: linear-gradient(135deg,
            rgba(91, 140, 255, 0.3),
            rgba(115, 91, 255, 0.16));
}

.ai-service {
    background: linear-gradient(135deg,
            rgba(32, 213, 194, 0.28),
            rgba(91, 140, 255, 0.14));
}

.cloud-service {
    background: linear-gradient(135deg,
            rgba(96, 165, 250, 0.28),
            rgba(32, 213, 194, 0.12));
}

.web-service {
    background: linear-gradient(135deg,
            rgba(168, 85, 247, 0.27),
            rgba(91, 140, 255, 0.14));
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
}

.service-card>p {
    min-height: 76px;
    color: var(--muted);
    font-size: 15px;
}

.service-list {
    display: grid;
    gap: 10px;
    margin-top: 22px;
    list-style: none;
}

.service-list li {
    position: relative;
    padding-left: 24px;
    color: #dce4fa;
    font-size: 14px;
}

.service-list li::before {
    position: absolute;
    left: 0;
    color: var(--secondary);
    content: "•";
}

.services-cta {
    display: flex;
    margin-top: 28px;
    padding: 30px 34px;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    border: 1px solid rgba(91, 140, 255, 0.3);
    border-radius: 22px;
    background:
        linear-gradient(120deg,
            rgba(91, 140, 255, 0.14),
            rgba(32, 213, 194, 0.07));
}

.services-cta h3 {
    margin-top: 7px;
    font-size: clamp(21px, 3vw, 28px);
}

.services-cta .button {
    flex-shrink: 0;
}

@media (max-width: 800px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card>p {
        min-height: auto;
    }

    .services-cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 600px) {
    .services-section {
        padding: 90px 20px;
    }

    .service-card {
        padding: 25px;
    }

    .services-cta {
        padding: 25px;
    }

    .services-cta .button {
        width: 100%;
    }
}

/* Portfolio */

.portfolio-section {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 35%,
            rgba(115, 91, 255, 0.12),
            transparent 32%),
        var(--surface);
}

.portfolio-project {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 65px;
    align-items: center;
}

.portfolio-visual {
    position: relative;
}

.browser-window {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border: 1px solid rgba(134, 169, 255, 0.25);
    border-radius: 20px;
    background: #080d1d;
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.45),
        0 0 45px rgba(91, 140, 255, 0.08);
}

.browser-toolbar {
    display: flex;
    height: 48px;
    padding: 0 16px;
    align-items: center;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    background: #10172b;
}

.browser-dots {
    display: flex;
    gap: 7px;
}

.browser-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ff6b6b;
}

.browser-dots span:nth-child(2) {
    background: #ffd166;
}

.browser-dots span:nth-child(3) {
    background: #55d68b;
}

.browser-address {
    flex: 1;
    padding: 6px 14px;
    border: 1px solid var(--border);
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.035);
    color: #7f8aa8;
    font-size: 10px;
    text-align: center;
}

.portal-preview {
    display: grid;
    grid-template-columns: 64px 1fr;
    min-height: 390px;
}

.portal-sidebar {
    display: flex;
    padding: 18px 12px;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    border-right: 1px solid var(--border);
    background: rgba(8, 13, 29, 0.9);
}

.portal-logo {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
}

.portal-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portal-sidebar span {
    width: 23px;
    height: 6px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.1);
}

.portal-content {
    padding: 24px;
    background:
        radial-gradient(circle at 50% 20%,
            rgba(91, 140, 255, 0.11),
            transparent 45%),
        #090f21;
}

.portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.portal-header small,
.portal-header strong {
    display: block;
}

.portal-header small {
    margin-bottom: 4px;
    color: #86a9ff;
    font-size: 7px;
    letter-spacing: 1.5px;
}

.portal-header strong {
    font-size: 13px;
}

.portal-avatar {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 50%;
    background: rgba(32, 213, 194, 0.18);
    color: #72ecde;
    font-size: 11px;
    font-weight: 700;
}

.portal-dashboard {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 32px;
}

.portal-main-card,
.portal-small-card {
    border: 1px solid var(--border);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.035);
}

.portal-main-card {
    grid-column: 1 / -1;
    padding: 28px 20px;
    text-align: center;
}

.portal-ai-icon {
    display: block;
    margin-bottom: 10px;
    color: #72ecde;
    font-size: 25px;
}

.portal-main-card strong,
.portal-main-card p,
.portal-small-card span,
.portal-small-card strong {
    display: block;
}

.portal-main-card strong {
    font-size: 13px;
}

.portal-main-card p {
    margin-top: 5px;
    color: #7f8aa8;
    font-size: 9px;
}

.portal-small-card {
    padding: 16px;
}

.portal-small-card span {
    color: #7f8aa8;
    font-size: 8px;
}

.portal-small-card strong {
    margin-top: 6px;
    color: #dfe8ff;
    font-size: 11px;
}

.portal-input {
    display: flex;
    margin-top: 18px;
    padding: 12px 15px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #6f7b99;
    font-size: 9px;
}

.portal-input span {
    color: #72ecde;
    font-size: 14px;
}

.portfolio-glow {
    position: absolute;
    right: -20px;
    bottom: -30px;
    width: 75%;
    height: 75%;
    border-radius: 50%;
    background: rgba(91, 140, 255, 0.18);
    filter: blur(80px);
}

.portfolio-details h3 {
    margin: 10px 0 20px;
    font-size: clamp(31px, 4vw, 44px);
    line-height: 1.15;
    letter-spacing: -1.5px;
}

.portfolio-description {
    color: var(--muted);
    font-size: 15px;
}

.portfolio-features {
    display: grid;
    gap: 18px;
    margin-top: 30px;
}

.portfolio-feature {
    display: grid;
    grid-template-columns: 27px 1fr;
    gap: 11px;
}

.portfolio-feature>span {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: rgba(32, 213, 194, 0.12);
    color: var(--secondary);
    font-size: 12px;
    font-weight: 800;
}

.portfolio-feature strong {
    font-size: 14px;
}

.portfolio-feature p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
}

.portfolio-technologies {
    display: flex;
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 8px;
}

.portfolio-technologies span {
    padding: 7px 11px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    color: #aab8d7;
    font-size: 11px;
    font-weight: 600;
}

@media (max-width: 980px) {
    .portfolio-project {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .portfolio-visual {
        width: min(700px, 100%);
        margin: auto;
    }
}

@media (max-width: 600px) {
    .portfolio-section {
        padding: 90px 20px;
    }

    .portal-preview {
        grid-template-columns: 45px 1fr;
        min-height: 330px;
    }

    .portal-sidebar {
        padding: 15px 8px;
    }

    .portal-sidebar span {
        width: 18px;
    }

    .portal-content {
        padding: 17px;
    }

    .portal-dashboard {
        grid-template-columns: 1fr;
    }

    .portal-main-card {
        grid-column: auto;
    }

    .portal-small-card:last-child {
        display: none;
    }
}

/* About */

.about-section {
    position: relative;
    padding: 120px 20px;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 85%,
            rgba(91, 140, 255, 0.1),
            transparent 32%),
        var(--background);
}

.about-layout {
    display: grid;
    grid-template-columns: 1fr 0.9fr;
    gap: 85px;
    align-items: center;
}

.about-content h2 {
    margin: 13px 0 25px;
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.1;
    letter-spacing: -2px;
}

.about-content h2 span {
    display: block;
    background: linear-gradient(90deg, #78a3ff, #58ead9);
    background-clip: text;
    color: transparent;
}

.about-content>p {
    margin-bottom: 17px;
    color: var(--muted);
    font-size: 15px;
}

.about-content .about-introduction {
    color: #dfe6f8;
    font-size: 17px;
    font-weight: 500;
}

.about-values {
    display: grid;
    gap: 14px;
    margin-top: 35px;
}

.about-value {
    display: grid;
    grid-template-columns: 45px 1fr;
    padding: 17px;
    gap: 14px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.025);
}

.about-value>span {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 11px;
    background: rgba(91, 140, 255, 0.12);
    color: #86a9ff;
    font-size: 11px;
    font-weight: 800;
}

.about-value strong {
    font-size: 14px;
}

.about-value p {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.about-visual {
    position: relative;
    padding: 35px;
}

.about-panel {
    position: relative;
    z-index: 2;
    padding: 45px;
    overflow: hidden;
    border: 1px solid rgba(91, 140, 255, 0.3);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0%,
            rgba(91, 140, 255, 0.2),
            transparent 42%),
        linear-gradient(145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018));
    box-shadow:
        0 35px 80px rgba(0, 0, 0, 0.35),
        0 0 60px rgba(91, 140, 255, 0.08);
}

.about-logo-large {
    width: 82px;
    height: 82px;
    margin-bottom: 30px;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(91, 140, 255, 0.3);
    overflow: hidden;
}

.about-logo-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-panel-label {
    color: #86a9ff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-panel h3 {
    margin: 8px 0 15px;
    font-size: 34px;
    letter-spacing: 1px;
}

.about-panel-description {
    color: var(--muted);
    font-size: 14px;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 11px;
    margin-top: 30px;
}

.capability-grid div {
    padding: 15px;
    border: 1px solid var(--border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
}

.capability-grid strong,
.capability-grid span {
    display: block;
}

.capability-grid strong {
    margin-bottom: 5px;
    color: #dfe8ff;
    font-size: 12px;
}

.capability-grid span {
    color: var(--muted);
    font-size: 10px;
}

.about-location {
    display: flex;
    margin-top: 25px;
    padding-top: 20px;
    align-items: center;
    gap: 9px;
    border-top: 1px solid var(--border);
    color: #aab8d7;
    font-size: 12px;
}

.about-location span {
    color: var(--secondary);
    font-size: 10px;
}

.about-orbit {
    position: absolute;
    border: 1px solid rgba(91, 140, 255, 0.14);
    border-radius: 50%;
}

.orbit-one {
    inset: 0;
}

.orbit-two {
    inset: 20px;
    border-color: rgba(32, 213, 194, 0.1);
}

@media (max-width: 980px) {
    .about-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .about-visual {
        width: min(620px, 100%);
        margin: auto;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 90px 20px;
    }

    .about-visual {
        padding: 12px;
    }

    .about-panel {
        padding: 28px 22px;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }

    .about-content h2 {
        letter-spacing: -1.5px;
    }
}


/* Contact */

.contact-section {
  position: relative;
  padding: 120px 20px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(32, 213, 194, 0.09),
      transparent 35%
    ),
    var(--surface);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 65px;
  align-items: center;
}

.contact-introduction h3 {
  margin: 10px 0 20px;
  font-size: clamp(32px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.contact-introduction > p:not(.product-category) {
  color: var(--muted);
  font-size: 15px;
}

.contact-points {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

.contact-point {
  display: grid;
  grid-template-columns: 54px 1fr;
  padding: 17px;
  align-items: center;
  gap: 15px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.025);
}

.contact-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 14px;
  font-size: 20px;
  font-weight: 700;
}

.email-icon {
  background: rgba(91, 140, 255, 0.16);
  color: #9bb8ff;
}

.whatsapp-icon {
  background: rgba(37, 211, 102, 0.13);
  color: #65e993;
}

.location-icon {
  background: rgba(32, 213, 194, 0.13);
  color: #72ecde;
}

.contact-point span,
.contact-point a,
.contact-point strong {
  display: block;
}

.contact-point span {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 11px;
}

.contact-point a,
.contact-point strong {
  color: #dfe8ff;
  font-size: 14px;
  font-weight: 600;
}

.contact-point a:hover {
  color: var(--secondary);
}

.contact-action-panel {
  padding: 45px;
  border: 1px solid rgba(91, 140, 255, 0.3);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 90% 0%,
      rgba(32, 213, 194, 0.14),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.065),
      rgba(255, 255, 255, 0.018)
    );
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.3);
}

.contact-panel-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 28px;
  border-radius: 21px;
  box-shadow: 0 16px 40px rgba(91, 140, 255, 0.25);
  overflow: hidden;
}

.contact-panel-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-action-panel h3 {
  margin: 10px 0 15px;
  font-size: clamp(27px, 4vw, 38px);
  line-height: 1.2;
  letter-spacing: -1px;
}

.contact-action-panel > p:not(.section-label):not(.contact-note) {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 15px;
}

.contact-whatsapp-button,
.contact-email-button {
  display: flex;
  width: 100%;
  min-height: 54px;
  padding: 0 20px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.contact-whatsapp-button {
  background: #25d366;
  color: #06130b;
}

.contact-whatsapp-button:hover {
  transform: translateY(-2px);
  background: #4ce47e;
}

.contact-email-button {
  margin-top: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.035);
  color: #dfe8ff;
}

.contact-email-button:hover {
  border-color: rgba(91, 140, 255, 0.5);
  background: rgba(91, 140, 255, 0.1);
}

.contact-note {
  margin-top: 18px;
  color: #78839f;
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

/* Footer */

.site-footer {
  padding: 70px 20px 25px;
  border-top: 1px solid var(--border);
  background: #050816;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, 0.7fr);
  gap: 50px;
  padding-bottom: 45px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
}

.footer-logo-image {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  object-fit: cover;
}

.footer-brand p {
  width: min(360px, 100%);
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.footer-navigation {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
}

.footer-navigation h3 {
  margin-bottom: 5px;
  color: #dfe8ff;
  font-size: 13px;
}

.footer-navigation a,
.footer-navigation span {
  color: var(--muted);
  font-size: 12px;
}

.footer-navigation a:hover {
  color: var(--secondary);
}

.footer-bottom {
  display: flex;
  padding-top: 23px;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--border);
  color: #6f7a96;
  font-size: 11px;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 90px 20px;
  }

  .contact-action-panel {
    padding: 30px 22px;
  }

  .contact-point {
    grid-template-columns: 48px 1fr;
    padding: 14px;
  }

  .contact-icon {
    width: 43px;
    height: 43px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}


/* Temporary sections */

.placeholder-section {
    min-height: 60vh;
    padding: 120px 20px;
    text-align: center;
}

.placeholder-section:nth-child(odd) {
    background: var(--surface);
}

.placeholder-section h2 {
    margin-bottom: 12px;
    font-size: clamp(30px, 5vw, 48px);
}

.placeholder-section p {
    color: var(--muted);
}

/* Mobile */

@media (max-width: 800px) {
    .menu-button {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 76px;
        left: 0;
        display: none;
        width: 100%;
        padding: 22px;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        border-bottom: 1px solid var(--border);
        background: rgba(5, 8, 22, 0.98);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        text-align: center;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
        margin-top: 50px;
    }

    .highlight+.highlight {
        border-top: 1px solid var(--border);
        border-left: 0;
    }
}

/* Legal and account-deletion pages */

.legal-page {
    min-height: 100vh;
    padding-top: 76px;
}

.legal-hero {
    position: relative;
    padding: 96px 20px 82px;
    overflow: hidden;
    border-bottom: 1px solid var(--border);
    background:
        radial-gradient(circle at 15% 10%, rgba(91, 140, 255, 0.2), transparent 36%),
        radial-gradient(circle at 85% 65%, rgba(32, 213, 194, 0.12), transparent 32%),
        var(--surface);
}

.legal-hero::after {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    pointer-events: none;
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, 100%);
    margin: auto;
    text-align: center;
}

.legal-hero h1 {
    margin: 12px 0 18px;
    font-size: clamp(42px, 7vw, 68px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.legal-hero-content>p:not(.section-label, .legal-meta) {
    width: min(720px, 100%);
    margin: auto;
    color: var(--muted);
    font-size: clamp(16px, 2vw, 19px);
}

.legal-meta {
    margin-top: 20px;
    color: #86a9ff;
    font-size: 13px;
    font-weight: 600;
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 310px) minmax(0, 1fr);
    gap: 34px;
    padding-top: 72px;
    padding-bottom: 110px;
    align-items: start;
}

.legal-summary {
    position: sticky;
    top: 104px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(91, 140, 255, 0.1), rgba(12, 19, 40, 0.95));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.legal-summary h2 {
    margin-bottom: 14px;
    font-size: 21px;
}

.legal-summary p,
.legal-summary li {
    color: var(--muted);
    font-size: 13px;
}

.legal-summary ul {
    display: grid;
    gap: 11px;
    padding-left: 19px;
}

.legal-button {
    width: 100%;
    margin-top: 24px;
    padding: 12px 18px;
    text-align: center;
}

.legal-small {
    margin-top: 14px;
    font-size: 11px !important;
}

.legal-content {
    display: grid;
    gap: 22px;
}

.legal-content section {
    padding: clamp(25px, 4vw, 40px);
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(12, 19, 40, 0.7);
}

.legal-content h2 {
    margin-bottom: 16px;
    color: #eef3ff;
    font-size: clamp(22px, 3vw, 28px);
    line-height: 1.25;
}

.legal-content h3 {
    margin: 26px 0 8px;
    color: #dce6ff;
    font-size: 16px;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    font-size: 14px;
}

.legal-content p+p {
    margin-top: 14px;
}

.legal-content ul,
.legal-content ol {
    display: grid;
    gap: 10px;
    padding-left: 22px;
}

.legal-content a {
    color: #7af4e6;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content code {
    padding: 2px 6px;
    border: 1px solid var(--border);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.05);
    color: #c9d8ff;
    font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
    font-size: 0.9em;
}

.deletion-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 17px;
    place-items: center;
    border: 1px solid rgba(32, 213, 194, 0.35);
    border-radius: 14px;
    background: rgba(32, 213, 194, 0.1);
    color: #7af4e6;
    font-size: 28px;
    line-height: 1;
}

.legal-steps {
    counter-reset: steps;
    padding: 0 !important;
    list-style: none;
}

.legal-steps li {
    position: relative;
    min-height: 38px;
    padding: 7px 0 7px 48px;
    counter-increment: steps;
}

.legal-steps li::before {
    position: absolute;
    top: 2px;
    left: 0;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 10px;
    background: rgba(91, 140, 255, 0.14);
    color: #9bb7ff;
    content: counter(steps);
    font-size: 13px;
    font-weight: 700;
}

@media (max-width: 900px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-summary {
        position: static;
    }
}

@media (max-width: 600px) {
    .legal-hero {
        padding: 70px 20px 60px;
    }

    .legal-hero h1 {
        letter-spacing: -1.5px;
    }

    .legal-layout {
        padding-top: 42px;
        padding-bottom: 80px;
    }

    .legal-summary,
    .legal-content section {
        border-radius: 15px;
    }
}
