:root {
    --orange: #f5620f;
    --orange-dark: #d8500a;
    --dark: #121210;
    --dark2: #191917;
    --dark3: #242421;
    --gray-light: #f7f7f5;
    --text-dark: #161614;
    --text-muted: #6d6d68;
    --border-light: #e6e6e2;
    --white: #ffffff;
    --radius: 8px;
    --max-width: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Segoe UI", Arial, Helvetica, sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
.center { text-align: center; }

.section-title {
    text-align: center;
    font-size: 1.5rem;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: .4px;
    margin: 0 0 22px;
}
.section-title::after {
    content: "";
    display: block;
    width: 52px; height: 3px;
    background: var(--orange);
    margin: 10px auto 0;
}
.section-title.light { color: var(--white); }
section { padding: 26px 0; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: 800;
    font-size: .78rem;
    letter-spacing: .6px;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    transition: background .15s ease, color .15s ease, transform .15s ease;
}
.btn-solid { background: var(--orange); border-color: var(--orange); color: var(--white); }
.btn-solid:hover { background: var(--orange-dark); border-color: var(--orange-dark); }
.btn-white { background: var(--white); border-color: var(--white); color: var(--text-dark); }
.btn-white:hover { background: #ececea; border-color: #ececea; }
/* Orange outline + orange text — used on dark sections and the plain price cards */
.btn-ghost { background: transparent; border-color: var(--orange); color: var(--orange); }
.btn-ghost:hover { background: var(--orange); color: var(--white); }
.btn-outline { background: var(--white); border-color: var(--orange); color: var(--text-dark); }
.btn-outline:hover { background: var(--orange); color: var(--white); }
.btn-block { display: block; width: 100%; }
.chev { font-weight: 400; margin-left: 4px; }

/* ---------- Hero: full-bleed photo, header sits on top of it ---------- */
.hero-wrap {
    position: relative;
    background-color: var(--dark);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}
.hero-wrap::before {
    content: "";
    position: absolute; inset: 0;
    background: linear-gradient(97deg,
        rgba(10,10,9,.96) 0%,
        rgba(10,10,9,.90) 30%,
        rgba(10,10,9,.55) 48%,
        rgba(10,10,9,.14) 62%,
        rgba(10,10,9,.04) 100%);
}
.hero-wrap.no-photo::before { background: rgba(18,18,16,.96); }
.hero-wrap > * { position: relative; z-index: 2; }

.site-header { padding: 22px 0; }
.site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.logo { display: flex; flex-direction: column; line-height: 1.05; color: var(--white); }
.logo strong { font-size: 1.32rem; font-weight: 800; letter-spacing: .5px; }
.logo strong span { color: var(--orange); }
.logo small { font-size: .55rem; letter-spacing: 3.2px; color: #b3b3ad; margin-top: 3px; }
.main-nav ul { display: flex; gap: 26px; }
.main-nav a {
    font-size: .72rem; font-weight: 700; letter-spacing: 1px;
    color: var(--white); text-transform: uppercase;
}
.main-nav a:hover { color: var(--orange); }
.header-cta { padding: 12px 22px; font-size: .72rem; }
.nav-toggle {
    display: none; background: none; border: 0;
    font-size: 1.7rem; color: var(--white); cursor: pointer; line-height: 1;
}

.hero { padding: 38px 0 46px; }
.hero-text { max-width: 620px; }
.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.5px;
    margin: 0;
    color: var(--white);
    text-transform: uppercase;
}
.hero-text h1 .accent { color: var(--orange); display: block; }
.hero-text p {
    color: #ddddd8;
    font-size: 1.02rem;
    margin: 22px 0 32px;
    max-width: 460px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 46px; }

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 150px));
    gap: 24px;
}
.hero-stat { text-align: center; }
.hero-stat .icon { color: var(--orange); display: block; margin: 0 auto 12px; width: 34px; }
.hero-stat .value {
    display: block; color: var(--white);
    font-size: 1.5rem; font-weight: 800; letter-spacing: -.3px;
}
.hero-stat .label { display: block; color: #a9a9a3; font-size: .74rem; margin-top: 3px; }

@media (max-width: 980px) {
    .main-nav {
        position: absolute; top: 100%; left: 0; right: 0;
        background: rgba(12,12,10,.98); display: none; z-index: 30;
    }
    .main-nav.open { display: block; }
    .main-nav ul { flex-direction: column; padding: 18px 28px; gap: 16px; }
    .nav-toggle { display: block; }
    .header-cta { display: none; }
    .site-header .container { position: relative; }
    .hero-text h1 { font-size: 2.1rem; }
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
    .hero-stat { text-align: left; }
    .hero-stat .icon { margin-left: 0; }
}

/* ---------- Why ---------- */
.why { background: var(--white); }
.why-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.why-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 30px 13px 26px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
    transition: transform .15s ease, box-shadow .15s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0,0,0,.09); }
