
@import url('https://fonts.googleapis.com/css2?family=Lilita+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Telegraph&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap');

/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Penguin Aesthetic Color Scheme */
    --primary-color: #81BCE9;        /* Baby Blue */
    --primary-dark: #6EA0C6;         /* Darker Baby Blue */
    --primary-light: #B0D7F4;        /* Lighter Baby Blue */
    --secondary-color: #FFD93D;      /* Yellow accent */
    --secondary-dark: #FFC107;       /* Darker Yellow */
    --text-dark: #000000;            /* Refined dark text */
    --text-light: #6b7280;
    --bg-dark: #1e293b;              /* Dark slate for hero sections */
    --bg-dark-alt: #334155;          /* Alternate dark background */
    --bg-light: #f8fafc;             /* Light grey-blue */
    --bg-white: #ffffff;             /* Pure white for cards */
    --body-bg: #f1f5f9;              /* Body background - light grey-blue */
    --border-color: #c8e8f4;         /* Light blue border */
    --gradient-1: linear-gradient(135deg, #81BCE9 0%, #6EA0C6 100%);
    --gradient-2: linear-gradient(135deg, #FFD93D 0%, #FFC107 100%);
    --gradient-accent: linear-gradient(135deg, #81BCE9 0%, #FFD93D 100%);
    --gradient-dark: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    --shadow-sm: 0 1px 3px 0 rgba(129, 188, 233, 0.15);
    --shadow-md: 0 4px 8px -1px rgba(129, 188, 233, 0.25);
    --shadow-lg: 0 10px 20px -3px rgba(129, 188, 233, 0.3);
    --shadow-xl: 0 20px 30px -5px rgba(129, 188, 233, 0.35);
}

body {
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Lilita One', cursive !important;
        font-weight: 400;
    }

    /* Slightly increase heading sizes for Lilita One */
    h1, h2, h3, h4, h5, h6 {
        font-family: 'Lilita One', cursive !important;
        font-weight: 400;
    }
    h1 {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    h2 {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    h3 {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    h4 {
        font-size: 1.25rem;
        line-height: 1.25;
    }
    h5 {
        font-size: 1.1rem;
        line-height: 1.3;
    }
    h6 {
        font-size: 1rem;
        line-height: 1.3;
    }

    body, p, li, label, input, textarea, select, .contact-subtitle, .about-feature-card p, .about-skill-card ul, .about-personal-content p, .process-step-description, .process-highlight-content p, .faq-accordion-content p, .footer-section p, .footer-bottom p {
        font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
        font-weight: 700;
    }
    color: var(--text-dark);
    background: #fdf8f0;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}


.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
header {
    background: #fdf8f0;
    color: var(--text-dark);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 80px;
}

.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
    transition: opacity 0.2s ease;
}

.header-logo img {
    height: 58px;
    width: auto;
    display: block;
}

.header-logo:hover {
    opacity: 0.8;
}

.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-cta {
    flex: 0 0 auto;
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-color: var(--primary-color) !important;
    border-radius: 14px !important;
}

.header-cta:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Form page header (design.html) */
.header-wrapper--form {
    justify-content: space-between;
    position: relative;
}

.header-exit {
    flex: 0 0 auto;
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    text-decoration: none;
    padding: 0.875rem 2.25rem;
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
    font-family: 'Rubik', Arial, sans-serif;
    transition: all 0.2s;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.header-exit:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.header-logo--center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.header-form-spacer {
    flex: 0 0 auto;
    width: 60px;
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

nav a.active,
nav a:hover {
    color: var(--primary-color);
}

nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .header-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .header-nav.active {
        max-height: 400px;
    }

    .header-nav ul {
        flex-direction: column;
        padding: 1rem 0;
        gap: 0;
    }

    .header-nav li {
        padding: 0.5rem 20px;
    }

    .header-logo img {
        height: 46px;
    }
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Rubik', Arial, sans-serif;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0.875rem 2.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: white;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #000000;
    color: white;
    border-color: #000000;
    transform: translateY(-1px);
}

.btn-primary-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
}

/* ===================================
   ROUNDED CONTAINER LAYOUT STYLES
   =================================== */

/* Header - Clean and Simple */

/* Hero Split Layout */
.hero-split {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-content {
    flex: 0 0 45%;
    padding-right: 2rem;
    text-align: left;
}

.hero-image {
    flex: 0 0 55%;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    max-height: 600px;
}

/* Rounded White Section (for content below hero) */
.rounded-section {
    background: white;
    border-radius: 40px;
    max-width: calc(100% - 2rem);
    margin: -80px 1rem 3rem;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    text-align: center;
}

.rounded-section.first-section {
    margin-top: -80px;
}

.rounded-section.regular-section {
    margin: 3rem 1rem;
}

.rounded-section h2 {
    color: #000000;
    margin-bottom: 1.5rem;
}

.rounded-section p {
    color: #000000;
}

/* Content alignment within sections */
.about-intro,
.why-choose,
.skills-section,
.personal-touch,
.process-step-wrapper,
.faq-grid,
.contact-layout {
    text-align: left;
}

.pricing-columns,
.pricing-note {
    text-align: center;
}

/* Ensure two-column content stays left-aligned */
.two-column-section .column-content * {
    text-align: left;
}

/* Remove orange button - use primary black instead */

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

/* ── Card hero (homepage) ── */
.hero-card-section {
    padding: 1.5rem 0;
    background: #fdf8f0;
}

.hero-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
}

.hero-card-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    gap: 1.5rem;
}

.hero-card-overlay h1 {
    font-family: 'Lilita One', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-shadow: 0 2px 8px rgba(255,255,255,0.85);
    margin: 0;
}

@media (max-width: 1024px) {
    .portfolio-strip-section { padding: 1.25rem 0; }
}

@media (max-width: 968px) {
    .hero-card { height: 420px; }
    .hero-card-overlay h1 { font-size: 3rem; }
}

@media (max-width: 640px) {
    .hero-card-section { padding: 1rem 0; }
    .portfolio-strip-section { padding: 0.75rem 0; }
    .hero-card { height: 360px; border-radius: 14px; }
    .hero-card-overlay h1 { font-size: 2.25rem; }
}

@media (max-width: 480px) {
    .hero-card { height: 260px; border-radius: 12px; }
    .hero-card-overlay h1 { font-size: 1.75rem; }
}

/* ── Page hero card variant (shorter height, h1 + subtitle) ── */
.hero-card--page {
    height: 280px;
}

.hero-card--page .hero-card-overlay {
    gap: 0.75rem;
}

.hero-card--page .hero-card-overlay h1 {
    font-size: 3rem;
}

.hero-card--page .hero-card-overlay p {
    font-size: 1.0625rem;
    color: #000000;
    text-shadow: 0 2px 8px rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 640px;
}

@media (max-width: 968px) {
    .hero-card--page { height: 240px; }
    .hero-card--page .hero-card-overlay h1 { font-size: 2.25rem; }
}

@media (max-width: 640px) {
    .hero-card--page { height: 200px; }
    .hero-card--page .hero-card-overlay h1 { font-size: 1.875rem; }
    .hero-card--page .hero-card-overlay p { font-size: 0.9375rem; }
}

/* Full-width hero */
.hero-fullwidth {
    height: 476px;
    background: #fdf8f0;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    z-index: 2;
    width: 100%;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-overlay h1 {
    font-family: 'Lilita One', cursive;
    font-size: 4.81rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-shadow: none;
}

.hero-eyebrow {
    font-size: 1.05rem;
    font-weight: 700;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    color: #000000;
    margin-bottom: 0.6rem;
    letter-spacing: 0.02em;
    text-shadow: none;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #000000;
    margin-bottom: 2.5rem;
    font-weight: 700;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    text-shadow: none;
}

.hero-tagline {
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    font-size: 2.75rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 700;
    line-height: 1.15;
    text-align: left;
}

.hero-tagline em {
    font-style: italic;
    font-weight: 700;
}

.btn-hero {
    display: inline-block;
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.875rem 2.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
}

.btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.hero-overlay .btn-hero {
    background: var(--primary-color);
    color: #ffffff;
    padding: 0.875rem 2.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.hero-overlay .btn-hero:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Section Divider */
.section-divider {
    border: none;
    border-top: 1px solid #d1d5db;
    margin: 0;
}

/* ===================================
   PORTFOLIO STRIP
   =================================== */
.portfolio-strip-section {
    padding: 2.25rem 0;
    background: #fdf8f0;
    position: relative;
}

.portfolio-strip-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: calc(1280px - 4rem);
    height: 1px;
    background: #d1d5db;
}

.portfolio-strip {
    --strip-edge: max(2rem, calc((100% - 1280px) / 2 + 2rem));
    overflow: hidden;
    padding: 1.5rem 2rem 1.5rem;
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0px,
        transparent var(--strip-edge),
        rgba(0,0,0,0.35) calc(var(--strip-edge) + 2px),
        rgba(0,0,0,0.7) calc(var(--strip-edge) + 6px),
        black calc(var(--strip-edge) + 12px),
        black calc(100% - var(--strip-edge) - 12px),
        rgba(0,0,0,0.7) calc(100% - var(--strip-edge) - 6px),
        rgba(0,0,0,0.35) calc(100% - var(--strip-edge) - 2px),
        transparent calc(100% - var(--strip-edge)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0px,
        transparent var(--strip-edge),
        rgba(0,0,0,0.35) calc(var(--strip-edge) + 2px),
        rgba(0,0,0,0.7) calc(var(--strip-edge) + 6px),
        black calc(var(--strip-edge) + 12px),
        black calc(100% - var(--strip-edge) - 12px),
        rgba(0,0,0,0.7) calc(100% - var(--strip-edge) - 6px),
        rgba(0,0,0,0.35) calc(100% - var(--strip-edge) - 2px),
        transparent calc(100% - var(--strip-edge)),
        transparent 100%
    );
}

.portfolio-strip-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: portfolio-scroll 40s linear infinite;
}

.portfolio-strip:hover .portfolio-strip-track {
    animation-play-state: paused;
}

.portfolio-card {
    flex: 0 0 300px;
    background: var(--bg-white);
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
}

.portfolio-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

@keyframes portfolio-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .portfolio-strip {
        padding: 1.25rem 1.5rem 2.5rem;
        -webkit-mask-image: linear-gradient(
            to right,
            transparent 0px,
            transparent 24px,
            rgba(0,0,0,0.35) 26px,
            rgba(0,0,0,0.7) 30px,
            black 36px,
            black calc(100% - 36px),
            rgba(0,0,0,0.7) calc(100% - 30px),
            rgba(0,0,0,0.35) calc(100% - 26px),
            transparent calc(100% - 24px),
            transparent 100%
        );
        mask-image: linear-gradient(
            to right,
            transparent 0px,
            transparent 24px,
            rgba(0,0,0,0.35) 26px,
            rgba(0,0,0,0.7) 30px,
            black 36px,
            black calc(100% - 36px),
            rgba(0,0,0,0.7) calc(100% - 30px),
            rgba(0,0,0,0.35) calc(100% - 26px),
            transparent calc(100% - 24px),
            transparent 100%
        );
    }

    .portfolio-card {
        flex: 0 0 78vw;
    }

    .portfolio-strip-track {
        gap: 1.25rem;
    }

    .portfolio-card img {
        width: 100%;
        height: 180px;
    }
}

/* ===================================
   PROCESS HIGHLIGHT
   =================================== */
.process-highlight-section {
    padding: 6rem 0;
    background: #fdf8f0;
    position: relative;
}

.process-highlight-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: calc(1280px - 4rem);
    height: 1px;
    background: #d1d5db;
}

.process-highlight-section .container {
    padding: 0 2rem;
}

.process-highlight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

.process-highlight-reversed .process-highlight-grid {
    grid-template-columns: 1fr 1fr;
}

.process-highlight-content h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    line-height: 1.15;
    margin: 0 0 1.6rem;
    text-align: left;
}

