/* =========================================================
   PECKSWEB SOLUTIONS
   PREMIUM EDITORIAL / STUDIO DESIGN
   ========================================================= */


/* =========================================================
   GLOBAL VARIABLES
   ========================================================= */

:root {
    --bg: #0b0d0e;
    --bg-soft: #111416;
    --bg-lifted: #161a1c;
    --cream: #f2efe8;
    --cream-soft: #d8d4cb;
    --text: #f5f3ee;
    --muted: #9b9f9d;
    --accent: #ff6b35;
    --accent-soft: #ff8a61;
    --line: rgba(255, 255, 255, 0.12);
    --line-strong: rgba(255, 255, 255, 0.2);
    --shell: 1320px;
    --radius-small: 10px;
    --radius-medium: 18px;
    --radius-large: 28px;
    --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.18);
    --shadow-deep: 0 30px 90px rgba(0, 0, 0, 0.32);
}


/* =========================================================
   RESET / BASE
   ========================================================= */

* {
    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.5;
    overflow-x: hidden;
}


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


a {
    color: inherit;
}


button,
input,
textarea,
select {
    font: inherit;
}


::selection {
    background: var(--accent);
    color: #000000;
}


/* =========================================================
   LAYOUT SHELL
   ========================================================= */

.shell {
    width: min(92%, var(--shell));
    margin: 0 auto;
}


/* =========================================================
   PAGE NOISE / TEXTURE
   Subtle visual texture layer.
   ========================================================= */

.page-noise {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.018;
    background-image: radial-gradient( circle at 20% 20%, rgba(255, 255, 255, 0.7) 0.5px, transparent 0.5px );
    background-size: 4px 4px;
}


/* =========================================================
   SHARED TYPOGRAPHY
   ========================================================= */

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


h1,
h2,
h3,
h4 {
    line-height: 0.98;
}


.section {
    padding: 110px 0;
    border-top: 1px solid var(--line);
}


.section-index {
    display: inline-block;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
}


/* =========================================================
   BUTTON SYSTEM
   ========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}


    .button:hover {
        transform: translateY(-3px);
    }


.button-primary {
    background: var(--accent);
    color: #101010;
}


    .button-primary:hover {
        background: var(--accent-soft);
    }


.button-ghost {
    border: 1px solid var(--line-strong);
    color: var(--cream);
    background: rgba(255, 255, 255, 0.02);
}


    .button-ghost:hover {
        border-color: rgba(255, 255, 255, 0.4);
        background: rgba(255, 255, 255, 0.05);
    }


.button-large {
    min-height: 60px;
    padding: 0 28px;
    font-size: 15px;
}


/* =========================================================
   HEADER
   ========================================================= */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(11, 13, 14, 0.86);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}


.header-inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}


/* =========================================================
   BRAND
   ========================================================= */

.brand {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    text-decoration: none;
}


.brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
}


.brand-name {
    display: flex;
    flex-direction: column;
    gap: 2px;
    color: var(--cream);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.6px;
}


    .brand-name span {
        color: var(--muted);
        font-size: 9px;
        font-weight: 700;
        letter-spacing: 1.8px;
    }


/* =========================================================
   MAIN NAVIGATION
   ========================================================= */

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}


    .main-nav a {
        position: relative;
        color: var(--cream-soft);
        text-decoration: none;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 0.3px;
    }


        .main-nav a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: -6px;
            height: 1px;
            background: var(--accent);
            transition: right 0.2s ease;
        }


        .main-nav a:hover::after {
            right: 0;
        }


.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}


    .header-cta span {
        color: var(--accent);
    }


/* =========================================================
   MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background: transparent;
    cursor: pointer;
}


    .menu-toggle span {
        display: block;
        width: 24px;
        height: 2px;
        margin: 6px auto;
        background: var(--cream);
        transition: transform 0.2s ease, opacity 0.2s ease;
    }


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


    .menu-toggle.active span:nth-child(2) {
        transform: translateY(-4px) rotate(-45deg);
    }


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient( circle at 82% 20%, rgba(255, 107, 53, 0.14), transparent 32% ), radial-gradient( circle at 20% 90%, rgba(255, 255, 255, 0.04), transparent 28% ), var(--bg);
}


    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient( to right, rgba(255, 255, 255, 0.035) 1px, transparent 1px ), linear-gradient( to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px );
        background-size: 120px 120px;
        pointer-events: none;
    }


.hero-shell {
    position: relative;
    z-index: 1;
    padding: 65px 0 60px;
}


/* =========================================================
   HERO META
   ========================================================= */