.why-card .icon { color: var(--orange); display: flex; justify-content: center; margin-bottom: 18px; }
.why-card h3 {
    font-size: .74rem; font-weight: 800; margin: 0 0 11px;
    letter-spacing: .2px; line-height: 1.45; text-transform: uppercase;
}
.why-card p { font-size: .72rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

@media (max-width: 1100px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .why-grid { grid-template-columns: 1fr; } }

/* ---------- Transformations ---------- */
.transformations { background: var(--dark); }
.tr-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 22px; }
.tr-card {
    background: var(--dark2);
    border: 1px solid #2b2b27;
    border-radius: var(--radius);
    padding-bottom: 4px;
}
.tr-photo { position: relative; }
.tr-photo img {
    width: 100%; aspect-ratio: 7/5; object-fit: cover;
    border-radius: var(--radius) var(--radius) 0 0;
    background: var(--dark3);
}
.tr-badge {
    position: absolute; top: -12px; right: -10px;
    width: 52px; height: 52px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    font-weight: 800; font-size: .72rem;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 10px rgba(0,0,0,.35);
}
.tr-body { padding: 14px 15px 13px; }
.tr-body h4 {
    margin: 0 0 5px; font-size: .88rem; font-weight: 800;
    color: var(--white); text-transform: uppercase; letter-spacing: .3px;
}
.tr-body .duration { color: var(--orange); font-size: .76rem; font-weight: 700; margin-bottom: 9px; }
.tr-body p { color: #a8a8a2; font-size: .77rem; margin: 0; line-height: 1.5; }

@media (max-width: 950px) { .tr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .tr-grid { grid-template-columns: 1fr; } }

/* ---------- Process ---------- */
.process { background: var(--gray-light); }
.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; position: relative; }
.process-grid::before {
    content: "";
    position: absolute;
    top: 34px; left: 10%; right: 10%;
    height: 2px; background: var(--orange);
    z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.process-step .icon-wrap {
    position: relative;
    width: 68px; height: 68px; border-radius: 50%;
    background: var(--dark); color: var(--white);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
}
.process-step .step-no {
    position: absolute; bottom: -9px; left: 50%; transform: translateX(-50%);
    width: 19px; height: 19px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    font-size: .6rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}
.process-step h4 {
    font-size: .78rem; font-weight: 800; margin: 0 0 7px;
    letter-spacing: .3px; text-transform: uppercase;
}
.process-step p { font-size: .74rem; color: var(--text-muted); margin: 0; padding: 0 4px; line-height: 1.5; }

@media (max-width: 950px) {
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 12px; }
    .process-grid::before { display: none; }
}

/* ---------- About ---------- */
.about { background: var(--dark); padding: 0; }
.about-grid { display: grid; grid-template-columns: 1fr 1.5fr; align-items: stretch; }
/* The photo is absolutely positioned so it crops to the text column's height
   instead of its own aspect ratio dictating how tall the whole band gets. */
