/* WHO IT'S FOR / AUDIENCE GRID */
.lp-audience {
    background: #ffffff;
    padding: 80px 0;
}
.lp-audience h2 { color: var(--text); margin-bottom: 16px; }
.lp-audience .section-sub { color: var(--text-mid); margin-bottom: 0; }
.for-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.for-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 32px;
}
.for-img img {
    width: 100%;
    display: block;
    filter: drop-shadow(0 20px 48px rgba(0,0,0,0.13));
}
.for-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px 24px;
    transition: border-color 0.25s, box-shadow 0.25s;
}
.for-card:hover {
    border-color: var(--green-mid);
    box-shadow: 0 8px 32px rgba(15,107,53,0.08);
}
.for-icon {
    width: 58px; height: 58px;
    background: var(--green-pale);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px;
}
.for-card h3 { color: var(--text); margin-bottom: 12px; font-size: 1.25rem; }
.for-card p  { color: var(--text-mid); font-size: 1rem; line-height: 1.65; }

/* FEATURES CHECKLIST */
.lp-features {
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}
.lp-features-overlay {
    position: absolute;
    inset: 0;
    background: rgba(11,24,13,0.91);
}
.lp-features .container { position: relative; z-index: 1; }
.lp-features h2       { color: var(--white); margin-bottom: 16px; }
.lp-features .section-sub { color: rgba(255,255,255,0.82); }
.lp-features .eyebrow { color: var(--green-lt); }
.included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.inc-item {
    background: var(--dark2);
    border-radius: 12px;
    padding: 26px 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.06);
}
.inc-check {
    width: 26px; height: 26px;
    min-width: 26px;
    background: var(--green-mid);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
}
.inc-check svg { display: block; }
.inc-item h4 {
    font-family: 'Krub', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--white);
}
.inc-item p { color: rgba(255,255,255,0.78); font-size: 1rem; line-height: 1.6; }

/* COMPARISON TABLE */
.lp-comparison {
    background: var(--cream);
    padding: 80px 0;
}
.lp-comparison h2 { color: var(--text); margin-bottom: 16px; text-align: center; }
.lp-comparison .section-sub { color: var(--text-mid); text-align: center; margin-left: auto; margin-right: auto; }
.compare-wrap {
    margin-top: 48px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(12,26,14,0.08);
}
.compare-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid var(--border);
}
.compare-row:last-child { border-bottom: none; }
.compare-head {
    background: var(--dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
}
.compare-head .compare-cell:first-child { color: var(--white); }
.compare-wrap--mobile { display: none; }
.compare-wrap--mobile .compare-wrap { margin-top: 0; }
.compare-wrap--mobile .compare-wrap + .compare-wrap { margin-top: 24px; }
.compare-wrap--mobile .compare-cell { border-right: none; }
.compare-cell {
    padding: 22px 26px;
    line-height: 1.55;
}
.compare-cell:first-child {
    border-right: 1px solid var(--border);
    color: var(--text-mid);
}
.compare-cell strong { color: var(--text); }

/* PRICING CARD */
.lp-pricing {
    background: var(--cream);
    padding: 80px 0;
}
.lp-pricing h2 { color: var(--text); margin-bottom: 16px; text-align: center; }
.lp-pricing .section-sub { color: var(--text-mid); margin-bottom: 40px; text-align: center; margin-left: auto; margin-right: auto; }
.pricing-card {
    max-width: 560px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 8px 48px rgba(15,107,53,0.1);
}
.pricing-top {
    background: var(--green);
    padding: 44px 40px;
    text-align: center;
}
.price-big {
    font-family: 'Inter', sans-serif;
    color: var(--white);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 4px;
}
.price-big sup { font-size: 2.2rem; vertical-align: super; line-height: 0; }
.price-mo      { color: rgba(255,255,255,0.6); font-size: 1.1rem; }
.price-zero {
    margin-top: 20px;
    display: block;
    font-family: 'Krub', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.01em;
}
.pricing-body { padding: 40px; }
.p-features { list-style: none; margin-bottom: 32px; }
.p-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-size: 1.05rem;
}
.p-features li:last-child { border-bottom: none; }
.pf-dot {
    width: 22px; height: 22px;
    min-width: 22px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
}
.pricing-fine { color: var(--text-mid); font-size: 1rem; text-align: center; margin-top: 14px; }

/* PROCESS STEPS */
.lp-steps {
    background: #ffffff;
    padding: 80px 0;
}
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
    position: relative;
}
.steps-wrap::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(12.5% + 14px);
    right: calc(12.5% + 14px);
    height: 2px;
    background: var(--cream3);
    z-index: 0;
}
.step { position: relative; z-index: 1; }
.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--green-mid);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 26px;
}
.step h3 { margin-bottom: 14px; }
.step p   { color: var(--text-mid); line-height: 1.7; }