.process-highlight-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 3rem 3.5rem;
}

/* Text-left rows (Build Website, About Us): align text to container left edge */
.process-highlight-section:not(.process-highlight-reversed) .process-highlight-content {
    padding-left: 0;
}

.process-highlight-content .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #000000;
    text-align: left;
    margin-bottom: 0.35rem;
}

.process-highlight-content p {
    font-size: 1rem;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: left;
}

.process-highlight-content .btn-hero {
    margin-top: 1.5rem;
    align-self: flex-start;
    background: var(--primary-color);
    color: white;
    padding: 0.875rem 2.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
}

.process-highlight-content .btn-hero:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.process-highlight-image {
    min-height: 380px;
    border-radius: 16px;
    overflow: hidden;
}

.process-highlight-image img {
    width: 100%;
    height: 100%;
    min-height: 380px;
    object-fit: cover;
    box-shadow: none;
    display: block;
}


@media (max-width: 968px) {
    .process-highlight-grid {
        grid-template-columns: 1fr;
    }

    .process-highlight-reversed .process-highlight-grid {
        grid-template-columns: 1fr;
    }

    .process-highlight-reversed .process-highlight-image {
        order: 2;
    }

    .process-highlight-reversed .process-highlight-content {
        order: 1;
    }

    /* Align image and text to the same left edge on mobile */
    .process-highlight-content {
        padding: 2rem 1.5rem;
    }

    .process-highlight-image {
        padding: 0 1.5rem;
    }

    .process-highlight-image img {
        height: 380px;
    }
}

/* ===================================
   PROCESS PAGE STEP SECTIONS
   =================================== */
.process-step-section {
    padding: 4rem 0;
    background: #fdf8f0;
    border-top: none;
    position: relative;
}

.process-step-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: calc(1280px - 4rem);
    height: 1px;
    background: #d1d5db;
}

.process-step-header {
    text-align: center;
    margin-bottom: 3rem;
}

.process-step-number {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 0.5rem;
}

.process-step-title {
    font-family: 'Lilita One', cursive !important;
    font-size: 3.2rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.35rem;
    line-height: 1.08;
    letter-spacing: -0.01em;
}
}

.process-step-description {
    font-size: 1.125rem;
    color: #000000;
    margin: 0 auto;
    max-width: 800px;
    line-height: 1.6;
}

.process-step-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.process-step-content .process-highlight-grid {
    max-width: 100%;
}

/* Match home page: remove left padding so text aligns to container edge */
.process-step-content .process-highlight-content {
    padding-left: 0;
}

.process-step-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.process-step-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #000000;
    line-height: 1.7;
}

.process-step-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.process-step-content ul li strong {
    color: #000000;
    font-weight: 600;
}

.process-step-content .process-note {
    background: #e8f4fb;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    font-size: 1rem;
    color: #000000;
}

.process-step-content .process-note strong {
    color: #000000;
}

.process-step-content .process-note a {
    color: var(--primary-color);
    text-decoration: underline;
}

.process-step-content .process-note a:hover {
    color: var(--primary-dark);
}

/* Pricing boxes for process Step 2 */
.process-pricing-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-box {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    text-align: left;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pricing-box:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pricing-box.featured {
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    background: white;
}

.pricing-box-top {
    margin-bottom: 1.5rem;
}

.pricing-box-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.pricing-box h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-align: left;
}

.pricing-box .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.pricing-box .price-period {
    font-size: 1rem;
    font-weight: 700;
    color: #6b7280;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
}

.pricing-box .price-original {
    font-size: 1.1rem;
    color: #9ca3af;
    text-decoration: line-through;
    margin-bottom: 0.25rem;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    visibility: hidden;
    margin-top: auto;
}

.pricing-box .plan-summary {
    font-size: 1.00625rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: left;
}

.pricing-box .btn-hero {
    width: 100%;
    text-align: center;
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 10px;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pricing-box .btn-hero:hover {
    background: var(--primary-dark);
    color: white;
}

.popular-badge-inline {
    background: #dff0f8;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    flex-shrink: 0;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
}

@media (max-width: 968px) {
    .process-pricing-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* ===================================
   PROCESS TIMELINE (Step 3)
   =================================== */
.process-timeline {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem 2rem;
}

.process-timeline-steps {
    display: flex;
    align-items: flex-start;
    position: relative;
}

.process-timeline-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(36px + 2rem);
    right: calc(36px + 2rem);
    border-top: 2px dashed #a0aec0;
    z-index: 0;
}

.process-timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-timeline-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.process-timeline-chevron {
    display: none;
}

.process-timeline-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.process-timeline-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.4rem;
}

.process-timeline-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
    max-width: 150px;
}

@media (max-width: 640px) {
    .process-timeline-steps {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .process-timeline-steps::before { display: none; }
    .process-timeline-chevron { display: none; }
}

/* Plan Comparison Table */
.plan-comparison-table {
    width: 100%;
    overflow-x: auto;
    margin: 2rem 0;
}

.plan-comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.plan-comparison-table thead {
    background: linear-gradient(135deg, #3d4f6b 0%, #2c3e54 100%);
    color: white;
}

.plan-comparison-table th {
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.125rem;
    position: relative;
}

.plan-comparison-table th.feature-column {
    text-align: left;
    background: #2c3e54;
}

.plan-comparison-table th.featured-plan {
    background: var(--gradient-1);
}

.plan-comparison-table .plan-price {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    margin-top: 0.5rem;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
}

.plan-comparison-table .popular-badge-small {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.plan-comparison-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
}

.plan-comparison-table tbody tr:last-child {
    border-bottom: none;
}

.plan-comparison-table tbody tr:hover {
    background: #f9fafb;
}

.plan-comparison-table td {
    padding: 1.25rem 1rem;
    text-align: center;
}

.plan-comparison-table td.feature-name {
    text-align: left;
    font-weight: 500;
    color: #000000;
    font-size: 0.95rem;
}

.plan-comparison-table .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #10b981;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
}

.plan-comparison-table .cross {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #9ca3af;
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
}

.plan-comparison-table .text-cell {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.9rem;
}

.plan-comparison-table .cta-row td {
    padding: 1.5rem 1rem;
    background: #f9fafb;
}

.plan-comparison-table .btn-sm {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

@media (max-width: 968px) {
    .plan-comparison-table {
        font-size: 0.875rem;
    }

    .plan-comparison-table th,
    .plan-comparison-table td {
        padding: 1rem 0.5rem;
    }

    .plan-comparison-table th {
        font-size: 0.95rem;
    }

    .plan-comparison-table .plan-price {
        font-size: 1.25rem;
    }

    .plan-comparison-table td.feature-name {
        font-size: 0.85rem;
    }

    .plan-comparison-table .check,
    .plan-comparison-table .cross {
        width: 24px;
        height: 24px;
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    .process-step-number {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .process-step-title {
        font-size: 2rem;
    }

    .process-step-description {
        font-size: 1rem;
    }

    .process-step-content {
        padding: 0 1.5rem;
    }

    .process-timeline {
        padding: 0 1.5rem 2rem;
    }
}

/* Full-Width Feature Sections */
.feature-fullwidth {
    min-height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
}

.feature-content {
    max-width: 700px;
    color: white;
}

.feature-content .section-label {
    color: rgba(255, 255, 255, 0.9);
}

.feature-content h2 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
}

.feature-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Two-Column Layouts */
.two-column-section {
    background: #ffffff;
    padding: 6rem 0;
}

.two-column-section:nth-of-type(even) {
    background: #f9fafb;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.two-column-section.reverse .two-column-grid {
    direction: rtl;
}

.two-column-section.reverse .column-content {
    direction: ltr;
}

.column-image {
    border-radius: 12px;
    overflow: hidden;
}

.column-image img {
    width: 100%;
    height: auto;
    display: block;
}

.column-content {
    text-align: left;
}

.column-content .section-label {
    text-align: left;
}

.column-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-align: left;
}

.column-content p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: left;
}

.column-content .btn-text {
    justify-content: flex-start;
}


.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-buttons {
        flex-direction: column;
    }
}

/* ===================================
   PAGE HERO
   =================================== */
.page-hero {
    background: #fdf8f0;
    color: var(--text-dark);
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 2rem;
}

.page-hero .container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #000000;
    font-weight: 700;
    font-family: 'Lilita One', cursive;
    text-shadow: none;
}

.page-hero p {
    font-size: 1.125rem;
    color: #000000;
    text-shadow: none;
}

/* Process page hero — light bg, dark text */
.process-page-hero {
    background: #fdf8f0;
}

.process-page-hero h1 {
    font-family: 'Lilita One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
    line-height: 1.15;
    text-shadow: none;
}

.process-page-hero p {
    font-size: 1.125rem;
    color: #000000;
    text-shadow: none;
}

/* ===================================
   PRICING PAGE HERO
   =================================== */
.pricing-page-hero {
    background: #f9fafb;
    color: var(--text-dark);
    padding: 6rem 0;
    text-align: left;
    position: relative;
}

.pricing-page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    font-family: 'Lilita One', cursive;
    text-shadow: none;
}

.pricing-page-hero p {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: none;
}

.step-number-badge {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    border: 3px solid var(--text-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 1.5rem;
    color: white;
    box-shadow: none;
    backdrop-filter: none;
}

.order-hero .step-number-badge {
    background: var(--text-dark);
    border: 3px solid var(--text-dark);
}

/* ===================================
   SECTIONS
   =================================== */
section {
    text-align: center;
    color: var(--text-dark);
    background: #ffffff;
    padding: 6rem 0;
}

section:nth-child(even) {
    background: #f9fafb;
}

/* Hero overrides section:nth-child specificity */
section.hero-fullwidth {
    background: #fdf8f0;
    padding: 0;
}

/* Page hero overrides section:nth-child specificity */
section.page-hero {
    background: #fdf8f0;
    padding: 0;
}

/* Hero card section overrides section:nth-child specificity */
section.hero-card-section {
    background: #fdf8f0;
}

/* Portfolio strip overrides section:nth-child specificity */
section.portfolio-strip-section {
    background: #fdf8f0;
}

/* Vision section overrides section:nth-child specificity */
section.vision-section {
    background: #fdf8f0;
    padding: 6rem 2rem;
}

/* Feature rows override section:nth-child specificity */
section.process-highlight-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

/* Process page hero overrides section:nth-child specificity */
section.process-page-hero {
    background: #fdf8f0;
}

/* Process step sections override section:nth-child specificity */
section.process-step-section {
    background: #fdf8f0;
}

/* FAQ + Contact sections override section:nth-child specificity */
section.faq-section {
    background: #fdf8f0;
}

section.contact-section {
    background: #fdf8f0;
}

/* Sections override section:nth-child specificity */
section.quote-testimonial-section,
section.cta-banner-section,
section.three-col-steps-section,
section.pricing-cards-section,
section.about-intro-section,
section.about-milestones-section,
section.about-cta-strip-section {
    background: #fdf8f0;
}

section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #000000;
}

/* Section labels - all caps, smaller, tracked out */
.section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 0.5rem;
    display: block;
}

section h3,
section p {
    text-align: center;
}

section ul,
section ol,
.pricing-features,
.checklist,
.timeline,
.features-checklist,
.contact-form,
.form-group {
    text-align: left;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    color: #000000;
}

/* ===================================
   FEATURES GRID
   =================================== */
.what-i-do {
    background: #ffffff;
    color: var(--text-dark);
}

.what-i-do h2 {
    color: #000000;
}

.what-i-do .section-intro {
    color: #000000;
}

/* Services Grid */
.services-grid-section {
    background: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    text-align: center;
}

.service-image {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1rem;
    background: #f3f4f6;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.service-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.btn-text {
    color: #000000;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.btn-text:hover {
    color: #000000;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #000000;
}

