/* ===================================
   OceanAds - Minimal Premium Design
   Inspired by WebAvenue
   =================================== */

/* CSS Variables */
:root {
    --primary: #4F7CFF;
    --primary-dark: #3D5FCC;
    --primary-light: #EEF3FF;
    
    --dark: #1a1a2e;
    --text: #4a4a5a;
    --text-light: #7a7a8a;
    --text-muted: #a0a0b0;
    
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --gray-100: #F0F1F3;
    --gray-200: #E0E2E6;
    
    --font-main: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-handwritten: 'Caveat', cursive;
    
    --section-gap: 120px;
    --container: 1140px;
    
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius: 16px;
    --radius-sm: 10px;
}

/* ===================================
   Preloader
   =================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: linear-gradient(180deg, #EEF3FF 0%, #fff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    width: 80px;
    height: 80px;
}

.preloader-logo svg {
    width: 100%;
    height: 100%;
}

.preloader-logo .wave-1 {
    animation: preloader-wave 1.2s ease-in-out infinite;
}

.preloader-logo .wave-2 {
    animation: preloader-wave 1.2s ease-in-out infinite 0.2s;
}

@keyframes preloader-wave {
    0%, 100% { 
        transform: translateY(0); 
        opacity: 1;
    }
    50% { 
        transform: translateY(-8px); 
        opacity: 0.6;
    }
}

.preloader-waves {
    display: flex;
    gap: 6px;
    height: 40px;
    align-items: flex-end;
}

.preloader-waves .wave {
    width: 8px;
    height: 20px;
    background: var(--primary);
    border-radius: 4px;
    animation: wave-bar 1s ease-in-out infinite;
}

.preloader-waves .wave:nth-child(1) { animation-delay: 0s; }
.preloader-waves .wave:nth-child(2) { animation-delay: 0.15s; }
.preloader-waves .wave:nth-child(3) { animation-delay: 0.3s; }

@keyframes wave-bar {
    0%, 100% { 
        height: 20px;
        opacity: 0.5;
    }
    50% { 
        height: 40px;
        opacity: 1;
    }
}

.preloader-text {
    font-family: var(--font-main);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    letter-spacing: 0.5px;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-main);
    color: var(--text);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

p { color: var(--text); }

.handwritten {
    font-family: var(--font-handwritten);
    color: var(--primary);
    font-size: 1.2em;
    font-weight: 600;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-sub {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-top: 16px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-text {
    color: var(--text);
    padding: 14px 0;
}

.btn-text:hover {
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 14px 0;
    box-shadow: 0 1px 0 var(--gray-100);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    width: 36px;
    height: 36px;
}

.logo-accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-cta {
    padding: 12px 24px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.2s;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 0;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--white) 100%);
    overflow: hidden;
}

/* Subtle waves background */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 400px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234F7CFF' fill-opacity='0.08' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,218.7C672,235,768,245,864,234.7C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    height: 350px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234F7CFF' fill-opacity='0.05' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,149.3C672,149,768,171,864,165.3C960,160,1056,128,1152,122.7C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-micro {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.hero-img {
    border-radius: var(--radius);
}

/* Image Placeholders */
.hero-img-placeholder,
.img-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gray-100);
    border: 2px dashed var(--gray-200);
    border-radius: var(--radius);
    padding: 60px 40px;
    min-height: 400px;
    text-align: center;
}

.hero-img-placeholder span,
.img-placeholder span {
    font-weight: 600;
    color: var(--text-light);
}

.hero-img-placeholder small,
.img-placeholder small {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Hide placeholder when image exists */
.hero-img + .hero-img-placeholder,
.section-img + .img-placeholder {
    display: none;
}

/* ===================================
   Trust Strip
   =================================== */
.trust-strip {
    padding: 40px 0;
    border-bottom: 1px solid var(--gray-100);
}

.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.95rem;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

/* ===================================
   Problem Section
   =================================== */
.problem-section {
    padding: var(--section-gap) 0;
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.problem-image .img-placeholder {
    min-height: 350px;
}

.problem-content h2 {
    margin-bottom: 32px;
}

.problem-list {
    list-style: none;
    margin-bottom: 32px;
}

.problem-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.problem-list li:last-child {
    border: none;
}

.problem-list svg {
    width: 22px;
    height: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.problem-list span {
    font-size: 1.05rem;
}

.problem-solution {
    font-size: 1.15rem;
    color: var(--dark);
}

.problem-solution strong {
    color: var(--primary);
}

/* ===================================
   The System Section
   =================================== */
.system-section {
    position: relative;
    padding: var(--section-gap) 0;
    background: var(--off-white);
    overflow: hidden;
}

.system-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border: 2px solid rgba(79, 124, 255, 0.1);
    border-radius: 50%;
    animation: rotate-slow 20s linear infinite;
    pointer-events: none;
}

.system-section::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 2px solid rgba(79, 124, 255, 0.08);
    border-radius: 50%;
    animation: rotate-slow 15s linear infinite reverse;
    pointer-events: none;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.pillar-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.pillar-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1);
}