/* PORTFOLIO GRID */
.lp-portfolio {
    background: #fafafa;
    padding: 80px 0;
}
.work-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 56px;
}
.work-head-text h2 { color: var(--text); margin-bottom: 12px; }
.work-head-text p  { color: var(--text-mid); max-width: 440px; font-size: 1.05rem; }
.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.work-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.work-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.work-thumb {
    background: #ece9e3;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 220px;
    overflow: hidden;
}
.work-thumb img { display: block; width: 100%; height: auto; object-fit: contain; }
.work-body { padding: 24px; }
.work-body h3 { color: var(--text); margin-bottom: 10px; font-size: 1.2rem; }
.work-body p  { color: var(--text-mid); font-size: 1rem; line-height: 1.65; margin-bottom: 18px; }
.work-link {
    display: inline-flex;
    padding: 8px 18px;
    border-radius: 999px;
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s;
}
.work-link:hover { border-color: var(--green-mid); background: var(--green-pale); }

/* TESTIMONIALS */
.lp-testimonials {
    background: #ffffff;
    padding: 80px 0;
}
.tm-header { text-align: center; margin-bottom: 48px; }
.tm-header h2 { color: var(--text); margin-bottom: 18px; }
.tm-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 8px 20px;
}
.tm-stars { display: flex; gap: 2px; line-height: 0; }
.tm-rating-text { font-size: 0.95rem; color: var(--text-mid); font-weight: 600; }
.tm-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.tm-card {
    background: var(--cream);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid rgba(0,0,0,0.06);
    display: flex;
    flex-direction: column;
}
.tm-card-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.tm-quote {
    color: var(--text);
    font-size: 1.02rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
}
.tm-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 18px;
}
.tm-author-initial {
    width: 40px; height: 40px;
    min-width: 40px;
    background: var(--green-mid);
    color: var(--white);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1rem;
}
.tm-author-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.tm-author-role { font-size: 0.88rem; color: var(--text-mid); }

/* CTA + FORM */
.lp-cta {
    background: var(--dark2);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.lp-cta::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -80px;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(58,138,98,0.12) 0%, transparent 65%);
    pointer-events: none;
}
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: start;
    position: relative;
}
.cta-left h2 { color: var(--white); margin-bottom: 18px; }
.cta-left p  { color: rgba(255,255,255,0.82); font-size: 1.1rem; margin-bottom: 40px; line-height: 1.7; }
.phone-block { display: flex; align-items: center; gap: 16px; }
.phone-circle {
    width: 52px; height: 52px;
    background: rgba(58,138,98,0.2);
    border: 1px solid rgba(116,198,157,0.25);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.phone-label { color: rgba(255,255,255,0.38); font-size: 1rem; margin-bottom: 3px; }
.phone-num {
    color: var(--white);
    font-size: 1.45rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.2s;
}
.phone-num:hover { color: var(--green-lt); }
.form-card {
    background: var(--white);
    border-radius: 18px;
    padding: 44px;
}
.form-card h3 { font-size: 1.5rem; margin-bottom: 6px; }
.form-tagline { color: var(--text-mid); font-size: 1rem; margin-bottom: 30px; }
.form-iframe {
    width: 100%;
    min-height: 630px;
    border: none;
}
.form-card .gform_wrapper .gform_button,
.form-card .gform_wrapper .gform_next_button,
.form-card .gform_wrapper .gform_previous_button,
.form-card .gform_wrapper input[type="submit"].gform_button,
.form-card .gform_wrapper input[type="button"].gform_next_button,
.form-card .gform_wrapper input[type="button"].gform_previous_button {
    display: block;
    width: 100%;
    padding: 16px 32px !important;
    background: var(--orange) !important;
    color: var(--white) !important;
    font-family: 'Krub', sans-serif !important;
    font-weight: 700;
    font-size: 1.1rem !important;
    border-radius: 7px !important;
    border: none !important;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    margin-top: 8px;
}
.form-card .gform_wrapper .gform_button:hover,
.form-card .gform_wrapper .gform_next_button:hover,
.form-card .gform_wrapper .gform_previous_button:hover,
.form-card .gform_wrapper input[type="submit"].gform_button:hover,
.form-card .gform_wrapper input[type="button"].gform_next_button:hover,
.form-card .gform_wrapper input[type="button"].gform_previous_button:hover {
    background: var(--orange-hover) !important;
    transform: translateY(-1px);
}

/* FOOTER */
footer {
    background: var(--dark);
    padding: 36px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo { margin-bottom: 10px; }
.footer-logo img,
.footer-logo span {
    height: 28px;
    width: auto;
    display: inline-block;
    opacity: 0.9;
}
.footer-logo span {
    color: rgba(255,255,255,0.6);
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 28px;
}
footer p { color: rgba(255,255,255,0.28); font-size: 1rem; }
.footer-links { margin-top: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.85); }

/* THANK YOU PAGE */
.thank-you-section {
    background: var(--cream);
    padding: 180px 0 120px;
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.thank-you-icon {
    width: 80px; height: 80px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 28px;
}
.thank-you-section h1 { margin-bottom: 16px; }
.thank-you-section p { color: var(--text-mid); font-size: 1.15rem; max-width: 520px; margin: 0 auto; }

/* INTERIOR HERO */
.interior-hero {
    position: relative;
    background: var(--cream);
    padding: 134px 0 60px;
    overflow: hidden;
}
.interior-hero-inner { max-width: 760px; }
.interior-hero .eyebrow { margin-bottom: 14px; }
.interior-hero-title {
    color: var(--text);
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    margin-bottom: 16px;
}
.interior-hero-sub {
    color: var(--text-mid);
    font-size: 1.15rem;
    max-width: 620px;
}
/* Image variant: dark overlay + light text */
.interior-hero--image {
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
}
.interior-hero--image .interior-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(12,26,14,0.92) 0%, rgba(15,69,35,0.86) 60%, rgba(12,26,14,0.82) 100%);
}
.interior-hero--image .container { position: relative; z-index: 1; }
.interior-hero--image .interior-hero-title { color: var(--white); }
.interior-hero--image .interior-hero-sub { color: rgba(255,255,255,0.84); }

