:root {
    --bg-main: #edf3ff;
    --bg-alt: #ffffff;
    --bg-accent-soft: #e6f0ff;
    --primary: #0f6fec;
    --primary-soft: rgba(15, 111, 236, 0.08);
    --secondary: #13b5a3;
    --accent-soft-2: #a5f3fc;
    --text-main: #0f172a;
    --text-muted: #6b7280;
    --border-soft: #e2e8f0;
    --radius-lg: 1.6rem;
    --radius-md: 1.1rem;
    --radius-sm: 0.75rem;
    --shadow-soft: 0 22px 50px rgba(15, 23, 42, 0.16);
}

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

html, body {
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, #f9fbff 0, transparent 55%),
        radial-gradient(circle at 120% -20%, #e0f2fe 0, #e5ecff 25%, transparent 55%),
        #edf3ff;
    -webkit-font-smoothing: antialiased;
}

body {
    min-height: 100vh;
}

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

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

.container {
    width: min(1120px, 100% - 2.5rem);
    margin: 0 auto;
}

/* HEADER / NAV */

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: radial-gradient(circle at top left, rgba(255,255,255,0.96), rgba(239,246,255,0.96));
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 0;
}

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

.logo-mark {
    width: 2.7rem;
    height: 2.7rem;
    border-radius: 1.1rem;
    background:
        radial-gradient(circle at 15% 0, #e0f2fe, #38bdf8 32%, #0f6fec 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.55);
}

.logo-texts {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-weight: 600;
    font-size: 1.05rem;
}

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

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

.nav-list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    position: relative;
    padding-bottom: 0.15rem;
}

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

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

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

.nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    padding: 0.3rem;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: #111827;
}

.nav-toggle span + span {
    margin-top: 4px;
}

/* HERO + MOTION BACKGROUND */

.hero {
    padding: 3.8rem 0 3.2rem;
}

.hero-home {
    position: relative;
    overflow: hidden;
    color: #020617;
}

.hero-home::before,
.hero-home::after {
    content: "";
    position: absolute;
    inset: -30%;
    z-index: -2;
}

/* Moving gradient wash */
.hero-home::before {
    background: conic-gradient(
        from 140deg,
        #e0f2fe,
        #bfdbfe,
        #a5f3fc,
        #93c5fd,
        #e0f2fe
    );
    animation: heroGradientMove 30s ease-in-out infinite alternate;
    opacity: 0.85;
}

/* Soft blurred cleaning bubbles */
.hero-home::after {
    background:
        radial-gradient(circle at 15% 20%, rgba(191, 219, 254, 0.85) 0, transparent 55%),
        radial-gradient(circle at 80% 10%, rgba(125, 211, 252, 0.8) 0, transparent 55%),
        radial-gradient(circle at 70% 80%, rgba(45, 212, 191, 0.55) 0, transparent 55%),
        radial-gradient(circle at 10% 85%, rgba(129, 140, 248, 0.35) 0, transparent 55%);
    filter: blur(36px);
    mix-blend-mode: screen;
    animation: heroBubblesDrift 32s linear infinite alternate;
    opacity: 0.85;
}

@keyframes heroGradientMove {
    0% {
        transform: translate3d(-6%, -4%, 0) scale(1.05);
    }
    50% {
        transform: translate3d(4%, 4%, 0) scale(1.08) rotate(1deg);
    }
    100% {
        transform: translate3d(8%, -6%, 0) scale(1.03) rotate(-1deg);
    }
}

@keyframes heroBubblesDrift {
    0% {
        transform: translate3d(-3%, 4%, 0) scale(1);
    }
    50% {
        transform: translate3d(2%, -3%, 0) scale(1.05);
    }
    100% {
        transform: translate3d(4%, 5%, 0) scale(0.98);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2.3rem;
    align-items: center;
}

.hero-copy h1 {
    margin: 0.3rem 0 0.9rem;
    font-size: clamp(2.3rem, 3.3vw, 2.9rem);
}

.hero-text {
    margin: 0 0 1.2rem;
    color: var(--text-muted);
    max-width: 32rem;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.7rem;
    color: #64748b;
}

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

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.8rem;
}