.pillar-icon {
    transition: transform 0.3s ease;
}

.pillar-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    color: var(--primary);
    margin-bottom: 20px;
}

.pillar-icon svg {
    width: 24px;
    height: 24px;
}

.pillar-card h3 {
    margin-bottom: 10px;
}

.pillar-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.system-note {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
}

/* ===================================
   Services Section
   =================================== */
.services-section {
    padding: var(--section-gap) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.services-header h2 {
    position: sticky;
    top: 120px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.service-item {
    padding: 24px;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.service-item:hover {
    background: var(--primary-light);
}

.service-item h4 {
    margin-bottom: 8px;
}

.service-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* ===================================
   Who It's For Section
   =================================== */
.who-section {
    position: relative;
    padding: var(--section-gap) 0;
    background: var(--off-white);
    overflow: hidden;
}

/* Decorative line */
.who-section::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(79, 124, 255, 0.2));
    animation: line-pulse 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes line-pulse {
    0%, 100% { width: 60px; opacity: 0.3; }
    50% { width: 120px; opacity: 0.6; }
}

.who-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-content h2 {
    margin-bottom: 40px;
}

.audience-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.audience-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-sm);
}

.audience-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.audience-icon svg {
    width: 24px;
    height: 24px;
}

.audience-item h4 {
    margin-bottom: 4px;
}

.audience-item p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.who-note {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.who-image .img-placeholder {
    min-height: 400px;
}

/* ===================================
   How We Work Section
   =================================== */
.how-section {
    padding: var(--section-gap) 0;
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.how-image .img-placeholder {
    min-height: 350px;
}

.how-content h2 {
    margin-bottom: 40px;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.process-item {
    display: flex;
    gap: 16px;
}

.process-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    flex-shrink: 0;
}

.process-item h4 {
    margin-bottom: 6px;
}

.process-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.how-note {
    font-size: 1.1rem;
    color: var(--text);
}

/* ===================================
   Proof Section
   =================================== */
.proof-section {
    padding: var(--section-gap) 0;
    background: var(--off-white);
}

.metrics-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.metric-item {
    padding: 14px 24px;
    background: var(--white);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text);
}

.proof-note {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
}

/* ===================================
   FAQ Section
   =================================== */
.faq-section {
    padding: var(--section-gap) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.faq-header h2 {
    position: sticky;
    top: 120px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--off-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
}

/* ===================================
   CTA Section
   =================================== */
.cta-section {
    padding: var(--section-gap) 0;
    background: var(--primary-light);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.cta-image {
    position: relative;
}

.cta-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, var(--primary) 0%, #7C9FFF 100%);
    border-radius: var(--radius);
    z-index: 0;
}

.cta-image::after {
    content: '';
    position: absolute;
    top: 40px;
    left: 40px;
    right: -40px;
    bottom: -40px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%234F7CFF' fill-opacity='0.15' d='M0,160L48,170.7C96,181,192,203,288,192C384,181,480,139,576,138.7C672,139,768,181,864,197.3C960,213,1056,203,1152,176C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    border-radius: var(--radius);
    z-index: 0;
    opacity: 0.5;
}

.cta-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.cta-image .img-placeholder {
    position: relative;
    z-index: 1;
    min-height: 450px;
    background: var(--white);
    border-radius: var(--radius);
    border: 4px solid var(--white);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--text-light);
    margin-bottom: 32px;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cta-form input,
.cta-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.cta-form input:focus,
.cta-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
    color: var(--text-muted);
}

.cta-form textarea {
    resize: vertical;
    min-height: 100px;
}

.email-link {
    display: block;
    text-align: center;
    color: var(--text-light);
    font-size: 0.95rem;
}

.email-link:hover {
    color: var(--primary);
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-company h4 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.footer-company p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

/* ===================================
   Responsive
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-gap: 80px;
    }
    
    .hero-content,
    .problem-grid,
    .who-grid,
    .how-grid,
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .services-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-header h2,
    .faq-header h2 {
        position: static;
    }
    
    .pillars {
        grid-template-columns: 1fr;
    }
    
    .hero-image,
    .problem-image,
    .who-image,
    .how-image,
    .cta-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    /* Hide decorative elements on mobile */
    .system-section::before,
    .system-section::after,
    .who-section::before,
    .cta-image::after {
        display: none;
    }
    
    .nav-links,
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 130px 0 60px;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .trust-items {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 32px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        gap: 16px 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .img-placeholder,
    .hero-img-placeholder {
        min-height: 250px !important;
        padding: 40px 24px;
    }
    
    /* Fix CTA image on mobile */
    .cta-image::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
    
    .cta-image img {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .btn-lg {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
    html { scroll-behavior: auto; }
}