.feature p {
    color: #000000;
}

/* ===================================
   PORTFOLIO CAROUSEL
   =================================== */
.portfolio-carousel-section {
    overflow: hidden;
    padding: 0;
}

.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    padding: 1rem 0;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    will-change: transform;
}

.carousel-card {
    flex: 0 0 350px;
    min-width: 350px;
}

.carousel-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(129, 188, 233, 0.2);
}

.carousel-arrow:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.35);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

@media (max-width: 768px) {
    .carousel-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}

/* ===================================
   PORTFOLIO PREVIEW (KEPT FOR BACKWARDS COMPATIBILITY)
   =================================== */
.portfolio-preview {
    background: var(--bg-white);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-card {
    background: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.3);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-type {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.portfolio-info h3 {
    margin-bottom: 0.5rem;
}

.portfolio-info p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* ===================================
   PROCESS STEPS
   =================================== */
.how-it-works {
    /* Background removed - now using rounded-section */
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-sm);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step h3 {
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--text-light);
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    text-align: center;
    background: #f9fafb;
    padding: 6rem 0;
}

.cta-section h2 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 3rem;
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
}

/* ===================================
   FOOTER
   =================================== */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: rgba(255, 255, 255, 0.9);
    padding: 6rem 0 2rem;
    position: relative;
    margin-top: 0;
}

footer::before {
    display: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--primary-light);
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===================================
   PROCESS PAGE - DETAILED
   =================================== */
.process-detailed {
    /* Padding removed - now using rounded-section */
}

.process-step-wrapper {
    margin-bottom: 6rem;
}

.step-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.step-intro .step-number-large {
    margin: 0 auto 1.5rem;
}

.step-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.step-intro .step-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.125rem;
    color: var(--text-light);
}

.process-step-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.process-step-detailed.reverse {
    direction: rtl;
}

.process-step-detailed.reverse .step-content {
    direction: ltr;
}

.process-step-detailed.full-width {
    grid-template-columns: 1fr;
    max-width: 100%;
}

.process-step-detailed.full-width .step-content {
    max-width: 100%;
    padding: 0;
}

.step-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.step-number-large {
    width: 80px;
    height: 80px;
    background: var(--text-dark);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: none;
    border: 3px solid var(--text-dark);
}

.step-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: left;
}

.step-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.checklist,
.timeline {
    list-style: none;
    margin: 1.5rem 0;
}

.checklist li,
.timeline li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

.checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 0 1px 2px rgba(255, 193, 7, 0.3);
}

.timeline li {
    border-left: 2px solid var(--primary-color);
    padding-left: 2rem;
    margin-left: 1rem;
}

.timeline li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 1rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-color);
}

.process-note {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: 0.5rem;
    margin-top: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.3);
}

@media (max-width: 968px) {
    .process-step-detailed,
    .process-step-detailed.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .step-content {
        padding: 0;
    }
}

/* ===================================
   PRICING COLUMNS (MAIN PRICING PAGE)
   =================================== */
.pricing-columns-section {
    padding: 6rem 0;
    background: #ffffff;
}

.pricing-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.pricing-column {
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.3);
    border-color: var(--primary-color);
}

.pricing-column.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: scale(1.05);
    background: #ffffff;
}

.pricing-column.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 32px rgba(129, 188, 233, 0.4);
}

.pricing-column h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.choose-plan-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
}

.pricing-note {
    text-align: center;
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 0.5rem;
}

.pricing-note p {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.pricing-note p:last-child {
    margin-bottom: 0;
}

.pricing-note a {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 968px) {
    .pricing-columns {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-column.featured {
        transform: scale(1);
    }
    
    .pricing-column.featured:hover {
        transform: translateY(-5px);
    }
}

/* ===================================
   PRICING CARDS (FOR PROCESS PAGE)
   =================================== */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
    width: 100%;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.15);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.3);
    border-color: var(--primary-color);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    border-width: 3px;
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.35);
    transform: scale(1.02);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fb 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 12px 32px rgba(129, 188, 233, 0.4);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-cta {
    margin: 0 auto 1.5rem;
    width: 100%;
}

.pricing-includes {
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

.pricing-features li:last-child {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}

.cta-inline {
    text-align: center;
    margin-top: 1.5rem;
}

.popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.35rem 1.25rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 217, 61, 0.4);
    border: 2px solid white;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.pricing-card ul {
    list-style: none;
    text-align: left;
}

.pricing-card li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section,
.faq-quick {
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(129, 188, 233, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.25);
}

.faq-item h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.faq-item p {
    color: var(--text-light);
}



/* ===================================
   ABOUT PAGE
   =================================== */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
    }
}

.why-choose {
    margin: 4rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.why-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--text-light);
}

