﻿:root {
    --royal: #003663;
    --aqua: #00D1FF;
    --gold: #D4AF37;
    --navy: #06121d;
    --muted: #6b7280;
    --bg: #f6fbff;
    --card: #ffffff;
    --glass: rgba(255,255,255,0.6);
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Poppins',sans-serif;
    margin: 0;
    background: linear-gradient(180deg,#f6fbff,#ffffff);
    color: var(--navy);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 28px
}

.header {
    background: linear-gradient(135deg,var(--royal),#055a8c);
    color: #fff;
    padding: 70px 0 48px;
}

    .header .inner {
        display: flex;
        gap: 24px;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 0 24px;
    }

.brand {
    font-weight: 800;
    font-size: 22px
}

.hero {
    flex: 1;
    padding: 8px 8px 0 8px;
}

    .hero h1 {
        font-size: 42px;
        line-height: 1.02;
        margin: 0 0 12px
    }

    .hero p {
        font-size: 16px;
        color: rgba(230,244,255,0.95);
        margin: 0 0 18px
    }

.cta-row {
    display: flex;
    gap: 12px;
    align-items: center
}

.cta {
    background: var(--gold);
    color: var(--navy);
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none
}

.secondary-cta {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.14);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    text-decoration: none
}

.header-visual {
    width: 360px;
    max-width: 40%
}

.card {
    background: var(--card);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(3,16,40,.08)
}

.section {
    padding: 60px 0
}

.h2 {
    font-size: 30px;
    color: var(--royal);
    text-align: center;
    margin-bottom: 12px
}

.lead {
    max-width: 900px;
    margin: 0 auto 28px;
    text-align: center;
    color: var(--muted)
}
/* 3x3 grid for desktop, responsive for mobile */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 22px;
    padding: 0 20px;
    max-width: 1200px;
    margin: auto;
}

@media(max-width:980px) {
    .grid-3 {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:680px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .header-visual {
        display: none
    }

    .hero h1 {
        font-size: 28px
    }

    .header {
        padding: 36px 0
    }
}

/* Card styles */
.service-card, .product-card, .why-card {
    background: #fff;
    padding: 24px;
    border-radius: 14px;
    box-shadow: 0 10px 26px rgba(2,32,60,0.06);
    transition: transform .28s, box-shadow .28s;
    border-top: 6px solid var(--aqua)
}

    .service-card:hover, .why-card:hover, .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 16px 40px rgba(2,32,60,0.12);
    }

    .service-card h3, .product-card h3 {
        margin: 0 0 10px;
        color: var(--royal);
        font-size: 20px;
    }

    .service-card p, .product-card p {
        margin: 0;
        color: #334155;
        line-height: 1.5;
        font-size: 14px;
    }

/* timeline */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center
}

.timeline-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center
}

.step {
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(2,32,60,0.06)
}

    .step h4 {
        margin: 0 0 6px;
        color: var(--royal);
        font-size: 16px
    }

    .step p {
        margin: 0;
        font-size: 13px;
        color: #4b5b6b;
        line-height: 1.45
    }

/* long process scroller */
.process-scroll {
    overflow: auto;
    padding: 12px 6px;
    margin-top: 14px
}

.process-row {
    display: flex;
    gap: 14px;
    min-width: 1100px
}

.process-card {
    background: #fff;
    padding: 18px;
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 10px 28px rgba(2,32,60,0.06)
}

/* badges */
.badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center
}

.badge {
    background: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(2,32,60,0.06);
    font-weight: 600;
    color: var(--royal)
}

/* Why grid */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

@media(max-width:980px) {
    .why-grid {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:680px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* products */
.products {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    margin-top: 10px;
}

@media(max-width:980px) {
    .products {
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:680px) {
    .products {
        grid-template-columns: 1fr;
    }
}

.product-card .visual {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(180deg, rgba(0,209,255,0.06), rgba(111,66,193,0.03));
    margin-bottom: 12px;
}

/* contact & form */
.contact-grid {
    display: grid;
    /*grid-template-columns: 2fr 1fr;*/
    gap: 20px;
}

/*@media(max-width:880px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}*/

.input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: 1px solid #e6eef8;
    font-size: 14px
}

.btn-primary {
    background: var(--royal);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    border: none;
    font-weight: 700
}

/* accordion */
.terms-acc {
    max-width: 1000px;
    margin: 0 auto
}

.accordion {
    background: #fff;
    border-radius: 10px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(2,32,60,0.06)
}

    .accordion summary {
        cursor: pointer;
        padding: 16px 18px;
        list-style: none;
        font-weight: 700;
        color: var(--royal)
    }

    .accordion p {
        padding: 0 18px 16px 18px;
        margin: 0;
        color: #334155;
        display: none
    }

/* small */
.small {
    font-size: 13px;
    color: var(--muted)
}

/* footer */
.footer {
    background: #02121b;
    color: #9fe9ff;
    padding: 30px;
    text-align: center;
    margin-top: 36px
}

/* subtle animation */
@keyframes fadeUp {
    from {
        transform: translateY(8px);
        opacity: .6
    }

    to {
        transform: none;
        opacity: 1
    }
}

.service-card, .why-card, .product-card, .step {
    animation: fadeUp .6s ease both
}
