/* ==========================================================================
   Pelican Pools - Premium Landing Page
   High-converting design following 2024-2025 best practices
   ========================================================================== */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #0369a1;
    --primary-dark: #075985;
    --primary-light: #0ea5e9;
    --accent: #f97316;
    --accent-dark: #ea580c;
    --accent-darker: #c2410c; /* For text on white - better contrast */
    --accent-light: #fb923c;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    --white: #ffffff;
    --black: #000000;

    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ==========================================================================
   Mobile Sticky CTA (Bottom Bar)
   ========================================================================== */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    padding: 12px 16px;
    box-shadow: 0 -4px 20px rgb(0 0 0 / 0.15);
    gap: 12px;
}

.sticky-call, .sticky-form {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    min-height: 48px; /* Touch target requirement */
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s ease;
}

.sticky-call {
    background: var(--primary-dark);
    color: var(--white);
}

.sticky-form {
    background: var(--primary);
    color: var(--white);
}

/* ==========================================================================
   Hero Section - Centered Layout
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, #0c4a6e 0%, #075985 40%, #0369a1 100%);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero-pool.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.2;
}

.hero-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 24px 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Logo Bar */
.hero-logo-bar {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.logo-wrapper {
    background: var(--white);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.hero-logo {
    height: 48px;
    width: auto;
    display: block;
}

.hero-top-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--primary-dark);
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 16px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.hero-top-phone:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Centered Hero Content */
.hero-center {
    color: var(--white);
    margin-bottom: 40px;
}

.hero-offer-badge {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    padding: 14px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgb(249 115 22 / 0.4);
    margin-bottom: 32px;
}

.offer-label {
    background: var(--white);
    color: var(--accent-darker);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.offer-price {
    font-size: 20px;
    color: var(--white);
}

.offer-price strong {
    font-size: 26px;
    font-weight: 800;
}

.hero h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--white);
}

.hero-tagline {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 28px;
    line-height: 1.5;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.hero-features-row {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
}

.feature svg {
    color: #4ade80;
    flex-shrink: 0;
}

/* Form Card - Centered & Wide */
.hero-form-wrapper {
    width: 100%;
    max-width: 600px;
    margin-bottom: 40px;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 40px 32px;
    box-shadow: var(--shadow-2xl);
}

.form-header {
    text-align: center;
    margin-bottom: 28px;
}

.form-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.form-header p {
    color: var(--gray-500);
    font-size: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    text-align: left;
}

.form-field input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius);
    font-size: 16px;
    font-family: inherit;
    transition: all 0.2s ease;
    background: var(--white);
    height: 52px;
}

.form-field input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(3, 105, 161, 0.1);
}

.form-field input::placeholder {
    color: var(--gray-400);
}

.form-submit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 18px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgb(249 115 22 / 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(249 115 22 / 0.4);
}

.form-privacy {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    color: var(--gray-500);
}

.form-privacy svg {
    color: var(--gray-400);
}

.form-trust-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-600);
}

.trust-badge svg {
    color: var(--primary);
}

/* Hero Trust Bar */
.hero-trust-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    color: var(--white);
    flex-wrap: wrap;
}

.hero-trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    opacity: 0.95;
}

.hero-trust-bar .stars {
    display: flex;
    gap: 2px;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
    background: var(--gray-900);
    padding: 32px 24px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--gray-700);
}

/* ==========================================================================
   Sections Common
   ========================================================================== */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 560px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Value Props
   ========================================================================== */
.value-props {
    padding: 100px 0;
    background: var(--white);
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.prop-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.prop-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.prop-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    overflow: hidden;
}

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

.prop-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 50%);
}

.prop-content {
    padding: 28px 24px;
}

.prop-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--white);
}

.prop-content h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.prop-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.props-cta {
    text-align: center;
}

/* CTA Buttons */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px rgb(249 115 22 / 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgb(249 115 22 / 0.4);
}

/* ==========================================================================
   What's Included
   ========================================================================== */
.included {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.included-item {
    text-align: center;
    padding: 32px 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.included-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.included-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.included-item h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.included-item p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 24px;
    font-style: normal;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
}

.author-info strong {
    display: block;
    font-size: 15px;
    color: var(--gray-900);
}

.author-info span {
    font-size: 14px;
    color: var(--gray-500);
}

/* Google Badge */
.google-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    max-width: 360px;
    margin: 0 auto;
    border: 1px solid var(--gray-100);
}

.google-icon {
    flex-shrink: 0;
}

.google-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--gray-900);
}

.rating-stars {
    display: flex;
    gap: 2px;
}

.review-count {
    font-size: 13px;
    color: var(--gray-500);
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
    padding: 100px 0;
    background: var(--gray-50);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    margin-bottom: 56px;
}

