/* ═══════════════════════════════════════
   SETTLE SOUTH — Serene Shore Palette
   ═══════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2C4A52;
    background: #FAF7F2;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ─── CSS VARIABLES ─── */
:root {
    --ocean: #5BA4B5;
    --ocean-dark: #4D8E9C;
    --driftwood: #2C4A52;
    --shell: #FAF7F2;
    --sand: #C8A96E;
    --horizon: #E4EEF0;
    --muted: #7A8E94;
    --body: #444444;
    --white: #FFFFFF;
    --nav-height: 110px;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--driftwood);
    font-weight: 600;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1.25; margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
p { color: var(--body); font-size: 1.05rem; }
.subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--muted);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 500;
}
.accent-text {
    color: var(--ocean);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* ─── LAYOUT ─── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}
section {
    padding: 5rem 0;
}
.section-divider {
    width: 60px;
    height: 2px;
    background: var(--sand);
    margin: 1.2rem 0;
}
.section-divider--center {
    margin: 1.2rem auto;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn--primary {
    background: var(--ocean);
    color: var(--white);
}
.btn--primary:hover {
    background: var(--ocean-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 164, 181, 0.3);
}
.btn--outline {
    background: transparent;
    color: var(--driftwood);
    border: 1.5px solid var(--driftwood);
}
.btn--outline:hover {
    background: var(--driftwood);
    color: var(--white);
}
.btn--sand {
    background: var(--sand);
    color: var(--white);
}
.btn--sand:hover {
    background: #b89a5e;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════ */
.site-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    transition: box-shadow 0.3s;
}
.site-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
}
.site-logo img,
.site-nav .site-logo img,
.site-nav .custom-logo,
.custom-logo-link img,
.custom-logo-link .custom-logo {
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
}
.custom-logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.nav-links a {
    color: var(--driftwood);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover,
.nav-links a.current-menu-item {
    color: var(--ocean);
}
.nav-cta {
    background: var(--ocean);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
}
.nav-cta:hover {
    background: var(--ocean-dark);
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--driftwood);
    margin: 5px 0;
    transition: 0.3s;
}
.mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--shell);
    padding: 1.5rem 2rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
    text-align: center;
}
.mobile-nav.active {
    display: block;
}
.mobile-nav a {
    display: block;
    padding: 0.9rem 0;
    color: var(--driftwood);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--horizon);
}
.mobile-nav a:last-child {
    border-bottom: none;
}
.mobile-nav a:hover {
    color: var(--ocean);
}
.mobile-nav a.nav-cta {
    background: var(--ocean);
    color: var(--white) !important;
    margin: 1rem auto 0;
    padding: 0.8rem 2rem;
    display: inline-block;
    border-bottom: none;
    letter-spacing: 1.5px;
}

/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-tagline {
    font-size: 1.15rem;
    color: var(--body);
    margin: 1.5rem 0;
    max-width: 440px;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.hero-image {
    position: relative;
}
.hero-image img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: 8px;
}
.hero-accent {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 200px;
    height: 200px;
    background: var(--horizon);
    border-radius: 50%;
    opacity: 0.5;
    z-index: 0;
}

/* ═══════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════ */
.trust-bar {
    background: var(--white);
    padding: 2rem 0;
    border-top: 1px solid var(--horizon);
    border-bottom: 1px solid var(--horizon);
}
.trust-bar .container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}
.trust-item {
    text-align: center;
}
.trust-item .number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--ocean);
    font-weight: 700;
}
.trust-item .label {
    font-size: 0.8rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════
   ABOUT INTRO
   ═══════════════════════════════════════ */
.about-intro {
    background: var(--white);
}
.about-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-intro img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 8px;
}

/* ═══════════════════════════════════════
   SERVICES / HOW IT WORKS
   ═══════════════════════════════════════ */
.services-section {
    background: var(--shell);
}
.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.services-header p {
    max-width: 600px;
    margin: 0 auto;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}
.step-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ocean);
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(91, 164, 181, 0.12);
}
.step-number {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--horizon);
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.step-icon {
    width: 50px;
    height: 50px;
    background: var(--ocean);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.step-icon svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--white);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.step-card h3 {
    font-size: 1.1rem;
}
.step-card p {
    font-size: 0.9rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════
   WHO WE SERVE / AUDIENCES
   ═══════════════════════════════════════ */
.audiences {
    background: var(--white);
}
.audiences-header {
    text-align: center;
    margin-bottom: 3rem;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}
.audience-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    background: var(--shell);
}
.audience-card:hover {
    transform: translateY(-6px);
}
.audience-card .card-image {
    height: 180px;
    overflow: hidden;
    border-bottom: 3px solid var(--ocean);
}
.audience-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.audience-card .card-body {
    padding: 1.5rem;
}
.audience-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}
.audience-card p {
    font-size: 0.88rem;
    color: var(--muted);
}