.about-photo { position: relative; background: var(--dark3); min-height: 300px; }
.about-photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about-content { padding: 32px 38px 32px 50px; max-width: 740px; color: var(--white); }
.about-content h2 {
    font-size: 1.5rem; font-weight: 800; margin: 0;
    letter-spacing: .5px; text-transform: uppercase;
}
.about-content h2::after {
    content: ""; display: block; width: 46px; height: 3px;
    background: var(--orange); margin: 11px 0 16px;
}
.about-content > p { color: #b0b0aa; margin: 0 0 16px; font-size: .84rem; line-height: 1.6; }
/* Column-major so the list reads top-to-bottom in each column, as in the design */
.checklist {
    display: grid;
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    grid-auto-columns: 1fr;
    gap: 8px 28px;
    margin-bottom: 18px;
}
.checklist li { display: flex; align-items: center; gap: 11px; font-size: .82rem; }
.checklist li::before {
    content: "✓";
    flex-shrink: 0;
    width: 19px; height: 19px; border-radius: 50%;
    background: var(--orange); color: var(--white);
    font-size: .6rem; font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

@media (max-width: 950px) {
    .about-grid { grid-template-columns: 1fr; }
    .about-photo img { min-height: 320px; }
    .about-content { padding: 48px 28px; max-width: none; }
    .checklist { grid-auto-flow: row; grid-template-rows: none; grid-auto-columns: auto; }
}

/* ---------- Pricing ---------- */
.pricing { background: var(--white); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.price-card.featured { box-shadow: 0 14px 34px rgba(245,98,15,.16); }
/* Full-width bar across the top of the card, per the design */
.price-badge {
    background: var(--orange); color: var(--white);
    font-size: .62rem; font-weight: 800; letter-spacing: 1px;
    text-align: center; padding: 9px 10px;
    text-transform: uppercase;
}
.price-body { padding: 18px 20px 20px; text-align: center; }
.price-card .icon { color: var(--text-dark); display: flex; justify-content: center; margin-bottom: 11px; }
.price-card.featured .icon { color: var(--orange); }
.price-card h3 {
    font-size: .83rem; font-weight: 800; margin: 0 0 10px;
    letter-spacing: .4px; text-transform: uppercase;
}
.price-card .price { font-size: 2.05rem; font-weight: 800; margin: 0; letter-spacing: -.5px; }
.price-rule { position: relative; height: 1px; background: var(--border-light); margin: 12px 0; }
.price-rule span {
    position: absolute; left: 50%; top: 0; transform: translateX(-50%);
    width: 52px; height: 2px; margin-top: -.5px; background: var(--text-dark);
}
.price-card .subtitle {
    color: var(--text-muted); font-size: .8rem;
    margin: 0 0 14px; white-space: pre-line; line-height: 1.5;
}
.price-card .btn { min-width: 190px; }

@media (max-width: 950px) { .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--dark); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 20px; }
.testi-card {
    background: var(--dark2);
    border: 1px solid #2b2b27;
    border-radius: var(--radius);
    padding: 18px 20px;
    text-align: center;
}
.testi-card .stars { color: var(--orange); font-size: .95rem; margin-bottom: 10px; letter-spacing: 4px; }
.testi-card p { color: #cfcfc9; font-style: italic; margin: 0 0 11px; font-size: .81rem; line-height: 1.55; }
.testi-card .name { color: var(--white); font-size: .82rem; }

@media (max-width: 950px) { .testi-grid { grid-template-columns: 1fr; } }

/* ---------- Contact: info + form on the left half, map bleeds to the right edge ---------- */
.contact { background: var(--gray-light); padding: 0; }
.contact-grid { display: grid; grid-template-columns: 1.18fr 1fr; align-items: stretch; }
.contact-left {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 34px;
    padding: 38px 40px 38px max(28px, calc((100vw - var(--max-width)) / 2 + 28px));
}
.contact-info h2 {
    font-size: 1.28rem; font-weight: 800; margin: 0 0 20px;
    letter-spacing: .4px; text-transform: uppercase;
}
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; font-size: .81rem; }
.contact-item .ci-icon {
    flex-shrink: 0;
    width: 26px; height: 26px; border-radius: 6px;
    background: var(--orange); color: var(--white);
    display: flex; align-items: center; justify-content: center;
}
.contact-form { display: grid; gap: 11px; }
.contact-form input, .contact-form textarea {
    width: 100%; padding: 13px 15px;
    border: 1px solid var(--border-light); border-radius: 4px;
    font-family: inherit; font-size: .84rem; background: var(--white);
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #a2a29c; }
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--orange); outline-offset: -2px; }
.contact-form textarea { min-height: 92px; resize: vertical; }
.hp-field { position: absolute; left: -9999px; }
.form-sent { color: #17762f; font-weight: 700; font-size: .9rem; }

.map-block { position: relative; background: #e9e9e5; min-height: 330px; }
.map-block iframe { width: 100%; height: 100%; min-height: 330px; border: 0; display: block; }
.map-placeholder {
    display: flex; align-items: center; justify-content: center;
    height: 100%; min-height: 330px; color: var(--text-muted); font-size: .82rem; padding: 20px;
    text-align: center;
}
.map-box {
    position: absolute; right: 28px; top: 50%; transform: translateY(-50%);
    width: 250px;
    background: var(--dark); color: var(--white);
    border-radius: var(--radius); padding: 22px 20px;
    box-shadow: 0 8px 28px rgba(0,0,0,.28);
}
.map-box strong {
    display: block; font-size: .82rem; font-weight: 800;
    letter-spacing: .6px; text-transform: uppercase;
}
.map-box strong::after {
    content: ""; display: block; width: 34px; height: 2px;
    background: var(--orange); margin: 10px 0 12px;
}
.map-box p { margin: 0 0 16px; font-size: .8rem; color: #c4c4be; line-height: 1.55; }
.map-box .btn { font-size: .7rem; padding: 11px 14px; }

@media (max-width: 1100px) {
    .contact-grid { grid-template-columns: 1fr; }
    .contact-left { padding: 56px 28px; }
    .map-block { min-height: 340px; }
    .map-block iframe, .map-placeholder { min-height: 340px; }
}
@media (max-width: 700px) {
    .contact-left { grid-template-columns: 1fr; gap: 34px; }
    .map-box { position: static; transform: none; width: auto; margin: 16px; }
}

/* ---------- Footer ---------- */
.site-footer { background: #0c0c0b; color: #83837d; padding: 16px 0; font-size: .74rem; }
.site-footer .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.site-footer a:hover { color: var(--orange); }