.hero-meta {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 42px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


/* =========================================================
   HERO HEADLINE
   ========================================================= */

.hero-heading-wrap {
    max-width: 1220px;
}


.hero-heading {
    margin: 0;
    font-size: clamp(44px, 5.7vw, 88px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.9;
    text-transform: uppercase;
}


.hero-line {
    display: block;
}


.hero-line-accent {
    color: var(--accent);
    margin-left: clamp(0px, 4vw, 60px);
}


/* =========================================================
   HERO BOTTOM
   ========================================================= */

.hero-bottom {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: end;
    margin-top: 42px;
}


.hero-intro {
    max-width: 640px;
}


    .hero-intro p {
        margin-bottom: 0;
        color: var(--cream-soft);
        font-size: clamp(16px, 1.3vw, 19px);
        line-height: 1.55;
    }


.hero-actions {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: wrap;
}


/* =========================================================
   HERO PROOF STRIP
   ========================================================= */

.hero-proof {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 52px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.hero-proof-item {
    padding: 24px 18px;
    border-right: 1px solid var(--line);
}


    .hero-proof-item:last-child {
        border-right: none;
    }


.proof-label {
    display: block;
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}


.hero-proof strong {
    font-size: 17px;
    font-weight: 800;
}


/* =========================================================
   TICKER
   ========================================================= */

.ticker {
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--accent);
    color: #111111;
}


.ticker-track {
    display: flex;
    align-items: center;
    gap: 26px;
    width: max-content;
    padding: 18px 0;
    animation: tickerMove 26s linear infinite;
}


    .ticker-track span {
        font-size: 14px;
        font-weight: 900;
        letter-spacing: 1.6px;
    }


    .ticker-track i {
        font-style: normal;
    }


@keyframes tickerMove {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-25%);
    }
}


/* =========================================================
   SECTION HEADER
   ========================================================= */

.section-heading {
    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}


.section-heading-main h2 {
    max-width: 1000px;
    margin-bottom: 0;
    color: var(--cream);
    font-size: clamp(34px, 4vw, 60px);
    font-weight: 900;
    letter-spacing: -2.5px;
}


    .section-heading-main h2 span {
        display: block;
        color: var(--muted);
    }


/* =========================================================
   SELECTED WORK
   ========================================================= */

.work-section {
    background: var(--bg-soft);
}


.featured-project {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 70px;
    align-items: center;
}


/* =========================================================
   PROJECT INFO
   ========================================================= */

.project-info {
    max-width: 560px;
}


.project-topline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 25px;
}


.project-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}


.project-status {
    padding: 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    color: var(--cream-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.project-category {
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.7px;
    text-transform: uppercase;
}


.project-info h3 {
    margin: 12px 0 26px;
    font-size: clamp(30px, 3.1vw, 48px);
    letter-spacing: -1.5px;
}


.project-description {
    color: var(--cream-soft);
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   PROJECT SPECS
   ========================================================= */

.project-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    margin: 34px 0;
    background: var(--line);
}


    .project-specs div {
        padding: 18px;
        background: var(--bg-soft);
    }


    .project-specs span {
        display: block;
        margin-bottom: 6px;
        color: var(--muted);
        font-size: 10px;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }


    .project-specs strong {
        font-size: 16px;
    }


.project-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cream);
    text-decoration: none;
    font-weight: 800;
}


    .project-link span {
        color: var(--accent);
    }


/* =========================================================
   PROJECT VISUAL / BROWSER MOCKUP
   ========================================================= */

.project-visual {
    perspective: 1000px;
}


.browser-frame {
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-large);
    background: #e9e5da;
    box-shadow: var(--shadow-deep);
    transform: rotateY(-3deg) rotateX(1deg);
    transition: transform 0.35s ease;
}


    .browser-frame:hover {
        transform: rotateY(0deg) rotateX(0deg) translateY(-6px);
    }


.browser-bar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 20px;
    padding: 15px 18px;
    background: #17191a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}


.browser-dots {
    display: flex;
    gap: 7px;
}


    .browser-dots span {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #6f7371;
    }


.browser-address {
    justify-self: center;
    min-width: 220px;
    padding: 7px 14px;
    background: #222526;
    border-radius: 999px;
    color: #8f9491;
    text-align: center;
    font-size: 10px;
}


/* =========================================================
   FAKE PROJECT SCREEN
   ========================================================= */

.project-screen {
    min-height: 560px;
    background: linear-gradient( rgba(14, 48, 37, 0.72), rgba(14, 48, 37, 0.72) ), linear-gradient( 135deg, #4c715a, #7f8f75 );
    color: #ffffff;
}


.project-screen-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 28px;
    background: rgba(255, 255, 255, 0.94);
    color: #173d31;
}


    .project-screen-nav strong {
        font-size: 13px;
        letter-spacing: 1.4px;
    }


    .project-screen-nav span {
        font-size: 10px;
        text-transform: uppercase;
    }