/* TEXT BLOCK */
.text-block { padding: 56px 0 80px; background: var(--cream); }
.text-block-inner { max-width: 760px; color: var(--text); }
.text-block-inner h2 {
    font-size: clamp(1.5rem, 2.6vw, 1.9rem);
    margin: 40px 0 14px;
}
.text-block-inner h3 {
    margin: 30px 0 10px;
}
.text-block-inner h2:first-child,
.text-block-inner h3:first-child { margin-top: 0; }
.text-block-inner p { margin-bottom: 18px; line-height: 1.7; }
.text-block-inner ul,
.text-block-inner ol { margin: 0 0 18px 1.25rem; }
.text-block-inner li { margin-bottom: 8px; line-height: 1.65; }
.text-block-inner a { color: var(--green); text-decoration: underline; }
.text-block-inner a:hover { color: var(--green-mid); }
.text-block-inner strong { color: var(--text); }

/* STICKY MOBILE CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 190;
    padding: 12px 20px calc(12px + env(safe-area-inset-bottom, 0px));
    background: var(--dark);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.35s ease;
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta-btn {
    display: block;
    width: 100%;
    padding: 15px 24px;
    background: var(--orange);
    color: var(--white);
    font-family: 'Krub', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 7px;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
}
.sticky-cta-btn:hover { background: var(--orange-hover); }
@media (max-width: 960px) {
    .sticky-cta { display: block; }
}

/* RESPONSIVE — BELOW-FOLD */
@media (max-width: 960px) {
    .interior-hero { padding: 116px 0 44px; }
    .interior-hero--image { padding: 104px 0 60px; }
    .text-block { padding: 44px 0 60px; }
    .for-layout   { grid-template-columns: 1fr; gap: 40px; }
    .for-grid     { grid-template-columns: repeat(2, 1fr); }
    .for-img      { display: block; margin-top: 32px; }
    .included-grid { grid-template-columns: repeat(2, 1fr); }
    .steps-wrap   { grid-template-columns: 1fr; gap: 40px; }
    .steps-wrap::before { display: none; }
    .cta-grid     { grid-template-columns: 1fr; gap: 48px; }
    .work-grid    { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
    .work-head    { flex-direction: column; gap: 20px; }
    .compare-wrap--mobile { display: none !important; }
    .tm-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
}
@media (max-width: 640px) {
    .for-grid     { grid-template-columns: 1fr; }
    .included-grid { grid-template-columns: 1fr; }
    .form-card    { padding: 32px 24px; }
    .pricing-top  { padding: 36px 28px; }
    .pricing-body { padding: 32px 28px; }
    .lp-pain-points, .lp-audience, .lp-features, .lp-comparison, .lp-pricing, .lp-steps, .lp-testimonials, .lp-cta { padding: 56px 0; }
    .compare-cell { padding: 16px 14px; font-size: 0.94rem; }
    .compare-head { font-size: 1rem; }
}
@media (max-width: 768px) {
    .form-iframe { min-height: 650px; }
}