.hero-badges span {
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(248, 250, 252, 0.85);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.08);
    color: #0369a1;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.hero-badges span::before {
    content: "●";
    font-size: 0.7rem;
    color: #0ea5e9;
}

/* Hero side card with glassmorphism */

.hero-card {
    display: flex;
    justify-content: flex-end;
}

.hero-card-inner {
    position: relative;
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.86));
    border-radius: var(--radius-lg);
    padding: 1.7rem 1.6rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(148, 163, 184, 0.7);
    color: #e5e7eb;
    overflow: hidden;
}

.hero-card-inner::before {
    content: "";
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 0 0, rgba(59, 130, 246, 0.5), transparent 60%),
        radial-gradient(circle at 100% 100%, rgba(45, 212, 191, 0.45), transparent 60%);
    opacity: 0.7;
    mix-blend-mode: screen;
    filter: blur(32px);
}

.hero-card-inner > * {
    position: relative;
    z-index: 1;
}

.hero-card-title {
    margin: 0 0 0.4rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.hero-card-text {
    margin: 0 0 1rem;
    color: #cbd5f5;
    font-size: 0.9rem;
}

.hero-stats {
    list-style: none;
    padding: 0;
    margin: 0 0 1.1rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
    font-size: 0.85rem;
}

.stat-label {
    display: block;
    color: #9ca3af;
}

.stat-value {
    font-weight: 600;
    color: #e0f2fe;
}

.hero-note {
    margin: 0.4rem 0 0;
    font-size: 0.75rem;
    color: #9ca3af;
}

/* SECTIONS */

.section {
    padding: 3.2rem 0;
}

.section-light {
    background: #ffffff;
}

.section-accent {
    background: linear-gradient(135deg, #0f6fec, #0891b2);
    color: #ffffff;
}

.section-accent-soft {
    background: #e0f2fe;
}

.section-header {
    text-align: center;
    margin-bottom: 2.2rem;
}

.section-header h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.6rem, 2.4vw, 2rem);
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
    max-width: 30rem;
    margin-inline: auto;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.4rem;
}

.service-card,
.value-card {
    background: rgba(255, 255, 255, 0.96);
    border-radius: var(--radius-md);
    border: 1px solid rgba(226, 232, 240, 0.9);
    padding: 1.5rem 1.3rem;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(12px);
}

.service-card h3,
.value-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.1rem;
}

.service-card p,
.value-card p {
    margin: 0 0 0.8rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.service-card ul {
    margin: 0;
    padding-left: 1.1rem;
    font-size: 0.88rem;
    color: var(--text-muted);
}

.section-cta-inline {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-soft);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Steps */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.4rem;
}

.step-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 1.4rem 1.3rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.step-number {
    width: 2rem;
    height: 2rem;
    border-radius: 999px;
    background: var(--primary-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.step-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.05rem;
}

.step-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Two column */

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2rem;
    align-items: flex-start;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    font-size: 0.92rem;
    color: var(--text-muted);
}

.checklist li {
    position: relative;
    padding-left: 1.3rem;
    margin-bottom: 0.45rem;
}

.checklist li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-size: 0.9rem;
}

.quote-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 1.5rem 1.4rem;
    box-shadow: var(--shadow-soft);
}

/* Info cards */