.project-screen-content {
    max-width: 520px;
    padding: 90px 55px;
}


    .project-screen-content > span {
        color: #efc28f;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }


    .project-screen-content h4 {
        margin: 16px 0;
        font-size: clamp(42px, 5vw, 68px);
        line-height: 0.95;
    }


    .project-screen-content p {
        max-width: 350px;
        color: #ececec;
        line-height: 1.6;
    }


.project-screen-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 18px;
    background: #da883f;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
}


/* =========================================================
   PROBLEM SECTION
   ========================================================= */

.problem-section {
    background: var(--cream);
    color: #111111;
}


.problem-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 100px;
    align-items: end;
}


.problem-section .section-index {
    color: var(--accent);
}


.problem-heading h2 {
    margin: 25px 0 0;
    font-size: clamp(36px, 4.2vw, 64px);
    font-weight: 900;
    letter-spacing: -3px;
}


    .problem-heading h2 span {
        display: block;
        color: #77736d;
    }


.problem-copy p {
    color: #3a3936;
    font-size: 19px;
    line-height: 1.8;
}


/* =========================================================
   OUTCOMES SECTION
   ========================================================= */

.outcomes-section {
    background: var(--bg);
}


.outcomes-list {
    border-top: 1px solid var(--line);
}


.outcome-row {
    display: grid;
    grid-template-columns: 0.2fr 0.8fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 34px 0;
    border-bottom: 1px solid var(--line);
    transition: padding-left 0.25s ease, background 0.25s ease;
}


    .outcome-row:hover {
        padding-left: 14px;
        background: rgba(255, 255, 255, 0.015);
    }


.outcome-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}


.outcome-row h3 {
    margin-bottom: 0;
    font-size: clamp(23px, 2.2vw, 32px);
}


.outcome-row p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   PROCESS SECTION
   ========================================================= */

.process-section {
    background: var(--bg-soft);
}


.process-list {
    border-top: 1px solid var(--line);
}


.process-step {
    display: grid;
    grid-template-columns: 0.2fr 0.6fr 1.2fr;
    gap: 40px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--line);
}


.process-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}


.process-title {
    font-size: clamp(19px, 1.7vw, 24px);
    font-weight: 900;
}


.process-description {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}


/* =========================================================
   PRICING SECTION
   ========================================================= */

.pricing-section {
    background: var(--cream);
    color: #111111;
}


    .pricing-section .section-index {
        color: var(--accent);
    }


    .pricing-section .section-heading-main h2 {
        color: #111111;
    }


        .pricing-section .section-heading-main h2 span {
            color: #76736d;
        }


.pricing-intro {
    max-width: 620px;
    margin: -30px 0 60px auto;
}


    .pricing-intro p {
        color: #4b4945;
        font-size: 18px;
        line-height: 1.75;
    }


/* =========================================================
   PRICING ROWS
   ========================================================= */

.pricing-list {
    border-top: 1px solid rgba(0, 0, 0, 0.15);
}


.price-row {
    position: relative;
    padding: 34px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}


.price-row-featured {
    padding: 38px 28px;
    margin: 20px 0;
    background: #111111;
    color: var(--cream);
    border-radius: var(--radius-medium);
    border-bottom: none;
}


.price-feature-label {
    position: absolute;
    top: 16px;
    right: 22px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.price-row-top {
    display: grid;
    grid-template-columns: 0.15fr 1fr auto;
    gap: 30px;
    align-items: center;
}


.price-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}


.price-name {
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
}


.price-amount {
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 900;
}


.price-row-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 26px;
}


    .price-row-body p {
        color: #4c4a46;
        font-size: 17px;
        line-height: 1.75;
    }


.price-row-featured .price-row-body p {
    color: var(--cream-soft);
}


.price-row-body ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


.price-row-body li {
    position: relative;
    padding: 8px 0 8px 24px;
    color: #393733;
}


.price-row-featured .price-row-body li {
    color: var(--cream-soft);
}


.price-row-body li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 900;
}


/* =========================================================
   CARE STRIP
   ========================================================= */

.care-strip {
    display: grid;
    grid-template-columns: 0.8fr 1fr auto;
    gap: 40px;
    align-items: center;
    margin-top: 70px;
    padding: 28px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.18);
    border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}


.care-eyebrow {
    display: block;
    margin-bottom: 7px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}


.care-strip strong {
    font-size: 25px;
}


.care-strip p {
    margin-bottom: 0;
    color: #4d4b47;
    line-height: 1.65;
}


.care-strip a {
    color: #111111;
    text-decoration: none;
    font-weight: 800;
}


/* =========================================================
   DIFFERENCE SECTION
   ========================================================= */

.difference-section {
    background: var(--bg);
}


.difference-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 100px;
}


.difference-heading h2 {
    margin: 25px 0 0;
    font-size: clamp(34px, 4vw, 58px);
    letter-spacing: -2.5px;
}


    .difference-heading h2 span {
        display: block;
        color: var(--muted);
    }