.skills-section {
    background: var(--bg-light);
    padding: 3rem 2rem;
    border-radius: 0.5rem;
    margin: 4rem 0;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.skill-category h3 {
    margin-bottom: 1rem;
    text-align: left;
}

.skill-category ul {
    list-style: none;
}

.skill-category li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.skill-category li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.personal-touch {
    margin: 4rem 0;
}

.personal-touch h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.personal-touch p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

@media (max-width: 968px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-method h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-method p,
.contact-method a {
    color: var(--text-light);
    font-size: 0.9375rem;
}

.availability,
.quick-start {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    margin: 2rem 0;
}

.availability h3,
.quick-start h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

.availability p,
.quick-start p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-form-wrapper {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(129, 188, 233, 0.1);
}

.form-note {
    font-size: 0.875rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 1rem;
}

/* ===================================
   ORDER PAGE - SWIPE INTERFACE
   =================================== */
.order-hero {
    background: #f9fafb;
    color: var(--text-dark);
    padding: 6rem 0;
    text-align: left;
}

.order-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    font-family: 'Lilita One', cursive;
    text-shadow: none;
}

.order-hero p {
    font-size: 1.25rem;
    color: #ffffff;
    text-shadow: none;
}

.swipe-section {
    padding: 6rem 0;
    min-height: 70vh;
}

.progress-container {
    margin-bottom: 3rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: var(--bg-light);
    border-radius: 1rem;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    width: 16.66%;
}

.progress-text {
    text-align: center;
    margin-top: 0.5rem;
    color: var(--text-light);
    font-weight: 600;
}

.swipe-container {
    position: relative;
    min-height: 600px;
}

.swipe-card {
    display: none;
    animation: fadeIn 0.3s ease;
}

.swipe-card.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swipe-card h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.step-description {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.swipe-deck {
    position: relative;
    margin: 2rem auto;
    max-width: 600px;
}

.swipe-option {
    display: none;
    background: var(--bg-white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.swipe-option.active {
    display: block;
}

.swipe-option:hover {
    transform: translateY(-5px);
}

.option-visual {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.swipe-option h3 {
    text-align: center;
    padding: 1rem 2rem 0.5rem;
    font-size: 1.5rem;
}

.swipe-option p {
    text-align: center;
    padding: 0 2rem 2rem;
    color: var(--text-light);
}

.style-preview {
    width: 200px;
    height: 150px;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.preview-box {
    width: 100%;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

.preview-text {
    width: 100%;
    height: 15px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 0.25rem;
}

.preview-text.short {
    width: 60%;
}

.preview-box.skew {
    transform: skewX(-5deg);
}

.layout-preview {
    width: 200px;
    height: 150px;
    background: white;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.layout-preview.single .section {
    width: 100%;
    height: 30px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

.layout-preview.multi {
    flex-direction: row;
    gap: 0.5rem;
}

.layout-preview.multi .page {
    flex: 1;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

.layout-preview.grid {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.grid-item {
    width: calc(50% - 0.25rem);
    height: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
}

.layout-preview.asymmetric {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.asym-item {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    height: 60px;
}

.asym-item.large {
    width: 100%;
}

.asym-item:not(.large) {
    width: calc(50% - 0.25rem);
}

.color-palette {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.color-swatch {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
}

.swipe-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 2rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.swipe-btn {
    padding: 0.75rem 1.5rem;
    background: var(--bg-light);
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swipe-btn:hover {
    background: var(--primary-color);
    color: white;
}

.swipe-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: var(--primary-color);
}

.select-btn,
.submit-btn {
    display: block;
    margin: 2rem auto;
    padding: 1rem 3rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-btn:hover,
.submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.features-checklist {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.feature-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feature-checkbox:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 30px;
    height: 30px;
    border: 2px solid var(--border-color);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: transparent;
    transition: all 0.3s ease;
}

.feature-checkbox input[type="checkbox"]:checked ~ .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.feature-info {
    flex: 1;
}

.feature-info h4 {
    margin-bottom: 0.25rem;
}

.feature-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

.request-section {
    max-width: 700px;
    margin: 0 auto;
}

.request-section textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    resize: vertical;
}

.request-section textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.plan-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.plan-card {
    position: relative;
    cursor: pointer;
}

.plan-card input[type="radio"] {
    display: none;
}

.plan-content {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.plan-card input[type="radio"]:checked ~ .plan-content {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-lg);
}

.plan-card.popular .plan-content {
    border-color: var(--primary-color);
}

.plan-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.plan-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.final-info {
    max-width: 700px;
    margin: 3rem auto 2rem;
}

.final-info h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.selection-summary {
    max-width: 700px;
    margin: 2rem auto;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 0.5rem;
}

.selection-summary h3 {
    text-align: center;
    margin-bottom: 1.5rem;
}

#summary-content {
    display: grid;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: var(--bg-white);
    border-radius: 0.25rem;
}

.summary-item strong {
    color: var(--text-dark);
}

.summary-item span {
    color: var(--text-light);
}

.submit-note {
    text-align: center;
    color: var(--text-light);
    margin-top: 1rem;
}

.step-navigation {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.nav-btn {
    padding: 0.75rem 2rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* ===================================
   ORDER FORM SYSTEM
   =================================== */

/* Order Form Container */
.order-form-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* ===================================
   STEP 1 REDESIGN
   =================================== */

.step1-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2.5rem 2.5rem 2rem;
    max-width: 860px;
    margin: 2rem auto;
}

.step1-progress {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step1-pill {
    background: #f1f5f9;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

.step1-bar-wrap {
    flex: 1;
}

.step1-bar-wrap .progress-bar {
    margin: 0;
}

.step1-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 0.5rem;
}

.step1-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 1.25rem;
    display: block;
}

/* Business type cards — flex wrap, content-width */
.business-type-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin-bottom: 0.5rem;
}

.business-type-cards .business-type-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.1rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    width: auto;
    transform: none;
}

.business-type-cards .business-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(129,188,233,0.18);
    transform: none;
}

.business-type-cards .business-type-card.active {
    border-color: var(--primary-color);
    background: #e8f4fb;
    box-shadow: 0 2px 10px rgba(129,188,233,0.22);
    transform: none;
}

.business-type-cards .card-svg {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.business-type-cards .business-type-card:hover .card-svg,
.business-type-cards .business-type-card.active .card-svg {
    transform: scale(1.15);
}

.business-type-cards .card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
}

/* Category dropdown */
.step1-category {
    margin-top: 1.75rem;
    animation: fadeIn 0.25s ease;
}

.step1-select {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.9375rem;
    background: #fff;
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.1rem;
    padding-right: 2.5rem;
}

.step1-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(129,188,233,0.12);
}

/* Continue button */
.step1-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

.step1-continue {
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
}

/* Hide the shared form-navigation on step 1 */
#section1.active ~ .form-navigation {
    display: none !important;
}

/* Mobile */
@media (max-width: 640px) {
    .step1-card {
        padding: 1.5rem 1rem;
        margin: 1rem auto;
        border-radius: 14px;
    }
    .step1-title { font-size: 1.4rem; }
    .business-type-cards { gap: 0.5rem; }
    .business-type-cards .business-type-card { padding: 0.6rem 0.9rem; }
    .step1-select { max-width: 100%; }
}

/* ===================================
   STEP 2: BUSINESS DETAILS
   =================================== */

.s2-section-heading {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-light);
    margin: 1.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.s2-section-heading:first-of-type {
    margin-top: 0.25rem;
}

.form-optional {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.8125rem;
}

.s2-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

#section2.active ~ .form-navigation {
    display: none !important;
}

.placeholder-coming-soon {
    text-align: center;
    padding: 3rem 0 2rem;
    color: var(--text-light);
    font-size: 1rem;
}

/* Hide shared nav on sections 3-7 (all have own Back/Continue) */
#section3.active ~ .form-navigation,
#section4.active ~ .form-navigation,
#section5.active ~ .form-navigation,
#section6.active ~ .form-navigation,
#section7.active ~ .form-navigation {
    display: none !important;
}

/* ======================================
   SECTION 3: UPLOAD FILES
   ====================================== */

.s3-helper-note {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: -0.5rem 0 1.5rem;
}

.s3-upload-zones {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 0.5rem;
}

.s3-upload-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.s3-upload-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.s3-upload-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.s3-upload-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.s3-badge {
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
    border-radius: 20px;
    background: rgba(129, 188, 233, 0.15);
    color: var(--primary-color);
}

.s3-badge-opt {
    background: #f1f5f9;
    color: var(--text-light);
}

.upload-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.upload-error {
    font-size: 0.8125rem;
    color: #dc2626;
    display: none;
    margin-top: 0.25rem;
}

@media (max-width: 480px) {
    .s2-footer {
        flex-direction: column-reverse;
        gap: 0.75rem;
    }
    .s2-footer .btn {
        width: 100%;
        text-align: center;
    }
}

/* Progress Bar */
.progress-container {
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: var(--primary-color);
    transition: width 0.3s ease;
    border-radius: 4px;
}

/* ===================================
   SEGMENTED PROGRESS BAR (design.html)
   =================================== */
.progress-segments {
    flex: 1;
    display: flex;
    gap: 3px;
    align-items: center;
}

.progress-segment {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.progress-segment:hover {
    transform: scaleY(1.5);
}

.progress-segment.filled {
    background: var(--primary-color);
}

.progress-segment.current {
    background: var(--primary-color);
    opacity: 0.55;
}

.progress-segment.locked {
    cursor: not-allowed;
    opacity: 0.35;
}

/* Restart button (replaces "Step X of 18" pill) */
.restart-btn {
    flex: 0 0 auto;
    background: #f1f5f9;
    border: none;
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
    font-family: 'Rubik', Arial, sans-serif;
}

.restart-btn:hover {
    background: #e2e8f0;
}

/* Restart confirmation modal */
.restart-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.restart-modal-overlay.active {
    display: flex;
}

.restart-modal-box {
    background: #fdf8f0;
    border-radius: 20px;
    padding: 2.5rem 2.5rem 2rem;
    max-width: 400px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.restart-modal-box h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.restart-modal-box p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.restart-modal-btns {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
}

.restart-modal-cancel {
    background: transparent;
    border: 2px solid #e2e8f0;
    color: var(--text-dark);
    box-shadow: none;
}

.restart-modal-cancel:hover {
    background: #f1f5f9;
}

.progress-text {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Form Sections */
.order-form {
    /* Background/shadow removed — each section's .step1-card handles its own styling */
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Form Groups */
.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.938rem;
}

.required {
    color: #ef4444;
}

.form-helper {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(129, 188, 233, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.error-message {
    display: none;
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* Form Rows */
.form-row {
    display: grid;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.form-row.three-col {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .form-row.two-col,
    .form-row.three-col {
        grid-template-columns: 1fr;
    }
}

/* Form Checkbox */
.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.form-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.form-checkbox label {
    cursor: pointer;
    user-select: none;
}

/* Business Type Cards */
.business-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.business-type-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.business-type-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
    transform: translateY(-2px);
}

.business-type-card.active {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fb 100%);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.25);
}

.business-type-card .card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.business-type-card .card-title {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Checkbox Grid */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

/* File Upload Areas */
.file-upload-area {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
    margin-top: 0.5rem;
}

.file-upload-area:hover {
    border-color: var(--primary-color);
    background: rgba(129, 188, 233, 0.05);
}

.file-upload-area.drag-over {
    border-color: var(--primary-color);
    background: rgba(129, 188, 233, 0.1);
    border-style: solid;
}

.upload-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.upload-text p {
    margin: 0.25rem 0;
    color: var(--text-light);
}

.upload-text strong {
    color: var(--text-dark);
}

/* File Preview */
.file-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.file-item {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.5rem;
    background: var(--bg-white);
}

.file-item img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 0.5rem;
}

.file-icon {
    font-size: 3rem;
    text-align: center;
    padding: 1rem 0;
}

.file-info {
    text-align: center;
}

.file-name {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--text-dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-size {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.file-remove {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ef4444;
    color: white;
    border: none;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.file-remove:hover {
    background: #dc2626;
    transform: scale(1.1);
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.form-navigation .btn {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

/* Save toast (inline, inside progress bar row) */
.save-toast {
    font-size: 0.8rem;
    color: #94a3b8;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
}
.save-toast.visible {
    opacity: 1;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .order-form-container {
        padding: 1rem 0.5rem;
    }
    
    .order-form {
        padding: 1.5rem;
    }
    
    .section-header h1 {
        font-size: 1.75rem;
    }
    
    .business-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-navigation {
        flex-direction: column-reverse;
    }
    
    .form-navigation .btn {
        width: 100%;
    }
}

/* ===================================
   SECTION 2: DESIGN COMPONENTS
   =================================== */

/* Color Palette Cards */
.color-palette-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.color-palette-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.color-palette-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
    transform: translateY(-2px);
}

.color-palette-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fb 100%);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.25);
}

.palette-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.color-swatches {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.color-swatch {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.color-swatch:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.color-edit-icon {
    position: absolute;
    bottom: -2px;
    right: -2px;
    font-size: 0.75rem;
    background: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.color-swatch:hover .color-edit-icon {
    opacity: 1;
}

.custom-swatches {
    flex-direction: column;
    gap: 0.75rem;
}

.custom-color-picker {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: space-between;
}

.custom-color-picker label {
    font-size: 0.875rem;
    font-weight: 600;
}

.custom-color-picker input[type="color"] {
    width: 50px;
    height: 35px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.palette-select-btn {
    width: 100%;
    padding: 0.625rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.palette-select-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.color-palette-card.selected .palette-select-btn {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Selected Colors Display */
.selected-colors-display {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    animation: fadeIn 0.3s ease;
}

.selected-colors-display h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.selected-colors-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.selected-color-item {
    text-align: center;
}

.selected-color-box {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.selected-color-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}

.selected-color-hex {
    font-size: 0.688rem;
    color: var(--text-light);
    font-family: monospace;
}

/* Theme Cards */
.theme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.theme-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
    transform: translateY(-2px);
}

.theme-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.25);
}

.theme-preview {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    position: relative;
}

.minimalist-preview {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.glassy-preview {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(230, 240, 255, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.warm-preview {
    background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
}

.bold-preview {
    background: linear-gradient(135deg, #fee2e2 0%, #fef08a 50%, #dbeafe 100%);
}

.luxury-preview {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.playful-preview {
    background: linear-gradient(135deg, #fae8ff 0%, #fbcfe8 50%, #bae6fd 100%);
}

.custom-preview {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    color: var(--text-light);
    font-size: 3rem;
}

.theme-info {
    padding: 1rem;
    text-align: center;
}

.theme-info h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.theme-info p {
    font-size: 0.813rem;
    color: var(--text-light);
}

.custom-theme-request,
.custom-layout-request {
    margin-top: 1rem;
    animation: fadeIn 0.3s ease;
}

/* Layout Cards */
.layout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.layout-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.layout-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
    transform: translateY(-2px);
}

.layout-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.25);
}

.layout-card.recommended {
    border-color: var(--secondary-color);
}

.recommended-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 1;
}

.layout-diagram {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    padding: 1rem;
}

/* Layout diagram visualizations (CSS patterns) */
.single-page-diagram {
    background: linear-gradient(to bottom, 
        var(--primary-color) 20px, 
        transparent 20px,
        transparent 30px,
        var(--border-color) 30px,
        var(--border-color) 60px,
        transparent 60px,
        transparent 70px,
        var(--border-color) 70px,
        var(--border-color) 100px,
        transparent 100px,
        transparent 110px,
        var(--border-color) 110px
    );
}

.multi-page-diagram {
    background: 
        linear-gradient(to right, var(--border-color) 2px, transparent 2px),
        linear-gradient(to bottom, 
            var(--primary-color) 20px,
            transparent 20px,
            transparent 40px,
            var(--border-color) 40px,
            var(--border-color) 120px
        );
    background-size: 33.33% 100%;
}

.split-diagram {
    background: linear-gradient(to right, 
        var(--border-color) 48%, 
        transparent 48%, 
        transparent 52%, 
        var(--border-color) 52%
    );
}

.grid-diagram {
    background: 
        repeating-linear-gradient(to right, 
            var(--border-color) 0, 
            var(--border-color) 2px, 
            transparent 2px, 
            transparent 50%
        ),
        repeating-linear-gradient(to bottom, 
            var(--border-color) 0, 
            var(--border-color) 2px, 
            transparent 2px, 
            transparent 50%
        );
}

.asymmetric-diagram {
    background: 
        linear-gradient(135deg, 
            var(--border-color) 30%, 
            transparent 30%, 
            transparent 70%, 
            var(--border-color) 70%
        );
}

.custom-diagram {
    font-size: 3rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.layout-info {
    padding: 1rem;
    text-align: center;
}

.layout-info h4 {
    font-size: 0.938rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.layout-info p {
    font-size: 0.813rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .color-palette-grid,
    .theme-grid,
    .layout-grid {
        grid-template-columns: 1fr;
    }
    
    .selected-colors-row {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================================
   SECTION 3: PAGE BUILDER COMPONENTS
   =================================== */

/* Page Builder Container */
.page-builder-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-top: 2rem;
}

/* Available Blocks (Left Side) */
.available-blocks {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    max-height: 700px;
    overflow-y: auto;
}

.available-blocks h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.helper-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

/* Block Checkbox Items */
.block-checkbox {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.875rem;
    margin-bottom: 0.75rem;
    transition: all 0.2s ease;
}

.block-checkbox:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(129, 188, 233, 0.15);
}

.block-checkbox.recommended {
    border-color: var(--secondary-color);
}

.block-checkbox.locked {
    background: #f3f4f6;
    opacity: 0.8;
}

.block-checkbox label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 500;
    user-select: none;
}

.block-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
}

.block-icon {
    font-size: 1.25rem;
}

.block-name {
    flex: 1;
    font-size: 0.938rem;
}

.recommended-icon,
.lock-icon {
    font-size: 1rem;
}

.block-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-left: 2.75rem;
    margin-top: 0.25rem;
}

/* Page Preview (Right Side) */
.page-preview {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    min-height: 400px;
    max-height: 700px;
    overflow-y: auto;
}

.page-preview h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.selected-blocks {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Preview Block Items */
.preview-block {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.2s ease;
    cursor: grab;
}

.preview-block:active {
    cursor: grabbing;
}

.preview-block.dragging {
    opacity: 0.5;
    border-color: var(--primary-color);
}

.preview-block.locked {
    background: #f3f4f6;
    cursor: not-allowed;
}

.preview-block:hover:not(.locked) {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
}

.block-handle {
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: grab;
}

.preview-block.locked .block-handle {
    cursor: not-allowed;
}

.block-content {
    flex: 1;
}

.block-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.938rem;
}

.block-subtitle {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.125rem;
}

.block-customize-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.block-customize-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Modal Overlay */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal-content {
    background: var(--bg-white);
    border-radius: 16px;
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.modal-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-light);
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    color: var(--text-dark);
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    transform: scale(1.1);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--border-color);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

/* Customization Form Styles */
.customization-form .form-group {
    margin-bottom: 1.5rem;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.radio-group label:hover {
    background: var(--bg-light);
}

.radio-group input[type="radio"] {
    cursor: pointer;
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.checkbox-list label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.checkbox-list label:hover {
    background: var(--bg-light);
}

.checkbox-list input[type="checkbox"] {
    width: 1.125rem;
    height: 1.125rem;
    cursor: pointer;
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .page-builder-container {
        grid-template-columns: 1fr;
    }
    
    .available-blocks,
    .page-preview {
        max-height: 500px;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-body {
        padding: 1.5rem;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .preview-block {
        flex-wrap: wrap;
    }
    
    .block-customize-btn {
        width: 100%;
        margin-top: 0.5rem;
    }
}

/* ===================================
   SECTION 4 & 5: NAVIGATION/FOOTER/TECHNICAL
   =================================== */

/* Header Style Options */
.header-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.style-option-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.style-option-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.2);
    transform: translateY(-2px);
}

.style-option-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fb 100%);
}

.style-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: var(--bg-light);
    border-radius: 6px;
    margin-bottom: 0.75rem;
    font-size: 0.75rem;
    gap: 0.5rem;
}

.style-preview-header.centered {
    justify-content: center;
}

.preview-logo {
    font-weight: 700;
    color: var(--primary-color);
}

.preview-nav,
.preview-cta,
.preview-hamburger {
    color: var(--text-light);
    font-size: 0.688rem;
}

.style-label {
    text-align: center;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Menu Items List */
.menu-items-list {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1rem;
    margin-top: 1rem;
}

.menu-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.75rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: grab;
}

.menu-item .handle {
    font-size: 1.25rem;
    color: var(--text-light);
}

/* Hours Grid */
.hours-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.hours-row {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1rem;
    align-items: center;
}

.hours-row span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Info Box */
.info-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-top: 0.5rem;
}

.info-box strong {
    color: var(--primary-color);
    font-size: 1.125rem;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.feature-item {
    color: var(--text-dark);
    font-size: 0.938rem;
}

/* Collapse Toggle */
.collapse-toggle {
    width: 100%;
    padding: 0.875rem 1rem;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.collapse-toggle:hover {
    border-color: var(--primary-color);
    background: var(--bg-white);
}

.toggle-icon {
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .hours-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   SECTION 6: PLAN SELECTION
   =================================== */

/* Recommendation Box */
.recommendation-box {
    background: linear-gradient(135deg, #e8f4fb 0%, #d5ecf5 100%);
    border: 2px solid var(--primary-color);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.recommendation-header {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.recommendation-body ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.recommendation-plan {
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    font-size: 1.125rem;
    font-weight: 700;
}

.recommendation-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

/* Plans Grid */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.plan-card {
    background: var(--bg-white);
    border: 2px solid #d1d5db;
    border-radius: 16px;
    padding: 1.25rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.2);
    transform: translateY(-3px);
}

.plan-card.selected {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(129, 188, 233, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #e8f4fb 100%);
}

.plan-card.featured {
    border-color: var(--border-color);
    border-width: 2px;
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--text-dark);
    padding: 0.35rem 1rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.plan-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.plan-features {
    margin: 1.5rem 0;
}

.plan-feature {
    padding: 0.5rem 0;
    color: var(--text-dark);
    font-size: 0.938rem;
}

.plan-note {
    font-size: 0.875rem;
    color: var(--text-light);
    font-style: italic;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.plan-select-btn {
    width: 100%;
    padding: 0.875rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-top: 1rem;
}

.plan-select-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.plan-card.selected .plan-select-btn {
    background: #10b981;
}

/* Add-Ons List */
.addons-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.addon-checkbox {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.addon-checkbox:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(129, 188, 233, 0.15);
}

.addon-checkbox input[type="checkbox"]:checked + .addon-info {
    color: var(--primary-color);
}

.addon-info {
    flex: 1;
}

.addon-name {
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.addon-description {
    font-size: 0.875rem;
    color: var(--text-light);
}

.addon-price {
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--primary-color);
}

/* Order Summary Box */
.order-summary-box {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.summary-header {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--text-dark);
}

.summary-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-top: 2px solid var(--text-dark);
    margin-top: 1rem;
    font-size: 1.25rem;
}

.summary-deposit {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(129, 188, 233, 0.1);
    border-radius: 8px;
    font-size: 0.938rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    margin-top: 1rem;
}

/* ===================================
   SECTION 7: REVIEW & SUBMIT
   =================================== */

/* Review Summary */
.review-summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-section {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: var(--bg-light);
    border-bottom: 2px solid var(--border-color);
}

.review-header h3 {
    font-size: 1.125rem;
    margin: 0;
    color: var(--text-dark);
}

.edit-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.813rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.edit-btn:hover {
    background: var(--primary-dark);
}

.review-content {
    padding: 1.5rem;
    color: var(--text-dark);
}

.review-content p {
    margin-bottom: 0.5rem;
}

.total-price {
    font-size: 1.125rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-top: 0.5rem;
}

/* Agreements */
.agreements-section {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.agreements-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.agreement-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.agreement-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1rem;
    background: var(--bg-white);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.agreement-checkbox:hover {
    box-shadow: 0 2px 8px rgba(129, 188, 233, 0.15);
}

.agreement-checkbox input[type="checkbox"] {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.125rem;
    cursor: pointer;
}

.agreement-checkbox span {
    flex: 1;
    font-size: 0.938rem;
    color: var(--text-dark);
}

/* Submit Container */
.submit-container {
    text-align: center;
    margin: 3rem 0 2rem;
}

.btn-large {
    padding: 1.125rem 3rem;
    font-size: 1.125rem;
}

.submit-note {
    margin-top: 1rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeIn 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-message h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.success-message > p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.next-steps {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
    text-align: left;
}

.next-steps h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
}

.next-steps ol {
    list-style-position: inside;
    color: var(--text-dark);
}

.next-steps li {
    padding: 0.5rem 0;
    font-size: 0.938rem;
}

.contact-info {
    margin: 2rem 0;
    font-size: 1rem;
}

.contact-info a {
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   RESPONSIVE MEDIA QUERIES - NEW LAYOUT
   =================================== */

/* Tablet: container padding + section spacing */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .header-wrapper {
        padding: 0 1.5rem;
    }

    section {
        padding: 4rem 0;
    }

    section.vision-section,
    .vision-section {
        padding: 4rem 0;
    }

    section.process-highlight-section,
    .process-highlight-section {
        padding: 4rem 0;
    }

    .about-intro-section {
        padding: 4rem 0;
    }

    .about-milestones-section {
        padding: 4rem 0;
    }

    footer {
        padding: 4rem 0 2rem;
    }

    .pricing-columns-section {
        padding: 4rem 0;
    }

    .swipe-section {
        padding: 4rem 0;
    }

    .pricing-cards-section {
        padding: 4rem 0;
    }

    .cta-banner-section {
        padding: 4rem 0 0;
    }

    .three-col-steps-section {
        padding: 4rem 0;
    }

    .about-cta-strip-section {
        padding: 4rem 0;
    }

    .pricing-comparison-section {
        padding: 4rem 2rem;
    }

    .testimonial-section {
        padding: 4rem 2rem;
    }

    .cta-gradient-section {
        padding: 4rem 2rem;
    }

    .three-step-section {
        padding: 4rem 2rem;
    }

    .quote-testimonial-section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 968px) {
    .hero-overlay h1 {
        font-size: 2.25rem;
    }

    .hero-tagline {
        font-size: 2.25rem;
    }
    
    .hero-fullwidth {
        height: 600px;
    }
    
    .two-column-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .two-column-section.reverse .two-column-grid {
        direction: ltr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .plan-card.featured {
        order: -1;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 2rem;
    }
    
    .hero-fullwidth {
        min-height: 550px;
        height: auto;
    }
    
    .hero-overlay {
        padding: 0 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-content h2 {
        font-size: 2rem;
    }
    
    .column-content h2 {
        font-size: 2rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .addon-checkbox {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .addon-price {
        align-self: flex-start;
    }
}

/* Mobile: container padding + section spacing */
@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }

    .header-wrapper {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    section.vision-section,
    .vision-section {
        padding: 3rem 0;
    }

    section.process-highlight-section,
    .process-highlight-section {
        padding: 3rem 0;
    }

    .about-intro-section {
        padding: 3rem 0;
    }

    .about-milestones-section {
        padding: 3rem 0;
    }

    footer {
        padding: 3rem 0 2rem;
    }

    .pricing-columns-section {
        padding: 3rem 0;
    }

    .swipe-section {
        padding: 3rem 0;
    }

    .pricing-cards-section {
        padding: 3rem 0;
    }

    .cta-banner-section {
        padding: 3rem 0 0;
    }

    .three-col-steps-section {
        padding: 3rem 0;
    }

    .about-cta-strip-section {
        padding: 3rem 0;
    }

    .pricing-comparison-section {
        padding: 3rem 2rem;
    }

    .testimonial-section {
        padding: 3rem 2rem;
    }

    .cta-gradient-section {
        padding: 3rem 2rem;
    }

    .three-step-section {
        padding: 3rem 2rem;
    }

    .quote-testimonial-section {
        padding: 3rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero-overlay h1 {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1.75rem;
    }

    .btn-hero {
        padding: 0.75rem 1.5rem;
        font-size: 0.813rem;
    }

    .cta-banner-inner {
        padding: 3rem 1.25rem;
    }

    .cta-banner-heading {
        font-size: 2.25rem;
    }

    .about-intro-card {
        min-height: auto;
    }

    .about-intro-photo {
        min-height: 220px;
    }
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

.faq-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 3rem;
}

.faq-section .faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-section .faq-accordion-item {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.faq-section .faq-accordion-item:hover {
    background: #fff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-section .faq-accordion-toggle {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    text-align: left;
    gap: 1rem;
}

.faq-section .faq-toggle-icon {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    line-height: 1;
}

.faq-section .faq-accordion-item.active .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-section .faq-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-section .faq-accordion-item.active .faq-accordion-content {
    max-height: 500px;
}

.faq-section .faq-accordion-content p {
    padding: 0 2rem 1.5rem;
    color: #444;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    text-align: left;
    font-weight: 700;
}

@media (max-width: 1024px) {
    .faq-section { padding: 4rem 0; }
}

@media (max-width: 640px) {
    .faq-section { padding: 3rem 0; }
    .faq-heading { font-size: 2rem; }
    .faq-section .faq-accordion-toggle { padding: 1.25rem 1.5rem; font-size: 1rem; }
    .faq-section .faq-accordion-content p { padding: 0 1.5rem 1.25rem; }
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

/* ── Horizontal contact card ── */
.contact-card {
    display: flex;
    gap: 3.5rem;
    align-items: flex-start;
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 12px rgba(129, 188, 233, 0.15);
}

.contact-card-info {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
}

.contact-card-form {
    flex: 1;
    min-width: 0;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-top: 1.75rem;
}

.contact-card-detail-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.contact-card-detail-item a {
    color: var(--text-light);
    text-decoration: none;
}

.contact-card-detail-item a:hover {
    color: var(--primary-color);
}

.contact-detail-icon {
    font-size: 1rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .contact-card {
        flex-direction: column;
        gap: 2rem;
    }
    .contact-card-info {
        flex: none;
        width: 100%;
    }
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 0.75rem;
}

.contact-subtitle {
    text-align: left;
    color: var(--text-light);
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
}

.contact-form {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form .form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.contact-form .form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.9375rem;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(129, 188, 233, 0.1);
}

.contact-form .form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.contact-form .btn {
    align-self: flex-start;
}

.contact-form .form-note {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0;
}

@media (max-width: 1024px) {
    .contact-section { padding: 4rem 0; }
}

@media (max-width: 640px) {
    .contact-section { padding: 3rem 0; }
    .contact-heading { font-size: 2rem; }
    .contact-form .form-row { grid-template-columns: 1fr; }
}

/* ===================================
   PRICING PAGE - NEW DESIGN
   =================================== */

/* Pricing Cards Section */
.pricing-cards-section {
    padding: 6rem 1.5rem;
    background: #fdf8f0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pricing-card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.pricing-card-desc {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.pricing-card-price {
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.pricing-card-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
}

/* Feature Comparison Section */
.pricing-comparison-section {
    padding: 3rem 1.5rem;
    background: var(--bg-white);
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    border-bottom: 1px solid #e5e7eb;
    padding: 0.75rem 0;
    align-items: center;
}

.comparison-row.comparison-header {
    font-weight: 700;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 1rem;
    margin-bottom: 0.5rem;
}

.comparison-feature {
    font-size: 0.9375rem;
    color: var(--text-dark);
    text-align: left;
}

.comparison-plan {
    font-size: 0.9375rem;
    color: var(--text-dark);
    text-align: center;
}

.comparison-header .comparison-plan {
    font-weight: 600;
}

.check-icon {
    color: #10b981;
    font-size: 1.125rem;
}

.dash-icon {
    color: #9ca3af;
    font-size: 1rem;
}

.pricing-comparison-section .pricing-note {
    max-width: 1000px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Responsive: Stack on mobile */
@media (max-width: 768px) {
    .pricing-cards-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        max-width: 100%;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .testimonial-quote {
        font-size: 1.35rem;
    }

    .cta-gradient-section h2 {
        font-size: 2rem;
    }

    .cta-gradient-section p {
        font-size: 1rem;
    }

    .three-step-section {
        padding: 3rem 1rem;
    }

    .three-step-grid {
        gap: 2rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.75rem 0.75rem;
        font-size: 0.875rem;
    }

    .comparison-table thead th.feature-col {
        width: 40%;
    }
}

@media (max-width: 480px) {
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        text-align: left;
        padding: 1rem 0;
    }

    .comparison-header {
        display: none;
    }

    .comparison-plan {
        text-align: left;
    }

    .comparison-plan::before {
        content: attr(data-plan) ": ";
        font-weight: 600;
    }
}

/* ===================================
   ABOUT PAGE - PROCESS STYLE
   =================================== */

/* About Features Grid (Why Work With Me) */
.about-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-feature-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: left;
}

.about-feature-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.about-feature-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* About Skills Grid (What I Build With) */
.about-skills-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.about-skill-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1.25rem;
    text-align: left;
}

.about-skill-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.about-skill-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-skill-card li {
    font-size: 0.9375rem;
    color: var(--text-light);
    padding: 0.25rem 0;
}

/* About Personal Content (Beyond Web Development) */
.about-personal-content {
    max-width: 800px;
    text-align: left;
}

.about-personal-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-personal-content .btn-hero {
    margin-top: 1rem;
}

/* ===================================
   PRICING PAGE - DELPHI STYLE REDESIGN
   =================================== */

/* Pricing Toggle Section */
.pricing-toggle-section {
    background: white;
    padding: 2.5rem 0;
    text-align: center;
}

.toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.toggle-label {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.pricing-toggle {
    display: inline-flex;
    background: #f1f5f9;
    border-radius: 50px;
    padding: 0.25rem;
    gap: 0;
}

.toggle-btn {
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    color: var(--text-dark);
}

.toggle-btn.active {
    background: var(--primary-dark);
    color: white;
}

/* ── Quote Testimonial ── */
.quote-testimonial-section {
    padding: 6rem 2rem;
    background: #fdf8f0;
    text-align: center;
}

.quote-testimonial-container {
    max-width: 680px;
    margin: 0 auto;
}

.quote-testimonial-text {
    font-size: 2rem;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #3d2b1f;
    line-height: 1.45;
    margin: 0 0 2.5rem;
    text-align: center;
}

.quote-testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.quote-testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.quote-testimonial-author-info {
    text-align: left;
}

.quote-testimonial-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
}

.quote-testimonial-role {
    font-size: 0.8125rem;
    color: #9ca3af;
    margin: 0;
    text-align: left;
}

/* ── CTA Banner ── */
.cta-banner-section {
    padding: 6rem 0 0;
    background: #fdf8f0;
}

.cta-banner-inner {
    background: url('ss_image_7.png');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-banner-icon {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.75rem;
    letter-spacing: 0.1em;
}

.cta-banner-heading {
    font-family: 'Lilita One', cursive !important;
    font-size: 3.75rem;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 1.25rem;
    line-height: 1.15;
}

.cta-banner-sub {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.cta-banner-btn {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.875rem 2.25rem;
    border-radius: 14px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* ── Three Col Steps ── */
.three-col-steps-section {
    background: #fdf8f0;
    padding: 1rem 0 6rem;
}

.three-col-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.three-col-step {
    background: #ede8e1;
    padding: 2.25rem 2rem;
    border-radius: 16px;
}

.three-col-step-header {
    display: flex;
    align-items: baseline;
    gap: 0.65rem;
    margin-bottom: 0.75rem;
}

.three-col-step-num {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
}

.three-col-step-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    text-align: left;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif !important;
}

.three-col-step-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    text-align: left;
}

/* Enhanced Pricing Cards */
.pricing-cards-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border: 1px solid #e8e8e8;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    text-align: left;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    border-color: #e8e8e8;
}

.pricing-card.featured {
    border: 1px solid #e8e8e8;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transform: none;
    background: white;
}

.pricing-card.featured:hover {
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.pricing-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.pricing-card h3 {
    font-size: 1.6875rem;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.1;
}

.pricing-badge {
    background: #dff0f8;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    white-space: nowrap;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
}

.pricing-card-desc {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: left;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
    line-height: 1;
}

.price-period {
    font-size: 1rem;
    color: #6b7280;
    font-weight: 700;
}

.pricing-card-btn {
    width: 100%;
    text-align: center;
    display: block;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 1.75rem;
    text-decoration: none;
    transition: background 0.2s ease;
}

.pricing-card-btn:hover {
    background: var(--primary-dark);
    color: white;
}

.pricing-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.pricing-card-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 1.0625rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.pricing-card-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #9ca3af;
    font-weight: bold;
}

.pricing-features-divider {
    font-size: 0.9375rem;
    color: #9ca3af;
    padding: 0.875rem 0 0.25rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 0.75rem;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/* Comparison Table Styles */
.pricing-comparison-section {
    background: #f8fafc;
    padding: 6rem 2rem;
}

.comparison-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3rem;
}

.comparison-table-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead th {
    padding: 1.5rem 1.5rem;
    background: white;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    font-size: 1rem;
}

.comparison-table thead th.feature-col {
    text-align: left;
    width: 35%;
}

.comparison-table thead th.featured-col {
    background: #e8f4fb;
    color: var(--primary-color);
}

.comparison-table tbody tr {
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table tbody tr:hover {
    background: #fafbfc;
}

.comparison-table tbody tr.category-row {
    background: #f8fafc;
}

.comparison-table tbody tr.category-row td {
    padding: 1rem 1.5rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
}

.comparison-table tbody td {
    padding: 1rem 1.5rem;
    text-align: center;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.comparison-table tbody td.feature-name {
    text-align: left;
    font-weight: 500;
}

.comparison-table .check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.25rem;
}

.comparison-table .dash {
    color: #cbd5e1;
    font-size: 1.25rem;
}

/* Testimonial Section */
.testimonial-section {
    background: #f8fafc;
    padding: 6rem 2rem;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-size: 1.75rem;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 700;
}

.testimonial-author-info {
    margin-top: 2rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    margin: 0;
}

.testimonial-role {
    color: var(--text-light);
    font-size: 0.9375rem;
    margin: 0.25rem 0 0 0;
}

/* Gradient CTA Section */
.cta-gradient-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.cta-gradient-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.cta-gradient-section p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    background: white;
    color: var(--primary-dark);
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Three-Step Process Section */
.three-step-section {
    background: white;
    padding: 6rem 2rem;
}

.three-step-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step-item {
    text-align: center;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.step-title {
    font-size: 1.3125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive Design for Pricing Page */
@media (max-width: 1024px) {
    .pricing-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pricing-card.featured {
        grid-column: 1 / -1;
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .pricing-cards-grid,
    .three-step-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
        max-width: 100%;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .pricing-toggle {
        flex-direction: column;
    }

    .toggle-btn {
        width: 100%;
        padding: 0.75rem 1.5rem;
    }

    .testimonial-quote {
        font-size: 1.35rem;
    }

    .cta-gradient-section h2 {
        font-size: 2rem;
    }

    .cta-gradient-section p {
        font-size: 1rem;
    }

    .three-step-section {
        padding: 3rem 1rem;
    }

    .three-step-grid {
        gap: 2rem;
    }

    .step-number {
        font-size: 2rem;
    }

    .step-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .pricing-card {
        padding: 1.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .pricing-card h3 {
        font-size: 1.35rem;
    }

    .testimonial-quote {
        font-size: 1.125rem;
    }

    .cta-gradient-section {
        padding: 3rem 1rem;
    }

    .cta-gradient-section h2 {
        font-size: 1.5rem;
    }

    .btn-cta {
        padding: 0.75rem 2rem;
        font-size: 0.95rem;
    }

    .pricing-card-features li {
        font-size: 0.9375rem;
    }

    .step-description {
        font-size: 0.875rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .about-features-grid,
    .about-skills-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .about-feature-card,
    .about-skill-card {
        padding: 1rem;
    }
}

/* ===================================
   VISION SECTION
   =================================== */
.vision-section {
    padding: 6rem 0;
    background: #fdf8f0;
    text-align: center;
    position: relative;
}

.vision-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: calc(1280px - 4rem);
    height: 1px;
    background: #d1d5db;
}

.vision-content {
    max-width: 680px;
    margin: 0 auto;
}

.vision-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border-radius: 10px;
}

.vision-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vision-section h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
    text-align: center;
    line-height: 1.1;
}

/* ===================================
   ABOUT PAGE — REDESIGN
   =================================== */

/* Pill label */
.about-pill {
    display: inline-block;
    border: 1.5px solid #d1d5db;
    border-radius: 999px;
    padding: 0.3rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 1rem;
    font-family: 'Telegraph', 'Rubik', Arial, sans-serif;
}

/* ── Section 1: Intro Card ── */
.about-intro-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

.about-intro-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
    display: grid;
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    min-height: 480px;
}

.about-intro-content {
    padding: 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.about-intro-content p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: left;
}

.about-intro-photo {
    min-height: 400px;
}

.about-intro-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-intro-buttons {
    display: flex;
    gap: 1rem;
    margin: 1.75rem 0;
    flex-wrap: wrap;
}

.about-intro-stats {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid #d1d5db;
    padding-top: 1.5rem;
    margin-top: 0.5rem;
}

.about-intro-stat-num {
    font-family: 'Lilita One', cursive;
    font-size: 1.75rem;
    color: var(--primary-color);
    line-height: 1;
}

.about-intro-stat-label {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.25rem;
}

/* ── Section 2: Approach (constrained to match other sections) ── */
.about-approach-section {
    padding: 3rem 0;
}

.about-approach-inner {
    border-radius: 16px;
    overflow: hidden;
}

/* ── Section 2: Approach checklist ── */
.about-checklist {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 1.5rem;
    margin-top: 1.5rem;
    padding: 0;
    list-style: none;
}

.about-checklist li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9375rem;
    color: var(--primary-color);
    font-weight: 600;
    line-height: 1.6;
    text-align: left;
}

.about-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ── Section 3: Milestones / Values ── */
.about-milestones-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

.about-milestones-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.about-milestones-header h2 {
    font-size: 2.25rem;
    text-align: center;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.about-milestones-desc p {
    font-size: 0.9375rem;
    color: #6b7280;
    line-height: 1.7;
    text-align: center;
    padding-top: 0;
}

.about-milestones-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.about-milestone-card {
    background: white;
    border-radius: 16px;
    padding: 2rem 1.75rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.about-milestone-card.accent {
    background: var(--primary-color);
    color: white;
}

.about-milestone-card.accent p {
    color: rgba(255, 255, 255, 0.85);
}

.about-milestone-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

.about-milestone-card:not(.accent) .about-milestone-icon {
    background: #dff0f8;
}

.about-milestone-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    text-align: left;
}

.about-milestone-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
    text-align: left;
}

/* Responsive */
@media (max-width: 900px) {
    .about-intro-card {
        grid-template-columns: 1fr;
    }
    .about-intro-photo {
        min-height: 300px;
        order: -1;
    }
    .about-milestones-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .about-milestones-desc p {
        padding-top: 0;
    }
    .about-milestones-grid {
        grid-template-columns: 1fr;
    }
    .about-checklist {
        grid-template-columns: 1fr;
    }
}

/* ── About CTA Strip ── */
.about-cta-strip-section {
    background: #fdf8f0;
    padding: 6rem 0;
}

.about-cta-strip {
    background: var(--primary-color);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.about-cta-strip-text {
    flex: 1;
}

.about-cta-strip-heading {
    font-family: 'Lilita One', cursive;
    font-size: 1.875rem;
    color: #ffffff;
    margin: 0 0 0.4rem;
    line-height: 1.2;
    text-align: left;
}

.about-cta-strip-sub {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    text-align: left;
}

.about-cta-strip-btn {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.9375rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.2s;
    flex-shrink: 0;
}

.about-cta-strip-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

/* ── Leo CTA strip variant ── */
.about-leo-strip-section {
}

.about-leo-strip-section .about-cta-strip {
    padding: 1.5rem 1.75rem;
    gap: 1.5rem;
}

.about-leo-strip-img {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    object-position: left center;
    flex-shrink: 0;
}

.about-leo-strip-section .about-leo-strip-img {
    width: 130px;
    height: 130px;
    border-radius: 24px;
}

.about-leo-strip-section .about-cta-strip-heading {
    font-size: 2.0625rem;
    letter-spacing: 0.05em;
}

.about-leo-strip-section .about-cta-strip-sub {
    font-size: 1.125rem;
}

.about-leo-strip-section .about-cta-strip-btn {
    padding: 1.05rem 2.4rem;
    font-size: 1.125rem;
}

@media (max-width: 768px) {
    .about-cta-strip {
        flex-direction: column;
        align-items: center;
        padding: 2rem;
        text-align: center;
    }
    .about-cta-strip-heading,
    .about-cta-strip-sub {
        text-align: center;
    }
    .about-cta-strip-btn {
        width: 100%;
        text-align: center;
    }
    /* Leo strip — scale down oversized elements on mobile */
    .about-leo-strip-section .about-leo-strip-img {
        width: 90px;
        height: 90px;
        border-radius: 18px;
    }
    .about-leo-strip-section .about-cta-strip-heading {
        font-size: 1.5rem;
        letter-spacing: 0.03em;
    }
    .about-leo-strip-section .about-cta-strip-sub {
        font-size: 1rem;
    }
    .about-leo-strip-section .about-cta-strip-btn {
        padding: 0.875rem 1.75rem;
        font-size: 1rem;
    }
}

/* ─── end about page ─── */

.vision-section p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.75;
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

/* ========================================
   DESIGN CAROUSEL — Sections 4-7
   (Color Palette, Theme, Typography, Layout)
   ======================================== */

.design-carousel {
    position: relative;
    margin: 1.5rem 0 2rem;
}

.carousel-track-wrap {
    /* Clip horizontally (hides cards outside the viewport) but allow
       the raised card's shadow to bleed vertically */
    overflow: hidden;
    padding: 1.75rem 0;
    /* negative top/bottom insets let the drop-shadow escape the clip area */
    clip-path: inset(-40px 0);
}

.carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.design-card {
    flex: 0 0 260px;
    min-width: 260px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    cursor: pointer;
    transition: transform 0.35s ease, opacity 0.35s ease,
                box-shadow 0.35s ease, border-color 0.2s ease;
    transform: scale(0.88);
    opacity: 0.55;
    box-shadow: 0 2px 8px rgba(129, 188, 233, 0.08);
    user-select: none;
}

.design-card.active {
    transform: scale(1) translateY(-6px);
    opacity: 1;
    box-shadow: 0 12px 32px rgba(129, 188, 233, 0.32);
    border-color: var(--primary-color);
}

/* Arrow buttons float over the peek cards */
.carousel-arrow-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-size: 1.15rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.carousel-arrow-btn[data-dir="-1"] { left: 6px; }
.carousel-arrow-btn[data-dir="1"]  { right: 6px; }

.carousel-arrow-btn:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 14px rgba(129, 188, 233, 0.35);
}

.carousel-arrow-btn:active {
    transform: translateY(-50%) scale(0.94);
}

/* -- Color Palette Cards -- */
.design-card-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    text-align: center;
}

.palette-swatches {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.palette-swatch {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.07);
    flex-shrink: 0;
}

/* -- Theme Cards -- */
.theme-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    min-height: 2.4em;
}

.theme-preview-mini {
    width: 100%;
    height: 90px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
    box-sizing: border-box;
}

.theme-preview-bar {
    border-radius: 3px;
    background: #d1d5db;
    flex-shrink: 0;
}

/* -- Typography Cards -- */
.font-pair-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0.4rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.font-preview-headline {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.2;
    margin-bottom: 0.4rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.font-preview-body {
    font-size: 0.72rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

/* -- Layout Cards -- */
.layout-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-top: 0.6rem;
}

.layout-diagram {
    width: 100%;
    height: 108px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 8px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.layout-row {
    background: #d1d5db;
    border-radius: 3px;
    flex-shrink: 0;
}

.layout-row-split {
    display: flex;
    gap: 4px;
    flex: 1;
}

.layout-row-split > div {
    flex: 1;
    background: #d1d5db;
    border-radius: 3px;
}

/* -- Section footers (s4/s5/s6/s7) share s2-footer layout -- */
.s4-footer,
.s5-footer,
.s6-footer,
.s7-footer {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

/* Responsive */
@media (max-width: 640px) {
    .design-card {
        flex: 0 0 210px;
        min-width: 210px;
        padding: 1.25rem;
    }
    .carousel-arrow-btn {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    .s4-footer,
    .s5-footer,
    .s6-footer,
    .s7-footer {
        flex-direction: column-reverse;
    }
}

/* ========================================
   SECTIONS 8–18 NAV HIDING
   Each section has its own in-card footer;
   hide the shared .form-navigation bar.
   ======================================== */
#section8.active  ~ .form-navigation,
#section9.active  ~ .form-navigation,
#section10.active ~ .form-navigation,
#section11.active ~ .form-navigation,
#section12.active ~ .form-navigation,
#section13.active ~ .form-navigation,
#section14.active ~ .form-navigation,
#section15.active ~ .form-navigation,
#section16.active ~ .form-navigation,
#section17.active ~ .form-navigation,
#section18.active ~ .form-navigation { display: none !important; }

/* ========================================
   SECTION 8: PLAN CARDS
   ======================================== */
.plan-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin: 1.5rem 0;
}

.plan-card { cursor: pointer; }

.plan-card.featured {
    border-color: #d1d5db;
    box-shadow: none;
}

.plan-card.featured.selected {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(95, 179, 214, 0.3);
}

.plan-tagline {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0.25rem 0 0.75rem;
}

.plan-features li {
    padding: 0.4rem 0;
    font-size: 1rem;
    color: var(--text-dark);
    padding-left: 1.25rem;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.plan-recommendation {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #15803d;
}

@media (max-width: 768px) {
    .plan-cards-grid { grid-template-columns: 1fr; }
}

/* ========================================
   SECTION 9: PAGE CHIPS
   ======================================== */
.page-chip.locked {
    cursor: default;
    border-color: var(--primary-color);
    background: #e8f4fb;
    opacity: 1;
}
.page-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 1.25rem 0;
}

.page-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: border-color 0.2s, background 0.2s;
    user-select: none;
}

.page-chip:hover { border-color: var(--primary-color); }

.page-chip.selected {
    border-color: var(--primary-color);
    background: #e8f4fb;
    color: var(--primary-dark);
}

.page-chip.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Custom page chip in step 9 */
.s9-custom-chip {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding-right: 0.45rem;
}

.s9-custom-chip-remove {
    background: none;
    border: none;
    padding: 0 0.1rem;
    font-size: 1rem;
    line-height: 1;
    color: var(--primary-dark);
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.15s;
}

.s9-custom-chip-remove:hover { opacity: 1; }

/* Add custom page row */
.s9-add-custom-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.85rem;
}

.s9-custom-input {
    flex: 1;
    padding: 0.45rem 0.75rem;
    font-size: 0.875rem;
    font-family: inherit;
    border: 2px dashed #b3d9ed;
    border-radius: 8px;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.s9-custom-input:focus {
    border-color: var(--primary-color);
}

.s9-custom-add-btn {
    padding: 0.45rem 0.9rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.s9-custom-add-btn:hover { background: #e8f4fb; }

.page-counter-wrap { margin-bottom: 1rem; }

.page-counter-badge {
    display: inline-block;
    background: #f1f5f9;
    border-radius: 999px;
    padding: 0.3rem 0.85rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-dark);
}

.plan-info-card {
    background: #e8f4fb;
    border: 2px solid var(--primary-color);
    border-radius: 14px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

/* ========================================
   SECTION 10: BUILDER TABS + CHECKLISTS
   ======================================== */
.builder-tabs {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
    border-bottom: 2px solid #e5e7eb;
    padding-bottom: 0.5rem;
}

.builder-tab {
    padding: 0.5rem 1rem;
    border-radius: 8px 8px 0 0;
    border: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.builder-tab.active {
    background: #e8f4fb;
    color: var(--primary-dark);
    border: 2px solid #e5e7eb;
    border-bottom-color: #fff;
    margin-bottom: -2px;
}

.builder-tab-panel { display: none; }
.builder-tab-panel.active { display: block; }

.section-checklist {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
}

.section-check-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 1rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.section-check-item:hover {
    border-color: var(--primary-color);
    background: #e8f4fb;
}

.section-check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
    flex-shrink: 0;
}

.section-check-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.homepage-highlights {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.homepage-highlights h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* ========================================
   SECTIONS 11–13: STRUCTURE PREVIEW MINI
   ======================================== */
.header-preview-mini,
.hero-preview-mini,
.footer-preview-mini {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 6px;
    gap: 4px;
    box-sizing: border-box;
    margin-top: 0.5rem;
}

/* ========================================
   SECTIONS 14 & 16: TOGGLE ROWS
   ======================================== */
.toggle-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.toggle-label-wrap { flex: 1; }

.toggle-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

.toggle-desc {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin-top: 0.2rem;
    display: block;
}

.toggle-switch-wrap { flex-shrink: 0; }

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #d1d5db;
    border-radius: 24px;
    cursor: pointer;
    transition: background 0.25s;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    left: 3px;
    top: 3px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.25s;
}

.toggle-switch input:checked + .toggle-slider { background: var(--primary-color); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.toggle-switch input:focus-visible + .toggle-slider { outline: 3px solid rgba(129,188,233,0.5); }

/* ========================================
   SECTION 15: CHAR COUNTER + TAG INPUT
   ======================================== */
.char-counter {
    display: flex;
    justify-content: flex-end;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.char-counter .at-limit {
    color: #ef4444;
    font-weight: 700;
}

.tag-input-wrap {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.5rem 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    background: #fff;
    transition: border-color 0.2s;
    min-height: 48px;
    cursor: text;
}

.tag-input-wrap:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(129,188,233,0.1);
}

.tag-input-wrap input {
    border: none;
    outline: none;
    font-size: 0.9rem;
    background: transparent;
    flex: 1;
    min-width: 120px;
    padding: 0.2rem 0;
    font-family: inherit;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #e8f4fb;
    border: 1px solid var(--primary-color);
    border-radius: 999px;
    padding: 0.2rem 0.6rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.tag-remove {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-dark);
    line-height: 1;
    font-size: 1rem;
    padding: 0;
    display: flex;
    align-items: center;
}

.tag-remove:hover { color: #ef4444; }

/* ========================================
   SECTION 16: SELECTOR CARDS
   ======================================== */
.selector-card-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0.75rem 0 1.5rem;
}

.selector-card {
    padding: 1rem 1.25rem;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
}

.selector-card:hover { border-color: var(--primary-color); }

.selector-card.selected {
    border-color: var(--primary-color);
    background: #e8f4fb;
}

.selector-card-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.selector-card-desc {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.advanced-toggles-section {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f1f5f9;
}

.advanced-toggles-section h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

/* ========================================
   SECTION 17: RADIO ROW
   ======================================== */
.radio-row {
    display: flex;
    gap: 1.5rem;
    margin: 0.5rem 0 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

/* ========================================
   SECTION 18: REVIEW ENHANCEMENTS
   ======================================== */
.review-pricing {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.25rem 1.5rem;
    margin: 1.5rem 0;
}

.review-pricing h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.pricing-row.total {
    border-top: 2px solid var(--text-dark);
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    font-weight: 700;
    font-size: 1.05rem;
}

.pricing-row.deposit,
.pricing-row.balance {
    color: var(--text-light);
    font-size: 0.875rem;
}

.review-collapse-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.8125rem;
    color: var(--primary-color);
    font-weight: 600;
    padding: 0;
    margin-top: 0.4rem;
}

.review-collapse-body {
    display: none;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.6;
}

.review-collapse-body.open { display: block; }

.s18-footer { margin-bottom: 1.5rem; }

/* ========================================
   SECTION FOOTERS s8–s17 + s18
   (mirror .s2-footer layout)
   ======================================== */
.s8-footer, .s9-footer, .s10-footer,
.s11-footer, .s12-footer, .s13-footer,
.s14-footer, .s15-footer, .s16-footer,
.s17-footer, .s18-footer {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
}

@media (max-width: 640px) {
    .s8-footer, .s9-footer, .s10-footer,
    .s11-footer, .s12-footer, .s13-footer,
    .s14-footer, .s15-footer, .s16-footer,
    .s17-footer, .s18-footer {
        flex-direction: column-reverse;
    }
}

/* ========================================
   FORM INPUT ERROR STATES
   ======================================== */
.form-input.error {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.form-input.error:focus {
    outline: none;
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group.has-error .form-input {
    border-color: #ef4444;
}

.form-group.has-error .form-label {
    color: #ef4444;
}

.error-message:not(:empty) {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.375rem;
    display: block;
    animation: slideIn 0.2s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   VALIDATION ERROR MODAL
   ======================================== */
.validation-error-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.validation-error-modal.active {
    display: flex;
}

.validation-error-content {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    max-width: 420px;
    width: 90%;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.validation-error-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.validation-error-header h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin: 0;
}

.validation-error-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.validation-error-close:hover {
    background: var(--bg-light);
    color: var(--text-dark);
}

.validation-error-body {
    padding: 1.5rem;
}

.validation-error-title {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.validation-error-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.validation-error-list li {
    color: var(--text-light);
    padding: 0.5rem 0;
    font-size: 0.9rem;
}

.validation-error-list li:before {
    content: '•';
    color: #ef4444;
    margin-right: 0.75rem;
    font-weight: bold;
}

.validation-error-footer {
    padding: 1rem 1.5rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.validation-error-footer .btn {
    width: 100%;
}

@media (max-width: 640px) {
    .validation-error-content {
        max-width: calc(100% - 2rem);
    }

    .validation-error-header {
        padding: 1rem;
    }

    .validation-error-body {
        padding: 1rem;
    }

    .validation-error-footer {
        padding: 1rem;
    }
}

/* ========================================
   SECTION 10: PER-PAGE SECTION STYLE BUILDER
   ======================================== */

/* Progress bar: skipped steps (Theme=5, Layout=7) shown as thin dim bars */
.progress-segment.skipped {
    opacity: 0.18;
    cursor: default;
    pointer-events: none;
    flex: 0 0 4px !important;
}

/* Page tab strip */
.builder-page-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 0.75rem;
}

.builder-page-tab {
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    border: 2px solid #e5e7eb;
    background: #fff;
    color: var(--text-dark);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.builder-page-tab:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.builder-page-tab.active {
    border-color: var(--primary-color);
    background: #e8f4fb;
    color: var(--primary-dark);
}

/* Page panels */
.builder-page-panel  { display: none; }
.builder-page-panel.active { display: block; }

/* Section list — vertical stack of section rows */
.builder-section-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Section row header: label + include toggle side by side */
.builder-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.6rem;
}

.builder-section-label {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Include/exclude toggle */
.section-include-toggle {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    flex-shrink: 0;
}

.section-include-toggle input[type="checkbox"] {
    width: 15px;
    height: 15px;
    accent-color: var(--primary-color);
    cursor: pointer;
}

.section-include-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.section-include-toggle:has(input:checked) .section-include-label {
    color: var(--primary-dark);
}

/* Grid wrapper — dimmed when section is excluded */
.section-grid-wrap {
    transition: opacity 0.2s;
}

.section-grid-wrap.dimmed {
    opacity: 0.3;
    pointer-events: none;
}

/* Excluded row — subtle strikethrough on label */
.builder-section-row.excluded .builder-section-label {
    opacity: 0.45;
    text-decoration: line-through;
}

/* Notes textarea */
.section-notes-input {
    width: 100%;
    margin-top: 0.6rem;
    padding: 0.5rem 0.65rem;
    font-size: 0.82rem;
    font-family: inherit;
    color: var(--text-dark);
    background: #fafafa;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    resize: vertical;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s;
}

.section-notes-input:focus {
    border-color: var(--primary-color);
    background: #fff;
}

/* Card grid — flex-wrap, same pattern as .business-type-cards */
.section-style-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

/* Individual wireframe style card */
.section-style-card {
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 10px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.section-style-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(129,188,233,0.18);
}

.section-style-card.active {
    border-color: var(--primary-color);
    background: #f0f8fd;
    box-shadow: 0 4px 14px rgba(129,188,233,0.28);
}

/* Name label below a structure/style card preview */
.section-card-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-top: 6px;
}

/* ===== SECTION 18: CARE PLAN ADD-ON ===== */

.addon-cards {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.addon-card {
    flex: 1;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    padding: 1.25rem 1.25rem 1rem;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    background: #fff;
}

.addon-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 14px rgba(95, 179, 214, 0.18);
}

.addon-card.selected {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fff 0%, #eef7fc 100%);
    box-shadow: 0 6px 20px rgba(95, 179, 214, 0.25);
}

.addon-card-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.addon-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.addon-card-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    white-space: nowrap;
}

.addon-per-month {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-light);
}

.addon-price-free {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
}

.addon-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.addon-features li {
    font-size: 0.875rem;
    color: var(--text-dark);
}

.addon-note {
    font-size: 0.75rem;
    color: var(--text-light);
    margin: 0;
}

.addon-skip-note {
    font-size: 0.875rem;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.s18-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
}

@media (max-width: 540px) {
    .addon-cards { flex-direction: column; }
}

/* ===== ENTERPRISE: CUSTOM PAGE BUILDER ===== */

/* Tabs row: existing tabs + "+ Add Page" button side by side */
.builder-tabs-row {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.builder-tabs-row .builder-page-tabs {
    flex: 1;
    min-width: 0;
    margin-bottom: 0;
}

.add-custom-page-btn {
    flex-shrink: 0;
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: transparent;
    border: 2px dashed var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
    align-self: flex-start;
}

.add-custom-page-btn:hover {
    background: #e8f4fb;
}

/* Custom page panel top row: editable name + delete */
.custom-page-name-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #e5e7eb;
}

.custom-page-name-input {
    flex: 1;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: inherit;
    border: none;
    border-bottom: 2px solid #e5e7eb;
    border-radius: 0;
    padding: 0.25rem 0.1rem;
    outline: none;
    background: transparent;
    transition: border-color 0.2s;
}

.custom-page-name-input:focus {
    border-bottom-color: var(--primary-color);
}

.remove-custom-page-btn {
    font-size: 0.78rem;
    font-weight: 600;
    color: #ef4444;
    background: none;
    border: 1px solid #fca5a5;
    border-radius: 6px;
    padding: 0.28rem 0.6rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}

.remove-custom-page-btn:hover {
    background: #fef2f2;
}

/* Custom sections list */
.custom-sections-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.custom-page-empty {
    text-align: center;
    color: var(--text-light);
    font-size: 0.875rem;
    padding: 1.5rem 0 0.5rem;
}

/* Individual custom section row */
.custom-section-row {
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 0.85rem 0.9rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.custom-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-section-drag {
    color: #d1d5db;
    font-size: 1rem;
    cursor: grab;
    flex-shrink: 0;
    user-select: none;
}

.custom-section-name-input {
    flex: 1;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: inherit;
    color: var(--text-dark);
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 0.32rem 0.6rem;
    outline: none;
    background: #fff;
    transition: border-color 0.2s;
}

.custom-section-name-input:focus {
    border-color: var(--primary-color);
}

.remove-custom-section-btn {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #9ca3af;
    font-size: 1rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, color 0.2s;
}

.remove-custom-section-btn:hover {
    border-color: #ef4444;
    color: #ef4444;
}

/* Block type picker grid */
.block-type-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.block-type-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    width: 74px;
    padding: 8px 5px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
    text-align: center;
}

.block-type-card:hover {
    border-color: var(--primary-color);
    background: #f0f8fd;
}

.block-type-card.active {
    border-color: var(--primary-color);
    background: #e8f4fb;
    box-shadow: 0 2px 8px rgba(95, 179, 214, 0.25);
}

.block-type-emoji {
    font-size: 1.3rem;
    line-height: 1;
}

.block-type-label {
    font-size: 0.63rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.2;
    word-break: break-word;
}

.block-type-card.active .block-type-label {
    color: var(--primary-dark);
}

/* Add section button */
.add-custom-section-btn {
    width: 100%;
    padding: 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    background: transparent;
    border: 2px dashed #b3d9ed;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, border-color 0.2s;
}

.add-custom-section-btn:hover {
    background: #e8f4fb;
    border-color: var(--primary-color);
}

/* ===== COLOR PALETTE CARD GRID (Section 4) ===== */

/* Color Scheme selector cards */
.section-style-grid--schemes .section-style-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    min-width: 100px;
}

.scheme-preview {
    display: flex;
    width: 96px;
    height: 32px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.scheme-swatch {
    flex: 1;
}

/* Color role cards (circles) */
.section-style-grid--colors .section-style-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 10px;
    min-width: 88px;
}

.color-circle-preview {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #e5e7eb;
    flex-shrink: 0;
}

/* Wireframe preview area inside each card */
.wf-preview {
    width: 160px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    background: #fafafa;
    border: 1px solid #f0f0f0;
    box-sizing: border-box;
}

/* Responsive */
@media (max-width: 640px) {
    .wf-preview {
        width: 130px;
        height: 84px;
    }

    .builder-page-tab {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}