*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --bg: #050816;
    --bg-alt: #090f1f;
    --surface: #0f172a;
    --surface-alt: #111827;
    --accent: #fbbf24;
    --accent-soft: rgba(251, 191, 36, 0.08);
    --accent-strong: #f59e0b;
    --text-main: #f9fafb;
    --text-muted: #9ca3af;
    --border-subtle: rgba(148, 163, 184, 0.2);
    --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.55);
    --radius-xl: 24px;
    --radius-lg: 18px;
    --radius-pill: 999px;
    --max-width: 1120px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at top left, #1f2937 0%, #020617 42%, #020617 100%);
    color: var(--text-main);
}

/* Layout helpers */

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 5rem 0;
}

.section.alt {
    background: radial-gradient(circle at top, rgba(148, 163, 184, 0.12) 0, transparent 55%), var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 3rem;
}

.section-header p {
    margin-bottom: 0.75rem;
}

.section-header h2 {
    margin-top: 0.25rem;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 2.75rem;
    align-items: center;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.apps-layout,
.contact-layout,
.brands-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 2.5rem;
}

/* Header */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.2));
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.logo-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px;
    background: radial-gradient(circle at 20% 0%, var(--accent) 0, var(--accent-strong) 35%, #b45309 70%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #0f172a;
    font-size: 1.15rem;
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.55);
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.logo-title {
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 0.15rem;
    transition: color 0.18s ease;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--accent), var(--accent-strong));
    transition: width 0.18s ease;
}

.main-nav a:hover {
    color: var(--text-main);
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-main);
    border-radius: 999px;
    margin: 4px 0;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

/* Hero */

.hero {
    padding: 4.5rem 0 5rem;
}

.hero-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
    gap: 2.75rem;
    align-items: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--accent);
}

.eyebrow::before {
    content: "";
    width: 32px;
    height: 1px;
    border-radius: 999px;
    background: linear-gradient(to right, var(--accent), transparent);
}

.hero h1 {
    font-size: clamp(2.2rem, 3.1vw, 2.8rem);
    line-height: 1.15;
    margin: 0.8rem 0 1rem;
}