.difference-points {
    border-top: 1px solid var(--line);
}


    .difference-points article {
        display: grid;
        grid-template-columns: 0.15fr 1fr;
        gap: 24px;
        padding: 28px 0;
        border-bottom: 1px solid var(--line);
    }


        .difference-points article > span {
            color: var(--accent);
            font-size: 11px;
            font-weight: 900;
            letter-spacing: 1.5px;
        }


    .difference-points h3 {
        margin-bottom: 10px;
        font-size: 26px;
    }


    .difference-points p {
        margin-bottom: 0;
        color: var(--muted);
        line-height: 1.7;
    }


/* =========================================================
   ABOUT SECTION
   ========================================================= */

.about-section {
    background: var(--bg-soft);
}


.about-layout {
    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 60px;
}


.about-copy {
    max-width: 900px;
}


    .about-copy h2 {
        margin-bottom: 40px;
        font-size: clamp(36px, 4.3vw, 64px);
        letter-spacing: -3px;
    }


        .about-copy h2 span {
            display: block;
            color: var(--muted);
        }


.about-lead {
    color: var(--cream);
    font-size: clamp(19px, 1.7vw, 24px);
    line-height: 1.5;
}


.about-copy > p:not(.about-lead) {
    max-width: 760px;
    color: var(--cream-soft);
    font-size: 18px;
    line-height: 1.8;
}


.about-copy blockquote {
    margin: 55px 0 0;
    padding-left: 30px;
    border-left: 3px solid var(--accent);
    color: var(--cream);
    font-size: clamp(20px, 2.1vw, 28px);
    font-weight: 800;
    line-height: 1.35;
}


/* =========================================================
   FAQ
   ========================================================= */

.faq-section {
    background: var(--bg);
}


.faq-list {
    max-width: 1000px;
    margin-left: auto;
}


.faq-item {
    border-top: 1px solid var(--line);
}


    .faq-item:last-child {
        border-bottom: 1px solid var(--line);
    }


    .faq-item summary {
        position: relative;
        padding: 28px 55px 28px 0;
        list-style: none;
        cursor: pointer;
        color: var(--cream);
        font-size: clamp(17px, 1.7vw, 23px);
        font-weight: 800;
    }

        .faq-item summary::after {
            content: "+";
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            color: var(--accent);
            font-size: 28px;
        }


    .faq-item[open] summary::after {
        content: "−";
    }


.faq-answer {
    padding: 0 80px 28px 0;
}


    .faq-answer p {
        margin-bottom: 0;
        color: var(--muted);
        font-size: 17px;
        line-height: 1.75;
    }


/* =========================================================
   CONTACT SECTION
   ========================================================= */

.contact-section {
    padding: 150px 0;
    background: var(--accent);
    color: #111111;
}


.contact-layout {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 90px;
    align-items: end;
}


.contact-kicker {
    display: inline-block;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}


.contact-heading h2 {
    margin-bottom: 0;
    font-size: clamp(46px, 5vw, 78px);
    font-weight: 900;
    letter-spacing: -4px;
    line-height: 0.85;
}


    .contact-heading h2 span {
        display: block;
    }


.contact-side p {
    font-size: 19px;
    line-height: 1.7;
}


.contact-side .button-primary {
    background: #111111;
    color: var(--cream);
}


    .contact-side .button-primary:hover {
        background: #242424;
    }


.contact-note {
    display: block;
    margin-top: 15px;
    font-size: 12px;
    font-weight: 700;
}


/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
    padding: 60px 0 22px;
    background: #070809;
    border-top: 1px solid var(--line);
}


.footer-main {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 60px;
    align-items: start;
}


.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}


    .footer-brand strong {
        font-size: 14px;
        letter-spacing: 1.4px;
    }


.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 9px;
}


    .footer-nav a {
        color: var(--muted);
        text-decoration: none;
        font-size: 13px;
    }


        .footer-nav a:hover {
            color: var(--cream);
        }


.footer-location {
    display: flex;
    flex-direction: column;
    gap: 8px;
    color: var(--muted);
    text-align: right;
    font-size: 12px;
}


.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: #696d6b;
    font-size: 11px;
}


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
   1100px AND BELOW
   ========================================================= */

@media (max-width: 1100px) {

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }


    .main-nav {
        gap: 22px;
    }


    .hero-heading {
        font-size: clamp(46px, 6vw, 88px);
    }


    .featured-project {
        grid-template-columns: 1fr;
        gap: 55px;
    }


    .project-info {
        max-width: 760px;
    }


    .difference-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }


    .contact-layout {
        grid-template-columns: 1fr;
        gap: 55px;
    }
}


/* =========================================================
   TABLET / MOBILE NAV
   900px AND BELOW
   ========================================================= */

