/* =========================
   VAISHNAV & SONS
   Main Stylesheet
========================= */

:root {
    --background: #070914;
    --background-soft: #0d1020;
    --surface: rgba(255, 255, 255, 0.06);
    --surface-strong: rgba(255, 255, 255, 0.1);
    --border: rgba(255, 255, 255, 0.12);
    --text: #f5f7ff;
    --text-soft: #aeb4c8;
    --primary: #7c5cff;
    --primary-light: #a68bff;
    --secondary: #34d6ff;
    --success: #42e59d;
    --danger: #ff6b88;
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
    --radius-small: 14px;
    --radius-medium: 22px;
    --radius-large: 34px;
    --container: 1180px;
    --header-height: 82px;
}

/* =========================
   Reset
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(
            circle at 15% 10%,
            rgba(124, 92, 255, 0.18),
            transparent 32%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(52, 214, 255, 0.12),
            transparent 30%
        ),
        var(--background);
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

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

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

button,
input,
textarea {
    font: inherit;
}

button {
    border: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding: 110px 0;
}

/* =========================
   Background Decoration
========================= */

.background-glow {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
    opacity: 0.5;
}

.glow-one {
    top: 80px;
    left: -130px;
    width: 340px;
    height: 340px;
    background: rgba(124, 92, 255, 0.28);
}

.glow-two {
    right: -160px;
    top: 450px;
    width: 380px;
    height: 380px;
    background: rgba(52, 214, 255, 0.18);
}

/* =========================
   Header
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(7, 9, 20, 0.82);
    border-color: var(--border);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.brand-logo {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #5e42e8 55%,
            var(--secondary)
        );
    box-shadow: 0 10px 30px rgba(124, 92, 255, 0.3);
    font-size: 1.25rem;
    font-weight: 800;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.brand-text span {
    font-size: 1rem;
    font-weight: 750;
    letter-spacing: -0.02em;
}

.brand-text small {
    margin-top: 5px;
    color: var(--text-soft);
    font-size: 0.67rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-link {
    position: relative;
    color: var(--text-soft);
    font-size: 0.93rem;
    font-weight: 600;
    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    border-radius: 10px;
    background: linear-gradient(
        90deg,
        var(--primary),
        var(--secondary)
    );
    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-button {
    padding: 11px 18px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: var(--surface);
    color: var(--text);
    font-size: 0.9rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.nav-button:hover {
    transform: translateY(-2px);
    background: var(--surface-strong);
    border-color: rgba(166, 139, 255, 0.55);
}

.menu-button {
    width: 46px;
    height: 46px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: var(--surface);
}

.menu-button span {
    width: 21px;
    height: 2px;
    border-radius: 10px;
    background: var(--text);
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}

.menu-button.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-button.active span:nth-child(2) {
    opacity: 0;
}

.menu-button.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   Shared Elements
========================= */

.gradient-text {
    color: transparent;
    background:
        linear-gradient(
            100deg,
            var(--primary-light),
            #d2c4ff 45%,
            var(--secondary)
        );
    background-clip: text;
    -webkit-background-clip: text;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-label {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--primary-light);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.section-heading h2,
.contact-content h2 {
    font-size: clamp(2rem, 5vw, 3.6rem);
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 650px;
    margin: 20px auto 0;
    color: var(--text-soft);
    font-size: 1.05rem;
}

.primary-button,
.secondary-button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 0 22px;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 750;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.primary-button {
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            #5e44e8
        );
    box-shadow: 0 15px 40px rgba(124, 92, 255, 0.3);
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(124, 92, 255, 0.42);
}

.primary-button span {
    font-size: 1.2rem;
    transition: transform 0.25s ease;
}

.primary-button:hover span {
    transform: translateX(4px);
}

.secondary-button {
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--text);
}

.secondary-button:hover {
    transform: translateY(-3px);
    border-color: rgba(166, 139, 255, 0.5);
}

/* =========================
   Hero Section
========================= */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: calc(var(--header-height) + 80px);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 70px;
}

.eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 9px 14px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text-soft);
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.82rem;
    font-weight: 650;
}

.status-dot,
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 6px rgba(66, 229, 157, 0.12);
}

.hero-content h1 {
    max-width: 760px;
    font-size: clamp(3rem, 7vw, 5.8rem);
    line-height: 0.98;
    letter-spacing: -0.065em;
}

.hero-description {
    max-width: 650px;
    margin-top: 28px;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 46px;
}

.hero-trust div {
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.035);
}

.hero-trust strong {
    display: block;
    margin-bottom: 4px;
    font-size: 1rem;
}

.hero-trust span {
    color: var(--text-soft);
    font-size: 0.76rem;
}

.hero-visual {
    position: relative;
    min-height: 530px;
    display: grid;
    place-items: center;
}

.hero-visual::before {
    content: "";
    position: absolute;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(124, 92, 255, 0.24),
            transparent 68%
        );
    filter: blur(12px);
}