.hero-text {
    color: var(--text-muted);
    max-width: 36rem;
    margin-bottom: 1.6rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-bottom: 1.6rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.7rem 1.4rem;
    border-radius: var(--radius-pill);
    border: 1px solid transparent;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.18s ease, color 0.18s ease, transform 0.09s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.btn.primary {
    background: radial-gradient(circle at top left, var(--accent) 0, var(--accent-strong) 45%, #b45309 100%);
    color: #111827;
    box-shadow: 0 14px 35px rgba(251, 191, 36, 0.5);
}

.btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 45px rgba(251, 191, 36, 0.55);
}

.btn.ghost {
    background: rgba(15, 23, 42, 0.8);
    color: var(--text-main);
    border-color: rgba(148, 163, 184, 0.45);
}

.btn.ghost:hover {
    background: rgba(15, 23, 42, 1);
    border-color: var(--accent);
}

.btn.full-width {
    width: 100%;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.meta-item {
    min-width: 180px;
}

.meta-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

.meta-value {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-media {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: radial-gradient(circle at top left, rgba(251, 191, 36, 0.02) 0, rgba(15, 23, 42, 1) 52%);
    border-radius: var(--radius-xl);
    padding: 1.3rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1.1rem;
}

.hero-card img {
    width: 100%;
    border-radius: 18px;
    background: radial-gradient(circle at top left, #0f172a, #020617);
}

.hero-card-content h2 {
    font-size: 1.1rem;
    margin: 0.4rem 0 0.35rem;
}

.hero-card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

.stat-card {
    background: rgba(15, 23, 42, 0.95);
    border-radius: var(--radius-lg);
    padding: 0.85rem 1rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    color: var(--text-muted);
}

.stat-value {
    display: block;
    font-size: 1.35rem;
    font-weight: 600;
    margin-top: 0.2rem;
}

.stat-note {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Pills, chips, cards */

.pill {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.8rem;
    border-radius: var(--radius-pill);
    border: 1px solid rgba(148, 163, 184, 0.4);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--text-muted);
}

.pill-soft {
    background: var(--accent-soft);
    border-color: transparent;
    color: var(--accent-strong);
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
    font-size: 0.8rem;
    color: var(--text-muted);
}

.chip i {
    font-size: 0.85rem;
    color: var(--accent);
}

.card-elevated {
    background: rgba(15, 23, 42, 0.98);
    border-radius: var(--radius-xl);
    padding: 1.6rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: var(--shadow-soft);
}

/* About */

.about-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.3rem;
}

.section h2 {
    font-size: 1.7rem;
    margin: 0.5rem 0 0.75rem;
}

.section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.section-media img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 1.25rem;
}

.key-points {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.key-points li i {
    color: var(--accent);
    margin-right: 0.35rem;
}

/* Services */

.service-card {
    background: rgba(15, 23, 42, 1);
    border-radius: var(--radius-lg);
    padding: 1.3rem 1.3rem 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.65);
}

.service-card h3 {
    margin: 0.7rem 0 0.45rem;
    font-size: 1rem;
}

.service-card p {
    font-size: 0.9rem;
}

/* Brands */

.brand-card img {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    margin-right: 0.9rem;
}

.brand-tag {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.brand-card h3 {
    margin: 0.25rem 0 0.6rem;
    font-size: 1.15rem;
}

.brand-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--accent);
    text-decoration: none;
}

.brand-link i {
    font-size: 0.85rem;
}

/* Apps */

.apps-media img {
    width: 100%;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.apps-note {
    font-size: 0.87rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.2rem;
}

.app-card {
    background: rgba(15, 23, 42, 0.96);
    border-radius: var(--radius-lg);
    padding: 1rem 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.app-card h3 {
    margin: 0 0 0.4rem;
    font-size: 0.98rem;
}

.app-card p {
    font-size: 0.86rem;
    margin-bottom: 0.35rem;
}

.app-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    color: var(--accent);
    text-decoration: none;
}

.app-link i {
    font-size: 0.8rem;
}

/* Vision */

.vision-highlights {
    display: grid;
    gap: 1rem;
}

.vision-item {
    display: flex;
    gap: 0.9rem;
    align-items: flex-start;
}

.vision-icon {
    width: 38px;
    height: 38px;
    border-radius: 16px;
    background: var(--accent-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-strong);
}

.vision-item h3 {
    margin: 0 0 0.25rem;
    font-size: 0.98rem;
}

.vision-item p {
    margin: 0;
    font-size: 0.86rem;
}

/* Contact */

.contact-details h3 {
    margin-top: 0;
    margin-bottom: 0.75rem;
}

.contact-details p {
    margin: 0 0 0.75rem;
    font-size: 0.9rem;
}

.contact-note {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.contact-link {
    color: var(--accent);
    text-decoration: none;
    font-size: 0.9rem;
}

.contact-link:hover {
    text-decoration: underline;
}

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

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
}

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

label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
}

input,
textarea {
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.5);
    background: rgba(15, 23, 42, 0.95);
    color: var(--text-main);
    padding: 0.6rem 0.8rem;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

input::placeholder,
textarea::placeholder {
    color: #6b7280;
}

input:focus,
textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, 0.3);
    background: rgba(15, 23, 42, 1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

.form-disclaimer {
    margin: 0.3rem 0 0;
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Footer */

.site-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.3);
    background: radial-gradient(circle at top, rgba(15, 23, 42, 0.85) 0, #020617 55%);
    padding: 1.5rem 0 2.2rem;
}

.footer-inner {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.footer-note {
    margin-top: 0.45rem;
    font-size: 0.78rem;
}

/* Responsive */

@media (max-width: 960px) {
    .hero-inner,
    .two-column,
    .apps-layout,
    .contact-layout,
    .brands-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-inner {
        gap: 2.2rem;
    }

    .hero-media {
        order: -1;
    }

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

@media (max-width: 768px) {
    .header-inner {
        padding-inline: 1rem;
    }

    .main-nav {
        position: absolute;
        inset: 3.1rem 1rem auto 1rem;
        padding: 0.8rem 1rem 1rem;
        background: rgba(15, 23, 42, 0.98);
        border-radius: 18px;
        border: 1px solid rgba(148, 163, 184, 0.45);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        transform-origin: top;
        transform: scaleY(0.9);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.14s ease, transform 0.14s ease;
    }

    .main-nav.open {
        opacity: 1;
        pointer-events: auto;
        transform: scaleY(1);
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero {
        padding-top: 3.2rem;
    }

    .cards-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .apps-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .form-row {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 480px) {
    .header-inner {
        gap: 0.75rem;
    }

    .logo-title {
        font-size: 0.85rem;
    }

    .hero h1 {
        font-size: 1.9rem;
    }

    .hero-card {
        grid-template-columns: minmax(0, 1fr);
    }

    .card-elevated {
        padding: 1.25rem;
    }
}