.step-card {
    flex: 1;
    max-width: 320px;
    text-align: center;
    padding: 0 24px;
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(3, 105, 161, 0.3);
}

.step-content h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--gray-600);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: var(--gray-300);
    margin-top: 32px;
    flex-shrink: 0;
}

.steps-cta {
    text-align: center;
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-choose-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.why-choose-intro {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    line-height: 1.6;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.why-item {
    display: flex;
    gap: 20px;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: var(--gray-100);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.why-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}

.why-text p {
    color: var(--gray-600);
    line-height: 1.5;
}

.why-choose-image {
    position: relative;
    min-height: 500px; /* Reserve space to prevent CLS */
}

.why-choose-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.image-badge {
    position: absolute;
    bottom: -24px;
    left: 24px;
    background: var(--white);
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.badge-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.badge-text {
    font-size: 13px;
    color: var(--gray-600);
    margin-top: 4px;
}

/* ==========================================================================
   Comparison
   ========================================================================== */
.comparison {
    padding: 100px 0;
    background: var(--gray-50);
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto 48px;
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.comparison-header {
    background: var(--gray-900);
}

.comparison-header .comparison-col {
    padding: 20px 24px;
    font-weight: 700;
    color: var(--white);
    font-size: 15px;
}

.comparison-header .comparison-col.pro {
    background: var(--primary);
}

.comparison-row {
    border-bottom: 1px solid var(--gray-100);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row .comparison-col {
    padding: 18px 24px;
    font-size: 15px;
}

.comparison-row .comparison-col.label {
    font-weight: 600;
    color: var(--gray-700);
}

.comparison-row .comparison-col.diy {
    color: var(--gray-500);
    background: var(--gray-50);
}

.comparison-row .comparison-col.pro {
    background: rgba(3, 105, 161, 0.05);
}

.comparison-row .comparison-col.highlight {
    color: var(--primary);
    font-weight: 600;
}

.comparison-cta {
    text-align: center;
}

.comparison-cta p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 20px;
}

.comparison-cta strong {
    color: var(--gray-900);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    padding: 100px 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 56px;
}

.faq-item {
    padding: 28px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
}

.faq-item h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.faq-item p {
    color: var(--gray-600);
    line-height: 1.6;
}

.faq-cta {
    text-align: center;
}

.faq-cta p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.cta-secondary-dark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: var(--gray-900);
    color: var(--white);
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-secondary-dark:hover {
    background: var(--gray-800);
    transform: translateY(-2px);
}

/* ==========================================================================
   Service Areas
   ========================================================================== */
.service-areas {
    padding: 80px 0;
    background: var(--gray-50);
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.areas-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.areas-text > p {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 28px;
}

.areas-extra {
    margin-top: 24px;
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.7;
}

.areas-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.area-tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    background: var(--gray-100);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    transition: all 0.2s ease;
}

.area-tag:hover {
    background: var(--primary);
    color: var(--white);
}

.areas-cta-box {
    background: var(--gray-50);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 1px solid var(--gray-200);
}

.areas-cta-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.areas-cta-box > p {
    color: var(--gray-500);
    margin-bottom: 24px;
}

/* ==========================================================================
   Final CTA
   ========================================================================== */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    text-align: center;
}

.final-cta-content h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.final-cta-content > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--white);
    color: var(--primary-dark);
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 700;
    transition: all 0.2s ease;
    box-shadow: var(--shadow-lg);
}

.cta-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-outline {
    display: inline-flex;
    align-items: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius);
    font-size: 17px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.final-trust {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.final-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 60px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 48px;
    width: auto;
    margin-bottom: 16px;
}

.footer-brand p {
    line-height: 1.6;
}

.footer-contact h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-contact a {
    color: var(--gray-400);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 14px;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Tablet */
@media (max-width: 1024px) {
    .props-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .areas-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .areas-cta-box {
        max-width: 400px;
        margin: 0 auto;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .why-choose-image {
        order: -1;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
        gap: 40px;
    }

    .step-card {
        max-width: 100%;
    }
}

/* Mobile */
@media (max-width: 768px) {
    body {
        padding-bottom: 68px; /* Reserve space for sticky CTA to prevent CLS */
    }

    .mobile-sticky-cta {
        display: flex;
        height: 68px; /* Fixed height to prevent CLS */
    }

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 24px 20px 40px;
    }

    .hero-logo-bar {
        margin-bottom: 32px;
    }

    .logo-wrapper {
        padding: 10px 16px;
    }

    .hero-logo {
        height: 36px;
    }

    .hero-top-phone {
        padding: 10px 14px;
        font-size: 14px;
    }

    .hero-top-phone svg {
        width: 16px;
        height: 16px;
    }

    .hero-center {
        margin-bottom: 32px;
    }

    .hero-offer-badge {
        flex-direction: column;
        gap: 8px;
        padding: 14px 24px;
        margin-bottom: 24px;
    }

    .offer-price strong {
        font-size: 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-tagline {
        font-size: 17px;
    }

    .hero-features-row {
        gap: 16px;
    }

    .feature {
        font-size: 14px;
    }

    .hero-form-wrapper {
        max-width: 100%;
    }

    .form-card {
        padding: 28px 24px 24px;
        border-radius: var(--radius-lg);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-header h2 {
        font-size: 22px;
    }

    .form-submit {
        font-size: 16px;
        padding: 16px 24px;
    }

    .hero-trust-bar {
        gap: 16px;
    }

    .trust-divider {
        display: none;
    }

    .hero-trust-bar .trust-item {
        font-size: 13px;
    }

    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-label {
        font-size: 12px;
    }

    .value-props,
    .testimonials,
    .service-areas {
        padding: 64px 0;
    }

    .included,
    .final-cta {
        padding: 64px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .section-header p {
        font-size: 16px;
    }

    .props-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .prop-image {
        height: 180px;
    }

    .included-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .included-item {
        padding: 24px 12px;
    }

    .included-icon {
        width: 52px;
        height: 52px;
    }

    .included-item h3 {
        font-size: 14px;
    }

    .included-item p {
        font-size: 12px;
    }

    .testimonial-card {
        padding: 24px;
    }

    .areas-text h2 {
        font-size: 26px;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-white,
    .cta-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .final-trust {
        flex-wrap: wrap;
        gap: 16px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    /* Add padding for sticky CTA */
    .footer {
        padding-bottom: 100px;
    }

    /* How It Works - Mobile */
    .how-it-works {
        padding: 64px 0;
    }

    .steps-grid {
        gap: 32px;
    }

    .step-number {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    /* Why Choose - Mobile */
    .why-choose {
        padding: 64px 0;
    }

    .why-choose-content h2 {
        font-size: 28px;
    }

    .why-choose-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .why-list {
        gap: 24px;
    }

    .why-icon {
        width: 44px;
        height: 44px;
    }

    .why-text h3 {
        font-size: 16px;
    }

    .why-choose-image img {
        height: 350px;
    }

    .image-badge {
        bottom: -20px;
        left: 16px;
        padding: 16px 20px;
    }

    .badge-number {
        font-size: 28px;
    }

    /* Comparison - Mobile */
    .comparison {
        padding: 64px 0;
    }

    .comparison-table {
        border-radius: var(--radius-lg);
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .comparison-header .comparison-col {
        padding: 14px 12px;
        font-size: 13px;
    }

    .comparison-row .comparison-col {
        padding: 14px 12px;
        font-size: 13px;
    }

    .comparison-cta p {
        font-size: 16px;
    }

    /* FAQ - Mobile */
    .faq {
        padding: 64px 0;
    }

    .faq-item {
        padding: 24px 20px;
    }

    .faq-item h3 {
        font-size: 16px;
    }

    .faq-cta p {
        font-size: 16px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-logo-bar {
        flex-direction: column;
        gap: 12px;
    }

    .hero-top-phone {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: 26px;
    }

    .hero-tagline {
        font-size: 16px;
    }

    .hero-features-row {
        flex-direction: column;
        gap: 12px;
    }

    .included-grid {
        grid-template-columns: 1fr 1fr;
    }

    .google-badge {
        flex-direction: column;
        text-align: center;
    }

    /* Comparison - Small Mobile */
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-header {
        display: none;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        border-bottom: 2px solid var(--gray-200);
        padding: 16px 0;
    }

    .comparison-row:first-of-type {
        padding-top: 0;
    }

    .comparison-row .comparison-col {
        padding: 8px 20px;
        border: none;
    }

    .comparison-row .comparison-col.label {
        font-weight: 700;
        color: var(--gray-900);
        font-size: 15px;
        padding-bottom: 12px;
        background: transparent;
    }

    .comparison-row .comparison-col.diy,
    .comparison-row .comparison-col.pro {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .comparison-row .comparison-col.diy::before {
        content: "DIY:";
        font-weight: 600;
        color: var(--gray-500);
    }

    .comparison-row .comparison-col.pro::before {
        content: "Pelican:";
        font-weight: 600;
        color: var(--primary);
    }

    /* Why Choose - Small Mobile */
    .why-choose-image img {
        height: 280px;
    }

    .why-item {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Steps - Small Mobile */
    .step-card {
        padding: 0 16px;
    }

    .step-number {
        width: 52px;
        height: 52px;
        font-size: 22px;
    }

    /* FAQ - Small Mobile */
    .faq-item {
        padding: 20px 16px;
    }

    .faq-item h3 {
        font-size: 15px;
    }

    .faq-item p {
        font-size: 14px;
    }
}