@media (max-width: 900px) {

    .header-inner {
        grid-template-columns: auto 1fr auto;
    }


    .header-cta {
        display: none;
    }


    .menu-toggle {
        display: block;
    }


    .main-nav {
        display: none;
        position: absolute;
        top: 84px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 8px 4% 18px;
        background: rgba(11, 13, 14, 0.98);
        border-bottom: 1px solid var(--line);
        backdrop-filter: blur(18px);
    }


        .main-nav.active {
            display: flex;
        }


        .main-nav a {
            padding: 16px 0;
            border-bottom: 1px solid var(--line);
        }


            .main-nav a:last-child {
                border-bottom: none;
            }


    .hero-meta {
        flex-direction: column;
        gap: 7px;
    }


    .hero-bottom {
        grid-template-columns: 1fr;
        gap: 32px;
    }


    .hero-actions {
        justify-content: flex-start;
    }


    .hero-proof {
        grid-template-columns: repeat(2, 1fr);
    }


    .hero-proof-item:nth-child(2) {
        border-right: none;
    }


    .hero-proof-item:nth-child(-n + 2) {
        border-bottom: 1px solid var(--line);
    }


    .section-heading {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    .problem-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }


    .outcome-row {
        grid-template-columns: 0.15fr 0.85fr;
        gap: 26px;
    }


        .outcome-row p {
            grid-column: 2;
        }


    .process-step {
        grid-template-columns: 0.15fr 0.85fr;
        gap: 26px;
    }


    .process-description {
        grid-column: 2;
    }


    .price-row-body {
        grid-template-columns: 1fr;
        gap: 20px;
    }


    .care-strip {
        grid-template-columns: 1fr;
        gap: 22px;
    }


    .about-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }


    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }


    .footer-location {
        text-align: left;
    }
}


/* =========================================================
   PHONE
   600px AND BELOW
   ========================================================= */

@media (max-width: 600px) {

    .shell {
        width: min(92%, 100%);
    }


    .section {
        padding: 90px 0;
    }


    .site-header {
        position: sticky;
    }


    .header-inner {
        min-height: 74px;
    }


    .main-nav {
        top: 74px;
    }


    .brand-mark {
        width: 36px;
        height: 36px;
        font-size: 12px;
    }


    .brand-name {
        font-size: 11px;
    }


    .hero {
        min-height: auto;
    }


    .hero-shell {
        padding: 65px 0 55px;
    }


    .hero-meta {
        margin-bottom: 36px;
        font-size: 9px;
    }


    .hero-heading {
        font-size: clamp(40px, 11vw, 60px);
        letter-spacing: -2px;
        line-height: 0.9;
    }


    .hero-line-accent {
        margin-left: 0;
    }


    .hero-bottom {
        margin-top: 40px;
    }


    .hero-intro p {
        font-size: 17px;
    }


    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }


    .button {
        width: 100%;
    }


    .hero-proof {
        margin-top: 50px;
        grid-template-columns: 1fr 1fr;
    }


    .hero-proof-item {
        padding: 18px 12px;
    }


    .hero-proof strong {
        font-size: 14px;
    }


    .ticker-track {
        gap: 18px;
        padding: 14px 0;
    }


        .ticker-track span {
            font-size: 11px;
        }


    .section-heading {
        margin-bottom: 50px;
    }


    .section-heading-main h2 {
        font-size: clamp(34px, 10vw, 50px);
        letter-spacing: -1.5px;
    }


    .featured-project {
        gap: 40px;
    }


    .project-info h3 {
        font-size: clamp(30px, 8.5vw, 42px);
    }


    .project-specs {
        grid-template-columns: 1fr 1fr;
    }


    .browser-frame {
        transform: none;
    }


    .project-screen {
        min-height: 430px;
    }


    .project-screen-content {
        padding: 62px 26px;
    }


        .project-screen-content h4 {
            font-size: clamp(36px, 10vw, 50px);
        }


    .problem-heading h2 {
        font-size: clamp(34px, 10vw, 52px);
        letter-spacing: -1.7px;
    }


    .problem-copy p {
        font-size: 17px;
    }


    .outcome-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px 0;
    }


        .outcome-row p {
            grid-column: auto;
        }


    .process-step {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 26px 0;
    }


    .process-description {
        grid-column: auto;
    }


    .price-row-top {
        grid-template-columns: auto 1fr;
        gap: 18px;
    }


    .price-amount {
        grid-column: 2;
        justify-self: start;
    }


    .price-row-featured {
        padding: 34px 22px;
    }


    .pricing-intro {
        margin: -15px 0 45px;
    }


    .difference-heading h2 {
        font-size: clamp(34px, 10vw, 50px);
    }


    .difference-points article {
        grid-template-columns: auto 1fr;
    }


    .about-copy h2 {
        font-size: clamp(36px, 10vw, 54px);
        letter-spacing: -1.8px;
    }


    .about-lead {
        font-size: 21px;
    }


    .about-copy blockquote {
        padding-left: 20px;
        font-size: 24px;
    }


    .faq-item summary {
        padding: 23px 45px 23px 0;
        font-size: 20px;
    }


    .faq-answer {
        padding: 0 20px 24px 0;
    }


    .contact-section {
        padding: 100px 0;
    }


    .contact-heading h2 {
        font-size: clamp(46px, 12vw, 68px);
        letter-spacing: -2.2px;
    }


    .contact-side p {
        font-size: 17px;
    }


    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
    }


    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