.visual-card {
    position: relative;
    z-index: 2;
    border: 1px solid var(--border);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.11),
            rgba(255, 255, 255, 0.035)
        );
    box-shadow: var(--shadow);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
}

.main-card {
    width: min(100%, 430px);
    min-height: 410px;
    padding: 30px;
    border-radius: var(--radius-large);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.main-card:hover {
    transform: rotate(0deg) translateY(-8px);
}

.card-top,
.product-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.card-label,
.product-category {
    display: block;
    color: var(--primary-light);
    font-size: 0.74rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.card-top h2 {
    margin-top: 5px;
    font-size: 2rem;
    letter-spacing: -0.04em;
}

.app-icon,
.product-icon {
    flex-shrink: 0;
    display: grid;
    place-items: center;
    color: white;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    box-shadow: 0 12px 35px rgba(124, 92, 255, 0.3);
    font-weight: 850;
}

.app-icon {
    width: 70px;
    height: 70px;
    border-radius: 22px;
    font-size: 2rem;
}

.main-card > p {
    margin-top: 30px;
    color: var(--text-soft);
    font-size: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.product-features span {
    padding: 9px 12px;
    border: 1px solid var(--border);
    border-radius: 999px;
    color: #dce0ef;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.77rem;
    font-weight: 650;
}

.coming-soon {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-top: 40px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.85rem;
    font-weight: 650;
}

.floating-card {
    position: absolute;
    z-index: 3;
    min-width: 190px;
    padding: 17px 19px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: rgba(15, 18, 35, 0.88);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    animation: floating 4s ease-in-out infinite;
}

.floating-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--text-soft);
    font-size: 0.73rem;
}

.floating-card strong {
    font-size: 0.86rem;
}

.floating-card-one {
    top: 55px;
    right: -10px;
}

.floating-card-two {
    bottom: 38px;
    left: -20px;
    animation-delay: 1.5s;
}

@keyframes floating {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* =========================
   About Section
========================= */

.about {
    background:
        linear-gradient(
            180deg,
            transparent,
            rgba(255, 255, 255, 0.018),
            transparent
        );
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.info-card {
    min-height: 275px;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--surface);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 139, 255, 0.42);
    background: var(--surface-strong);
}

.info-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin-bottom: 42px;
    border: 1px solid var(--border);
    border-radius: 16px;
    color: var(--primary-light);
    background: rgba(124, 92, 255, 0.1);
    font-size: 0.88rem;
    font-weight: 850;
}

.info-card h3 {
    margin-bottom: 13px;
    font-size: 1.3rem;
}

.info-card p {
    color: var(--text-soft);
    font-size: 0.94rem;
}

.founder-card {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    margin-top: 22px;
    padding: 30px;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(
            120deg,
            rgba(124, 92, 255, 0.11),
            rgba(52, 214, 255, 0.045)
        );
}

.founder-avatar {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border-radius: 28px;
    background:
        linear-gradient(
            135deg,
            var(--primary),
            var(--secondary)
        );
    box-shadow: 0 15px 40px rgba(124, 92, 255, 0.26);
    font-size: 2rem;
    font-weight: 850;
}

.founder-content h3 {
    margin-bottom: 9px;
    font-size: 1.65rem;
}

.founder-content p {
    max-width: 760px;
    color: var(--text-soft);
}

/* =========================
   Products
========================= */

.products-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.925fr 0.925fr;
    gap: 20px;
}

.product-card {
    min-height: 390px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.07),
            rgba(255, 255, 255, 0.025)
        );
    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(166, 139, 255, 0.45);
}

.featured-product {
    background:
        radial-gradient(
            circle at top right,
            rgba(124, 92, 255, 0.22),
            transparent 45%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.085),
            rgba(255, 255, 255, 0.025)
        );
}

.product-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 1.1rem;
}