/* ═══════════════════════════════════════
   THE DIFFERENCE
   ═══════════════════════════════════════ */
.difference {
    background: var(--shell);
}
.difference-header {
    text-align: center;
    margin-bottom: 3rem;
}
.diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.diff-col {
    border-radius: 8px;
    padding: 2.5rem;
}
.diff-col img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 1.2rem;
}
.diff-col--diy {
    background: var(--horizon);
}
.diff-col--ss {
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--ocean);
}
.diff-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}
.diff-col--diy h3 {
    color: #AA6666;
}
.diff-col--ss h3 {
    color: var(--ocean);
}
.diff-list li {
    padding: 0.6rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}
.diff-list li + li {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.diff-icon {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}
.diff-col--diy .diff-icon {
    color: #CC7777;
}
.diff-col--ss .diff-icon {
    color: var(--ocean);
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
    background: var(--white);
}
.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}
.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.price-card {
    border-radius: 8px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: transform 0.3s;
}
.price-card:hover {
    transform: translateY(-6px);
}
.price-card--premium {
    background: var(--shell);
    border: 1px solid var(--horizon);
}
.price-card--elite {
    background: var(--ocean);
    color: var(--white);
    box-shadow: 0 12px 40px rgba(91, 164, 181, 0.2);
}
.price-card--elite h3,
.price-card--elite p,
.price-card--elite .price-amount {
    color: var(--white);
}
.price-card--elite .subtitle {
    color: var(--horizon);
}
.price-tier {
    font-size: 0.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--ocean);
    font-weight: 600;
}
.price-card--elite .price-tier {
    color: var(--sand);
}
.price-name {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--muted);
    margin: 0.3rem 0;
}
.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--driftwood);
    font-weight: 700;
    margin: 1rem 0;
}
.price-features {
    text-align: left;
    margin: 1.5rem 0;
}
.price-features li {
    padding: 0.45rem 0;
    font-size: 0.9rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.price-features li::before {
    content: '\2713';
    color: var(--ocean);
    font-weight: 600;
    flex-shrink: 0;
}
.price-card--elite .price-features li::before {
    color: var(--sand);
}
.price-note {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 1rem;
}
.price-card--elite .price-note {
    color: var(--horizon);
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
    background: var(--shell);
}
.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--white);
    border-radius: 8px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-top: 3px solid var(--ocean);
}
.testimonial-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--driftwood);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.testimonial-quote::before {
    content: '\201C';
    font-size: 3rem;
    color: var(--ocean);
    display: block;
    line-height: 0.5;
    margin-bottom: 0.5rem;
}
.testimonial-author {
    font-weight: 600;
    color: var(--ocean);
    font-size: 0.9rem;
}
.testimonial-location {
    color: var(--muted);
    font-size: 0.85rem;
}
.testimonials-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--muted);
    font-size: 0.9rem;
}