/* =========================================================
   FINAL POLISH / PROJECT FORM / MOTION
   Added for the finished PecksWebSolutions homepage.
   ========================================================= */


/* =========================================================
   REAL PROJECT SCREENSHOT
   Overrides the earlier fake-screen presentation.
   ========================================================= */

.project-screen-real {
    position: relative;
    min-height: 0;
    overflow: hidden;
    background: #111111;
}

    .project-screen-real img {
        display: block;
        width: 100%;
        height: auto;
        transition: transform 0.6s ease, filter 0.6s ease;
    }

.browser-frame:hover .project-screen-real img {
    transform: scale(1.025);
    filter: saturate(1.03) contrast(1.02);
}


/* =========================================================
   SMALL POLISH INTERACTIONS
   ========================================================= */

.button span,
.header-cta span,
.project-link span,
.care-strip a span {
    display: inline-block;
    transition: transform 0.22s ease;
}

.button:hover span,
.header-cta:hover span,
.project-link:hover span,
.care-strip a:hover span {
    transform: translate(3px, -2px);
}

.hero-actions .button:first-child:hover span {
    transform: translateY(3px);
}

.project-link {
    transition: color 0.2s ease, transform 0.2s ease;
}

    .project-link:hover {
        color: var(--accent);
        transform: translateX(3px);
    }


/* =========================================================
   CONTACT REASSURANCE
   ========================================================= */

.contact-reassurance {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 26px 0 30px;
}

    .contact-reassurance span {
        padding: 8px 12px;
        border: 1px solid rgba(17, 17, 17, 0.24);
        border-radius: 999px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.4px;
    }


/* =========================================================
   PROJECT FORM SECTION
   ========================================================= */

.project-form-section {
    position: relative;
    padding: 110px 0;
    overflow: hidden;
    background: radial-gradient( circle at 90% 5%, rgba(255, 107, 53, 0.045), transparent 24% ), #07090a;
    border-top: 1px solid var(--line);
}

    .project-form-section::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: linear-gradient( to right, rgba(255, 255, 255, 0.022) 1px, transparent 1px ), linear-gradient( to bottom, rgba(255, 255, 255, 0.018) 1px, transparent 1px );
        background-size: 120px 120px;
    }

    .project-form-section > .shell {
        position: relative;
        z-index: 1;
    }


/* =========================================================
   FORM HEADING
   ========================================================= */

.form-heading {
    display: grid;
    grid-template-columns: 0.35fr 1.65fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 80px;
}

.form-number {
    color: var(--accent);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.form-heading h2 {
    max-width: 900px;
    margin: 0 0 24px;
    color: var(--cream);
    font-size: clamp(36px, 4.3vw, 64px);
    font-weight: 900;
    letter-spacing: -3px;
    line-height: 0.92;
}

    .form-heading h2 span {
        display: block;
        color: var(--muted);
    }

.form-heading p {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--cream-soft);
    font-size: 18px;
    line-height: 1.75;
}


/* =========================================================
   FORM SHELL
   ========================================================= */

.project-form {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--radius-large);
    background: #0a0d0f;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.form-section {
    display: grid;
    grid-template-columns: 0.32fr 1.68fr;
    gap: 50px;
    padding: 46px 48px;
    background: #0d1113;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

    .form-section:nth-child(even) {
        background: #0f1315;
    }

    .form-section:last-of-type {
        border-bottom: none;
    }

.form-section-label span {
    display: block;
    margin-bottom: 9px;
    color: var(--accent);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
}

.form-section-label p {
    margin-bottom: 0;
    color: var(--cream);
    font-size: 14px;
    font-weight: 800;
}


/* =========================================================
   FORM GRID
   ========================================================= */

.form-grid {
    display: grid;
    gap: 26px;
}

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


/* =========================================================
   FORM FIELDS
   ========================================================= */