.ai-icon {
    background: linear-gradient(135deg, #7c5cff, #e45cff);
}

.game-icon {
    background: linear-gradient(135deg, #236eff, #34d6ff);
}

.product-status {
    padding: 7px 10px;
    border: 1px solid rgba(66, 229, 157, 0.22);
    border-radius: 999px;
    color: var(--success);
    background: rgba(66, 229, 157, 0.08);
    font-size: 0.68rem;
    font-weight: 750;
}

.product-status.development {
    color: var(--primary-light);
    border-color: rgba(166, 139, 255, 0.22);
    background: rgba(124, 92, 255, 0.08);
}

.product-category {
    margin-top: 32px;
}

.product-card h3 {
    margin-top: 10px;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
}

.product-card > p {
    margin-top: 14px;
    color: var(--text-soft);
    font-size: 0.93rem;
}

.product-card ul {
    display: grid;
    gap: 9px;
    margin-top: 22px;
}

.product-card li {
    position: relative;
    padding-left: 18px;
    color: #d3d8e8;
    font-size: 0.85rem;
}

.product-card li::before {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary-light);
}

.text-link {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 28px;
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 750;
}

.text-link span {
    transition: transform 0.25s ease;
}

.text-link:hover span {
    transform: translateX(5px);
}

/* =========================
   Services
========================= */

.services {
    background: rgba(255, 255, 255, 0.015);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.service-card {
    position: relative;
    min-height: 270px;
    padding: 26px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius-medium);
    background: var(--surface);
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.service-card::after {
    content: "";
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(124, 92, 255, 0.11);
    filter: blur(6px);
    transition: transform 0.35s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    background: var(--surface-strong);
}

.service-card:hover::after {
    transform: scale(1.25);
}

.service-number {
    display: inline-block;
    margin-bottom: 70px;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 850;
}

.service-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.service-card p {
    position: relative;
    z-index: 1;
    color: var(--text-soft);
    font-size: 0.88rem;
}

/* =========================
   Contact
========================= */

.contact-box {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 70px;
    padding: 55px;
    border: 1px solid var(--border);
    border-radius: var(--radius-large);
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(124, 92, 255, 0.18),
            transparent 38%
        ),
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.025)
        );
    box-shadow: var(--shadow);
}

.contact-content p {
    max-width: 620px;
    margin-top: 20px;
    color: var(--text-soft);
}

.contact-details {
    display: grid;
    gap: 14px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 19px;
    border: 1px solid var(--border);
    border-radius: var(--radius-small);
    background: rgba(255, 255, 255, 0.045);
    transition:
        transform 0.25s ease,
        border-color 0.25s ease;
}

a.contact-item:hover {
    transform: translateX(5px);
    border-color: rgba(166, 139, 255, 0.42);
}

.contact-item span {
    color: var(--text-soft);
    font-size: 0.72rem;
    font-weight: 650;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-item strong {
    overflow-wrap: anywhere;
    font-size: 0.9rem;
}

/* =========================
   Footer
========================= */

.footer {
    padding: 70px 0 25px;
    border-top: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.16);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 0.6fr 0.6fr;
    gap: 60px;
}

.footer-description {
    max-width: 420px;
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links h4 {
    margin-bottom: 8px;
    font-size: 0.92rem;
}

.footer-links a {
    width: fit-content;
    color: var(--text-soft);
    font-size: 0.85rem;
    transition: color 0.25s ease;
}

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

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-soft);
    font-size: 0.78rem;
}

/* =========================
   Reveal Animation
========================= */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.75s ease,
        transform 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================
   Tablet
========================= */

@media (max-width: 1050px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-content {
        max-width: 820px;
    }

    .hero-visual {
        min-height: 500px;
    }

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

    .featured-product {
        grid-column: 1 / -1;
        min-height: 350px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-box {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* =========================
   Mobile Navigation
========================= */

@media (max-width: 850px) {
    :root {
        --header-height: 72px;
    }

    .menu-button {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 20px;
        right: 20px;
        max-height: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        border: 1px solid transparent;
        border-radius: 22px;
        background: rgba(10, 12, 25, 0.97);
        box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
        backdrop-filter: blur(22px);
        -webkit-backdrop-filter: blur(22px);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-12px);
        transition:
            max-height 0.4s ease,
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease,
            padding 0.3s ease,
            border-color 0.3s ease;
    }

    .nav-menu.open {
        max-height: 600px;
        padding: 16px;
        border-color: var(--border);
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-link {
        padding: 14px 10px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .nav-link::after {
        display: none;
    }

    .nav-button {
        margin-top: 13px;
        text-align: center;
    }

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

    .info-card {
        min-height: auto;
    }

    .info-icon {
        margin-bottom: 25px;
    }

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

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

/* =========================
   Small Mobile
========================= */

@media (max-width: 650px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding: 80px 0;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .brand-text small {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: 130px;
        padding-bottom: 70px;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 14vw, 4.3rem);
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

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

    .hero-visual {
        min-height: 460px;
    }

    .main-card {
        min-height: 380px;
        padding: 24px;
        border-radius: 28px;
    }

    .floating-card {
        min-width: 160px;
        padding: 14px;
    }

    .floating-card-one {
        top: 20px;
        right: -3px;
    }

    .floating-card-two {
        bottom: 18px;
        left: -3px;
    }

    .about-grid,
    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .featured-product {
        grid-column: auto;
    }

    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .founder-avatar {
        margin: auto;
    }

    .contact-box {
        padding: 30px 22px;
        border-radius: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        margin-top: 42px;
    }
}

/* =========================
   Very Small Screens
========================= */

@media (max-width: 390px) {
    .brand-text span {
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.65rem;
    }

    .eyebrow {
        font-size: 0.72rem;
    }

    .app-icon {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .card-top h2 {
        font-size: 1.7rem;
    }

    .floating-card {
        min-width: 145px;
    }
}

/* =========================
   Accessibility
========================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}