/* ═══════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════ */
.cta-section {
    background: var(--driftwood);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section h2 {
    color: var(--white);
}
.cta-section p {
    color: var(--horizon);
    max-width: 550px;
    margin: 0 auto;
}
.cta-section .section-divider {
    background: var(--sand);
    margin: 1.2rem auto;
}
.cta-section .btn {
    margin-top: 2rem;
}
.cta-url {
    color: var(--sand);
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-top: 1rem;
    font-style: italic;
}
.cta-accent {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(91, 164, 181, 0.15);
}
.cta-accent--1 {
    top: -100px;
    left: -100px;
}
.cta-accent--2 {
    bottom: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.site-footer {
    background: var(--driftwood);
    padding: 3rem 0 2rem;
    border-top: 3px solid var(--ocean);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand img {
    height: 70px !important;
    max-height: 70px !important;
    width: auto !important;
    margin-bottom: 1rem;
    filter: brightness(2.5);
}
.footer-brand p {
    color: var(--muted);
    font-size: 0.85rem;
}
.footer-col h4 {
    color: var(--horizon);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}
.footer-col a {
    display: block;
    color: var(--muted);
    font-size: 0.9rem;
    padding: 0.3rem 0;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--ocean);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-bottom p {
    color: var(--muted);
    font-size: 0.8rem;
}

/* ═══════════════════════════════════════
   INNER PAGE HERO
   ═══════════════════════════════════════ */
.page-hero {
    padding: 8rem 0 3rem;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--horizon);
}
.page-hero h1 {
    margin-bottom: 0.5rem;
}
.page-hero p {
    max-width: 600px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════ */
.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid var(--horizon);
}
.service-detail:nth-child(even) {
    direction: rtl;
}
.service-detail:nth-child(even) > * {
    direction: ltr;
}
.service-detail:last-child {
    border-bottom: none;
}
.service-num {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--horizon);
    font-weight: 700;
    line-height: 1;
}
.service-img {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 8px;
    object-fit: cover;
}
.service-features li {
    padding: 0.4rem 0;
    font-size: 0.95rem;
    color: var(--body);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.service-features li::before {
    content: '\2713';
    color: var(--ocean);
    font-weight: 600;
    flex-shrink: 0;
}
.services-cta {
    background: var(--driftwood);
    text-align: center;
    padding: 4rem 0;
}
.services-cta h2 {
    color: var(--white);
}
.services-cta p {
    color: var(--horizon);
    max-width: 500px;
    margin: 0 auto;
}
.services-cta .section-divider {
    background: var(--sand);
    margin: 1.2rem auto;
}

/* ═══════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════ */
.about-story {
    background: var(--white);
}
.about-story .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-story img {
    width: 100%;
    border-radius: 8px;
}
.values-section {
    background: var(--shell);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.value-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-top: 3px solid var(--ocean);
    text-align: center;
}
.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* ═══════════════════════════════════════
   GET STARTED / CONTACT PAGE
   ═══════════════════════════════════════ */
.form-section {
    background: var(--shell);
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid var(--ocean);
}
.form-group {
    margin-bottom: 1.8rem;
}
.form-group label {
    display: block;
    font-weight: 600;
    color: var(--driftwood);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1.5px solid var(--horizon);
    border-radius: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--driftwood);
    background: var(--shell);
    transition: border-color 0.3s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ocean);
}
.form-group textarea {
    min-height: 120px;
    resize: vertical;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.form-note {
    font-size: 0.85rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
    margin-top: 1.5rem;
}

/* Gravity Forms overrides */
.gform_wrapper .gfield_label {
    font-weight: 600 !important;
    color: var(--driftwood) !important;
    font-size: 0.9rem !important;
    font-family: 'Inter', sans-serif !important;
}
.gform_wrapper input:not([type="submit"]),
.gform_wrapper select,
.gform_wrapper textarea {
    border: 1.5px solid var(--horizon) !important;
    border-radius: 4px !important;
    font-family: 'Inter', sans-serif !important;
    background: var(--shell) !important;
    color: var(--driftwood) !important;
    padding: 0.9rem 1rem !important;
}
.gform_wrapper input:focus,
.gform_wrapper select:focus,
.gform_wrapper textarea:focus {
    border-color: var(--ocean) !important;
    outline: none !important;
}
.gform_wrapper .gform_button,
.gform_wrapper input[type="submit"] {
    background: var(--ocean) !important;
    color: var(--white) !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    padding: 1rem 2.5rem !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}
.gform_wrapper .gform_button:hover,
.gform_wrapper input[type="submit"]:hover {
    background: var(--ocean-dark) !important;
    transform: translateY(-2px);
}

/* ═══════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
    align-items: start;
}
.contact-info {
    padding: 2rem 0;
}

/* ═══════════════════════════════════════
   GENERIC PAGE CONTENT
   ═══════════════════════════════════════ */
.page-content {
    padding: 4rem 0;
}
.page-content .container {
    max-width: 800px;
}
.page-content p {
    margin-bottom: 1.5rem;
}
.page-content h2 {
    margin-top: 2rem;
}
.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style: disc;
}
.page-content li {
    margin-bottom: 0.5rem;
    color: var(--body);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-tagline {
        margin: 1.5rem auto;
    }
    .hero-cta {
        justify-content: center;
    }
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    .about-intro .container,
    .about-story .container {
        grid-template-columns: 1fr;
    }
    .steps-grid {
        grid-template-columns: 1fr 1fr;
    }
    .diff-grid {
        grid-template-columns: 1fr;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .service-detail,
    .service-detail:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .nav-links {
        display: none;
    }
    .site-nav {
        height: var(--nav-height);
    }
    .site-nav .container {
        padding: 0 1rem;
    }
    .mobile-menu-toggle {
        display: block;
    }
    .custom-logo-link img,
    .site-logo img {
        height: 70px !important;
        max-height: 70px !important;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-brand img {
        margin: 0 auto 1rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .about-founder .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: 1fr;
    }
    section {
        padding: 3.5rem 0;
    }
}