.form-field {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-field-wide {
    grid-column: 2;
    margin-top: 28px;
}

.form-section > .form-field-wide {
    grid-column: 2;
}

.form-field label {
    display: flex;
    align-items: baseline;
    gap: 7px;
    color: var(--cream-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

    .form-field label > span {
        color: var(--accent);
    }

    .form-field label small {
        color: var(--muted);
        font-size: 10px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius-small);
    outline: none;
    background: #151a1c;
    color: var(--cream);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-field input {
    min-height: 58px;
    padding: 0 17px;
}

.form-field textarea {
    min-height: 150px;
    padding: 16px 17px;
    resize: vertical;
    line-height: 1.6;
}

    .form-field input::placeholder,
    .form-field textarea::placeholder {
        color: rgba(255, 255, 255, 0.34);
    }

    .form-field input:hover,
    .form-field textarea:hover {
        border-color: rgba(255, 255, 255, 0.32);
    }

    .form-field input:focus,
    .form-field textarea:focus,
    .form-field select:focus {
        border-color: var(--accent);
        background: #181d1f;
        box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.10);
    }


/* =========================================================
   FIELDSETS / CHOICE GROUPS
   ========================================================= */

.form-choice-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

    .form-choice-group legend {
        margin-bottom: 18px;
        color: var(--cream);
        font-size: 18px;
        font-weight: 800;
    }


/* =========================================================
   YES / NO AND TIMELINE CHOICES
   ========================================================= */

.choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

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

.choice-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 66px;
    padding: 12px 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-small);
    background: #14191b;
    color: var(--cream-soft);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

    .choice-card:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.32);
        background: #181d1f;
        color: var(--cream);
    }

    .choice-card input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .choice-card:has(input:checked) {
        border-color: var(--accent);
        background: #221712;
        color: var(--cream);
        box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.22), 0 14px 36px rgba(0, 0, 0, 0.20);
    }

    .choice-card:has(input:focus-visible) {
        outline: 3px solid rgba(255, 107, 53, 0.25);
        outline-offset: 3px;
    }

    .choice-card span {
        font-size: 13px;
        font-weight: 900;
    }


/* =========================================================
   PACKAGE SELECTORS
   ========================================================= */

.package-choice-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.package-choice {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 22px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.20);
    border-radius: var(--radius-medium);
    background: #14191b;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

    .package-choice:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 255, 255, 0.32);
        background: #181d1f;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
    }

    .package-choice input {
        position: absolute;
        opacity: 0;
        pointer-events: none;
    }

    .package-choice:has(input:checked) {
        transform: translateY(-2px);
        border-color: var(--accent);
        background: #221712;
        box-shadow: 0 0 0 1px rgba(255, 107, 53, 0.22), 0 14px 36px rgba(0, 0, 0, 0.20);
    }

    .package-choice:has(input:focus-visible) {
        outline: 3px solid rgba(255, 107, 53, 0.25);
        outline-offset: 3px;
    }

