:root {
    --bg: #f5f7fb;
    --surface: #ffffff;
    --navy: #0b1c2c;
    --navy-2: #102b40;
    --teal: #3fd2c7;
    --blue: #5a7dff;
    --text: #1b2a3b;
    --muted: #5e7183;
    --border: #e2e8f0;
    --shadow: 0 18px 45px rgba(11, 28, 44, 0.12);
    --radius: 18px;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Manrope', sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: radial-gradient(circle at top left, rgba(63, 210, 199, 0.08), transparent 55%),
        radial-gradient(circle at 10% 90%, rgba(90, 125, 255, 0.1), transparent 60%),
        var(--bg);
    line-height: 1.6;
}

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

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

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.section {
    padding: 80px 0;
}

.eyebrow {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: var(--blue);
    font-weight: 600;
    margin-bottom: 16px;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--navy);
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    margin-bottom: 16px;
}

h2 {
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 16px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

p.lead {
    font-size: 1.1rem;
    color: var(--muted);
}

.top-banner {
    background: var(--navy);
    color: #ffffff;
    font-size: 0.95rem;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 16px;
}

.link-arrow {
    color: var(--teal);
    font-weight: 600;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 247, 251, 0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.7);
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
}

.logo span {
    color: var(--blue);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    font-weight: 600;
    color: var(--muted);
}

.main-nav .btn {
    margin-left: 8px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 28px;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
}

.nav-toggle span {
    width: 100%;
    height: 2px;
    background: var(--navy);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #ffffff;
    box-shadow: var(--shadow);
}

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

.btn:hover {
    transform: translateY(-2px);
}

.btn-small {
    padding: 8px 14px;
    font-size: 0.85rem;
}

.hero {
    padding: 90px 0 60px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 24px;
    margin-top: 28px;
}

.hero-stats h3 {
    font-size: 1.6rem;
}

.hero-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
}

.hero-card-top {
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(63, 210, 199, 0.12);
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 12px;
}

.mini-form label,
.contact-card label,
.contact-form label,
.admin-card label {
    display: block;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 12px;
}

input, textarea, select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-top: 6px;
    font-family: var(--font-body);
    background: #ffffff;
}

textarea {
    resize: vertical;
}

.section-header {
    margin-bottom: 40px;
}

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

.card,
.trust-card,
.testimonial,
.portfolio-card,
.pricing-card,
.maintenance-card,
.cred-card,
.admin-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
}

.card p {
    color: var(--muted);
    margin-bottom: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
}

.process-step {
    background: var(--surface);
    padding: 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.process-step span {
    font-size: 0.9rem;
    color: var(--blue);
    font-weight: 700;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    align-items: center;
}

.trust-list {
    list-style: none;
    display: grid;
    gap: 12px;
    color: var(--muted);
}

.trust-list li::before {
    content: '✓';
    margin-right: 8px;
    color: var(--teal);
}

.trust-cards {
    display: grid;
    gap: 18px;
}

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

.testimonial span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-weight: 600;
}

.cta-section {
    background: var(--navy);
    color: #ffffff;
}

.cta-section h2,
.cta-section h4 {
    color: #ffffff;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    align-items: center;
}

.cta-section .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: transparent;
}

.contact-card {
    background: #ffffff;
    border-radius: var(--radius);
    padding: 28px;
    color: var(--text);
}

.tag-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(90, 125, 255, 0.1);
    color: var(--navy);
    font-weight: 600;
}

.pricing-grid,
.maintenance-grid,
.portfolio-grid,
.credibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy);
    margin: 10px 0;
}

.inner-hero {
    padding: 80px 0 40px;
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
}

.list {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--muted);
}

.list li::before {
    content: '•';
    margin-right: 10px;
    color: var(--blue);
}

.portfolio-card p {
    margin-bottom: 12px;
    color: var(--muted);
}

.portfolio-card .outcome {
    color: var(--navy);
    font-weight: 600;
}

.pricing-card {
    position: relative;
}

.pricing-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    border: 1px solid rgba(90, 125, 255, 0.2);
    pointer-events: none;
}

.pricing-callout .pricing-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.contact-highlights {
    display: grid;
    gap: 16px;
    margin: 24px 0;
}

.contact-info {
    margin-bottom: 20px;
    color: var(--muted);
}

.alert {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 16px;
    font-weight: 600;
}

.alert.success {
    background: rgba(63, 210, 199, 0.15);
    color: var(--navy);
}

.alert.error {
    background: rgba(255, 80, 80, 0.12);
    color: #b42318;
}

.error-text {
    color: #b42318;
    font-size: 0.85rem;
}

.admin-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.table-wrap {
    overflow-x: auto;
    background: #ffffff;
    border-radius: var(--radius);
    padding: 16px;
    box-shadow: var(--shadow);
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 720px;
}

table th,
    table td {
    text-align: left;
    padding: 12px 10px;
    border-bottom: 1px solid var(--border);
    font-size: 0.9rem;
}

.status {
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status.new {
    background: rgba(90, 125, 255, 0.12);
    color: var(--navy);
}

.status.contacted {
    background: rgba(63, 210, 199, 0.18);
    color: var(--navy);
}

.site-footer {
    background: var(--navy-2);
    color: #d2deea;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.footer-grid h4,
.footer-grid h5 {
    color: #ffffff;
}

.footer-grid ul {
    list-style: none;
    display: grid;
    gap: 10px;
}

.footer-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.footer-badges span {
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 0.75rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-links {
    display: flex;
    gap: 16px;
}

.floating-cta,
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: var(--shadow);
    z-index: 200;
}

.floating-cta {
    background: linear-gradient(135deg, var(--teal), var(--blue));
    color: #ffffff;
}

.whatsapp-float {
    bottom: 80px;
    background: #25d366;
    color: #ffffff;
}

.micro {
    font-size: 0.8rem;
    color: var(--muted);
}

[data-animate] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].in-view {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 960px) {
    .main-nav {
        position: fixed;
        top: 80px;
        right: 20px;
        background: #ffffff;
        flex-direction: column;
        padding: 24px;
        border-radius: var(--radius);
        box-shadow: var(--shadow);
        gap: 16px;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-toggle {
        display: flex;
    }

    .top-banner .banner-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero {
        padding-top: 60px;
    }

    .floating-cta {
        right: 16px;
        left: 16px;
        text-align: center;
    }

    .whatsapp-float {
        right: 16px;
    }
}
