/*
Theme Name: A1 Web Build
Author: Ricardo Rodriguez
Description: Custom WordPress theme for A1 Web Build.
Version: 1.0
*/
:root {
    --bg: #f7f7f5;
    --surface: #ffffff;
    --text: #1f2328;
    --muted: #667085;
    --accent: #1f5f8b;
    --accent-dark: #174766;
    --border: #e5e7eb;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* HEADER */

.site-header {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-a1 {
    font-size: 34px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -2px;
}

.brand-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
}

.main-nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
}

.main-nav a:hover {
    color: var(--accent);
}

.contact-button {
    background: var(--accent);
    color: white !important;
    padding: 10px 18px;
    border-radius: 6px;
}

.contact-button:hover {
    background: var(--accent-dark);
}

/* MAIN */

main {
    max-width: 1180px;
    margin: 0 auto;
    padding: 80px 28px;
}

/* FOOTER */

.site-footer {
    background: #15191d;
    color: #f3f4f6;
    margin-top: 80px;
}

.footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 48px 28px;
}

.site-footer p {
    margin: 5px 0;
}

/* MOBILE */

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 14px 18px;
    }
}

@media (max-width: 600px) {
    .brand-a1 {
        font-size: 30px;
    }

    .brand-name {
        font-size: 20px;
    }

    main {
        padding: 55px 20px;
    }
}
/* =========================
   HOME PAGE
========================= */

.home-page {
    max-width: none;
    padding: 0;
}


/* HERO */

.hero {
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 28px 90px;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 70px;
    align-items: center;
}

.eyebrow {
    margin: 0 0 14px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--accent);
}

.hero h1 {
    margin: 0;
    max-width: 680px;
    font-size: clamp(48px, 7vw, 78px);
    line-height: .98;
    letter-spacing: -3px;
    font-weight: 800;
}

.hero-text {
    max-width: 620px;
    margin: 28px 0 0;
    color: var(--muted);
    font-size: 20px;
    line-height: 1.7;
}

.hero-points {
    margin-top: 28px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-points span {
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 700;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button-primary,
.button-secondary {
    display: inline-block;
    padding: 13px 21px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    transition: .2s ease;
}

.button-primary {
    background: var(--accent);
    color: white;
}

.button-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.button-secondary {
    border: 1px solid var(--border);
    color: var(--text);
    background: white;
}

.button-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* BROWSER MOCKUP */

.hero-showcase {
    position: relative;
}

.browser-window {
    overflow: hidden;
    border: 1px solid #d9dde3;
    border-radius: 12px;
    background: white;
    box-shadow: 0 30px 70px rgba(20, 30, 40, .12);
    transform: rotate(1.2deg);
}

.browser-top {
    height: 42px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    background: #f1f3f5;
    border-bottom: 1px solid #e3e6ea;
}

.browser-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c6cbd1;
}

.browser-content {
    min-height: 390px;
}

.sample-nav {
    padding: 22px 26px;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 13px;
    border-bottom: 1px solid #edf0f2;
}

.sample-nav strong {
    font-size: 17px;
}

.sample-nav span {
    color: #6f7780;
}

.sample-hero {
    padding: 68px 38px 78px;
    background:
        linear-gradient(
            135deg,
            #eef3f6 0%,
            #ffffff 70%
        );
}

.sample-hero p {
    margin: 0 0 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--accent);
}

.sample-hero h2 {
    margin: 0;
    max-width: 420px;
    font-size: 42px;
    line-height: 1.08;
    letter-spacing: -1.5px;
}

.sample-button {
    display: inline-block;
    margin-top: 24px;
    padding: 10px 16px;
    background: #1f2328;
    color: white;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
}


/* INTRO */

.intro-section {
    padding: 95px 28px;
    background: white;
}

.section-heading,
.intro-grid {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.section-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.intro-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 80px;
}

.intro-copy {
    color: var(--muted);
    font-size: 18px;
}

.intro-copy p:first-child {
    margin-top: 0;
}

.service-list {
    border-top: 1px solid var(--border);
}

.service-row {
    padding: 24px 0;
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 25px;
    border-bottom: 1px solid var(--border);
}

.service-row strong {
    font-size: 17px;
}

.service-row span {
    color: var(--muted);
}


/* EXPERIENCE */

.experience-section {
    max-width: 1180px;
    margin: 0 auto;
    padding: 110px 28px;
    display: grid;
    grid-template-columns: .65fr 1.35fr;
    gap: 80px;
    align-items: start;
}

.experience-number {
    font-size: clamp(100px, 16vw, 180px);
    line-height: .8;
    letter-spacing: -9px;
    font-weight: 800;
    color: var(--accent);
}

.experience-copy h2 {
    margin: 0;
    max-width: 700px;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -2px;
}

.experience-copy p:not(.eyebrow) {
    max-width: 700px;
    color: var(--muted);
    font-size: 18px;
}


/* PRICE */

.price-section {
    max-width: 1180px;
    margin: 0 auto 110px;
    padding: 55px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: white;
    border: 1px solid var(--border);
}

.price-section h2 {
    margin: 0;
    font-size: 40px;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.price-section p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 18px;
}

.price-section strong {
    color: var(--text);
}


/* FINAL CTA */

.final-cta {
    padding: 100px 28px;
    text-align: center;
    background: #15191d;
    color: white;
}

.final-cta .eyebrow {
    color: #9ec8e5;
}

.final-cta h2 {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(40px, 6vw, 68px);
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.final-cta p:not(.eyebrow) {
    max-width: 660px;
    margin: 24px auto 30px;
    color: #bcc2c9;
    font-size: 18px;
}

.light-button {
    background: white;
    color: #15191d;
}

.light-button:hover {
    background: #eef1f3;
    color: #15191d;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .hero {
        grid-template-columns: 1fr;
        gap: 55px;
        padding-top: 75px;
    }

    .browser-window {
        transform: none;
    }

    .intro-grid,
    .experience-section {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .service-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .experience-number {
        font-size: 110px;
        letter-spacing: -5px;
    }

    .price-section {
        flex-direction: column;
        align-items: flex-start;
        padding: 40px;
    }
}

@media (max-width: 600px) {

    .hero {
        padding: 60px 20px 70px;
    }

    .hero h1 {
        letter-spacing: -2px;
    }

    .hero-text {
        font-size: 18px;
    }

    .sample-nav span {
        display: none;
    }

    .sample-hero {
        padding: 48px 26px 55px;
    }

    .sample-hero h2 {
        font-size: 34px;
    }

    .intro-section {
        padding: 75px 20px;
    }

    .experience-section {
        padding: 80px 20px;
    }

    .price-section {
        margin: 0 20px 80px;
        padding: 30px;
    }

    .final-cta {
        padding: 80px 20px;
    }
}