.info-card {
    background: #ffffff;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-soft);
    padding: 1.3rem 1.25rem;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

/* Final CTA */

.section-accent .final-cta,
.section-accent-soft .final-cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.section-accent p,
.section-accent-soft p {
    margin: 0.45rem 0 0;
    max-width: 30rem;
    font-size: 0.92rem;
}

.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Page hero */

.page-hero {
    padding: 3.2rem 0 2.2rem;
}

.page-hero h1 {
    margin: 0.3rem 0 0.7rem;
    font-size: clamp(2rem, 2.8vw, 2.4rem);
}

.page-intro {
    margin: 0;
    max-width: 36rem;
    color: var(--text-muted);
}

/* About */

.value-card {
    background: #ffffff;
}

.about-owner {
    align-items: center;
}

.owner-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.owner-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 999px;
    background: var(--primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.owner-role {
    margin: 0 0 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Contact */

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-form {
    background: rgba(255, 255, 255, 0.98);
    border-radius: var(--radius-lg);
    padding: 1.6rem 1.4rem;
    border: 1px solid var(--border-soft);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 0.9rem;
}

label {
    display: block;
    font-size: 0.86rem;
    margin-bottom: 0.2rem;
}

input,
select,
textarea {
    width: 100%;
    border-radius: 0.8rem;
    border: 1px solid var(--border-soft);
    padding: 0.6rem 0.75rem;
    font-size: 0.88rem;
    font-family: inherit;
    background: #f9fafb;
    color: var(--text-main);
}

input:focus,
select:focus,
textarea:focus {
    outline: 1px solid var(--primary);
    border-color: var(--primary);
    background: #ffffff;
}

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

.form-note {
    margin-top: 0.6rem;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-details {
    list-style: none;
    padding: 0;
    margin: 0 0 0.8rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-details li + li {
    margin-top: 0.25rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 0.55rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition:
        transform 0.14s ease-out,
        box-shadow 0.14s ease-out,
        background 0.14s ease-out,
        border-color 0.14s ease-out,
        color 0.14s ease-out;
}

.btn.primary {
    background: radial-gradient(circle at 0 0, #38bdf8, #2563eb);
    color: #ffffff;
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.6);
}

.btn.secondary {
    background: #ffffff;
    border-color: var(--primary);
    color: var(--primary);
}

.btn.outline {
    border-color: rgba(15, 111, 236, 0.45);
    background: rgba(219, 234, 254, 0.9);
    color: #1d4ed8;
}

.btn.ghost {
    border-color: rgba(255, 255, 255, 0.7);
    background: transparent;
    color: inherit;
}

.section-accent-soft .btn.ghost {
    border-color: rgba(15, 111, 236, 0.4);
    color: #1d4ed8;
    background: #ffffff;
}

.btn.full {
    width: 100%;
}

.btn:hover {
    transform: translateY(-1px) translateZ(0);
    box-shadow: 0 22px 55px rgba(15, 23, 42, 0.18);
}

/* Footer */

.site-footer {
    background: #020617;
    color: #e5e7eb;
    padding: 2.5rem 0 1.6rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 2.3fr) repeat(2, minmax(0, 1.5fr));
    gap: 2rem;
    align-items: flex-start;
}

.footer-text {
    margin: 0.3rem 0 0;
    font-size: 0.9rem;
    color: #9ca3af;
    max-width: 20rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 0.88rem;
    color: #9ca3af;
}

.footer-links li + li {
    margin-top: 0.3rem;
}

.footer-links a:hover {
    color: #ffffff;
}

.site-footer h4 {
    margin: 0 0 0.7rem;
    font-size: 0.92rem;
}

.footer-bottom {
    margin-top: 1.7rem;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(55, 65, 81, 0.8);
    font-size: 0.78rem;
    text-align: center;
    color: #6b7280;
}

/* Responsive */

@media (max-width: 820px) {
    .nav-toggle {
        display: inline-block;
    }

    .nav-list {
        position: absolute;
        right: 1.3rem;
        top: 100%;
        margin-top: 0.5rem;
        background: #ffffff;
        border-radius: 1rem;
        border: 1px solid var(--border-soft);
        padding: 0.8rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        min-width: 9.5rem;
        box-shadow: 0 18px 40px rgba(15, 23, 42, 0.16);
        display: none;
    }

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

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

    .hero-card {
        justify-content: stretch;
    }

    .section-accent .final-cta,
    .section-accent-soft .final-cta,
    .section-cta-inline {
        flex-direction: column;
        align-items: flex-start;
    }

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

@media (max-width: 480px) {
    .container {
        width: min(100% - 1.6rem, 480px);
    }

    .hero {
        padding-top: 3rem;
    }
}