.package-choice-name {
    margin-bottom: 9px;
    color: var(--cream-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.package-choice strong {
    margin-bottom: 12px;
    color: var(--cream);
    font-size: clamp(22px, 2.2vw, 31px);
    line-height: 1;
}

.package-choice small {
    color: var(--muted);
    font-size: 11px;
    line-height: 1.5;
}

.package-choice-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 9px;
    border-radius: 999px;
    background: var(--accent);
    color: #111111;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}


/* =========================================================
   FORM SUBMIT AREA
   ========================================================= */

.form-submit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 38px 48px;
    background: var(--accent);
    color: #111111;
}

.form-submit-copy {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .form-submit-copy strong {
        font-size: 22px;
    }

    .form-submit-copy span {
        font-size: 13px;
        font-weight: 700;
    }

.form-submit-button {
    flex-shrink: 0;
    border: 0;
    background: #111111;
    color: var(--cream);
}

    .form-submit-button:hover {
        background: #242424;
    }


/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */

[data-hero-reveal],
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

    [data-hero-reveal].is-visible,
    [data-reveal].is-visible {
        opacity: 1;
        transform: translateY(0);
    }

.project-visual[data-reveal] {
    transform: translateY(42px) scale(0.985);
}

    .project-visual[data-reveal].is-visible {
        transform: translateY(0) scale(1);
    }


/* =========================================================
   THANK-YOU PAGE
   ========================================================= */

.thank-you-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank-you-main {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 110px 0;
    background: radial-gradient( circle at 80% 15%, rgba(255, 107, 53, 0.16), transparent 30% ), var(--bg);
}

.thank-you-shell h1 {
    max-width: 1000px;
    margin: 25px 0 34px;
    color: var(--cream);
    font-size: clamp(48px, 7vw, 92px);
    font-weight: 900;
    letter-spacing: -5px;
    line-height: 0.83;
}

    .thank-you-shell h1 span {
        display: block;
        color: var(--accent);
    }

.thank-you-copy {
    max-width: 700px;
    margin-bottom: 38px;
}

    .thank-you-copy p {
        color: var(--muted);
        font-size: 18px;
        line-height: 1.75;
    }

    .thank-you-copy .thank-you-lead {
        color: var(--cream-soft);
        font-size: 23px;
    }


/* =========================================================
   TABLET FORM POLISH
   ========================================================= */

@media (max-width: 1100px) {

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

    .package-choice:last-child {
        grid-column: span 2;
    }

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


/* =========================================================
   TABLET / MOBILE FORM POLISH
   ========================================================= */

@media (max-width: 900px) {

    .project-form-section {
        padding: 100px 0;
    }

    .form-heading {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 55px;
    }

    .form-section {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 38px 30px;
    }

    .form-grid-two {
        grid-template-columns: 1fr;
    }

    .form-section > .form-field-wide,
    .form-field-wide {
        grid-column: auto;
        margin-top: 0;
    }

    .form-submit {
        align-items: flex-start;
        flex-direction: column;
        padding: 32px 30px;
    }

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

    .package-choice:last-child {
        grid-column: span 2;
    }
}


/* =========================================================
   PHONE FORM POLISH
   ========================================================= */

@media (max-width: 600px) {

    .project-form-section {
        padding: 80px 0;
    }

    .form-heading h2 {
        font-size: clamp(36px, 10vw, 54px);
        letter-spacing: -2px;
    }

    .form-heading p {
        font-size: 16px;
    }

    .project-form {
        border-radius: var(--radius-medium);
    }

    .form-section {
        padding: 30px 20px;
    }

    .form-grid-two {
        gap: 20px;
    }

    .form-field input {
        min-height: 56px;
    }

    .choice-grid,
    .timeline-grid,
    .package-choice-grid {
        grid-template-columns: 1fr;
    }

    .package-choice:last-child {
        grid-column: auto;
    }

    .package-choice {
        min-height: 150px;
    }

    .form-submit {
        padding: 28px 20px;
    }

    .form-submit-button {
        width: 100%;
    }

    .contact-reassurance {
        margin-bottom: 24px;
    }

    .thank-you-main {
        padding: 80px 0;
    }

    .thank-you-shell h1 {
        letter-spacing: -2.5px;
    }
}


/* =========================================================
   ACCESSIBILITY / REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    [data-hero-reveal],
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* =========================================================
   CUSTOM FORM VALIDATION
   ========================================================= */

.field-error {
    display: none;
    margin-top: 7px;
    color: #ff8067;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
}

    .field-error.is-visible {
        display: block;
    }

.form-field input.is-invalid,
.form-field textarea.is-invalid {
    border-color: #ff654d;
    background: #181314;
    box-shadow: 0 0 0 3px rgba(255, 101, 77, 0.10);
}

.form-field input.is-valid,
.form-field textarea.is-valid {
    border-color: rgba(255, 255, 255, 0.24);
}

/* =========================================================
   FOOTER LEGAL LINKS
   ========================================================= */

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

    .footer-legal a {
        color: inherit;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .footer-legal a:hover {
            color: var(--accent);
        }


/* =========================================================
   PRIVACY POLICY PAGE
   ========================================================= */

.privacy-main {
    min-height: 100vh;
    padding: 150px 0 120px;
    background: var(--bg);
}

.privacy-shell {
    max-width: 980px;
}

.privacy-heading {
    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
}

    .privacy-heading h1 {
        margin: 22px 0 18px;
        color: var(--cream);
        font-size: clamp(48px, 7vw, 92px);
        line-height: 0.88;
        letter-spacing: -0.06em;
    }

        .privacy-heading h1 span {
            display: block;
            color: var(--accent);
        }

.privacy-updated {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.privacy-section {
    position: relative;
    padding: 55px 0;
    border-bottom: 1px solid var(--line);
}

.privacy-number {
    display: block;
    margin-bottom: 14px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.14em;
}

.privacy-section h2 {
    margin: 0 0 22px;
    color: var(--cream);
    font-size: clamp(24px, 3vw, 36px);
    line-height: 1.05;
    letter-spacing: -0.035em;
}

.privacy-section p,
.privacy-section li {
    color: var(--cream-soft);
    font-size: 16px;
    line-height: 1.8;
}

.privacy-section p {
    max-width: 760px;
    margin: 0 0 18px;
}

.privacy-section ul {
    margin: 22px 0 26px;
    padding-left: 22px;
}

.privacy-section li {
    margin-bottom: 8px;
}

.privacy-contact .button {
    margin-top: 18px;
}


/* =========================================================
   PRIVACY PAGE - MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .privacy-main {
        padding: 115px 0 80px;
    }

    .privacy-heading {
        padding-bottom: 48px;
    }

    .privacy-section {
        padding: 42px 0;
    }

    .footer-legal {
        flex-wrap: wrap;
    }
}
