/* CSS Custom Properties */
:root {
    --brand-sky: #46A6FF;
    --brand-deep: #0A69C0;
    --brand-soft: #E8F4FF;
    --ink: #132238;
    --muted: #5B6B7A;
    --white: #FFFFFF;
    --light-gray: #F8FAFC;
    --border: #E2E8F0;
    --shadow: rgba(19, 34, 56, 0.1);
    --shadow-lg: rgba(19, 34, 56, 0.15);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--ink);
    background-color: var(--white);
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--ink);
    color: var(--white);
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px;
}

.skip-link:focus {
    top: 6px;
}

/* Focus styles */
*:focus {
    outline: 2px solid var(--brand-sky);
    outline-offset: 2px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--ink);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

h4 {
    font-size: 1.125rem;
}

p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
}

.nav {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--brand-sky);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--brand-deep);
    margin-top: 0.25rem;
    font-weight: 500;
    text-align: center;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--brand-sky);
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-arrow,
.dropdown[aria-expanded="true"] .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: 0 10px 25px var(--shadow-lg);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 200;
}

.dropdown:hover .dropdown-menu,
.dropdown[aria-expanded="true"] .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: var(--ink);
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--brand-soft);
    color: var(--brand-deep);
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--ink);
    transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 10px 25px var(--shadow-lg);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        padding: 1rem;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-item {
        border-bottom: 1px solid var(--border);
    }
    
    .nav-item:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 1rem 0;
        justify-content: space-between;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--brand-soft);
        margin-top: 1rem;
        border-radius: 4px;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--brand-sky);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brand-deep);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px rgba(70, 166, 255, 0.3);
}

.btn-secondary {
    background: var(--muted);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--ink);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 5px 15px var(--shadow);
}

.btn-outline {
    background: transparent;
    color: var(--brand-sky);
    border: 2px solid var(--brand-sky);
}

.btn-outline:hover {
    background: var(--brand-sky);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* Interactive Elements */
.interactive-element {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.interactive-element:hover {
    transform: translateY(-2px);
}

/* Scroll Animations */
@keyframes slideInFromBottom {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-animate {
    animation: slideInFromBottom 0.8s ease-out;
}

/* Loading Animation */
.loading-dots {
    display: inline-block;
}

.loading-dots::after {
    content: '';
    animation: dots 1.5s steps(5, end) infinite;
}

@keyframes dots {
    0%, 20% { content: ''; }
    40% { content: '.'; }
    60% { content: '..'; }
    80%, 100% { content: '...'; }
}

/* Floating Animation */
.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Glow Effect */
.glow-on-hover {
    transition: all 0.3s ease;
}

.glow-on-hover:hover {
    box-shadow: 0 0 20px rgba(70, 166, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--brand-soft) 0%, var(--white) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%2346A6FF" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%230A69C0" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.limited-offer-banner {
    background: linear-gradient(45deg, #ff6b6b, #feca57, #48dbfb, #ff9ff3);
    background-size: 400% 400%;
    animation: gradientShift 3s ease infinite;
    padding: 1rem;
    margin-bottom: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(255, 107, 107, 0.3);
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.offer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    color: white;
    font-weight: 600;
}

.offer-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.offer-text {
    font-size: 1.125rem;
}

.offer-timer {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0.7; }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 500px;
}

.animated-title {
    animation: slideInUp 1s ease-out;
}

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

.hero-text h1 {
    color: var(--ink);
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted);
    margin-bottom: 2rem;
}

.hero-services {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-tag {
    background: var(--brand-sky);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: fadeInScale 0.8s ease-out;
    transition: transform 0.3s ease;
}

.service-tag:hover {
    transform: scale(1.1);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-image {
    text-align: center;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-portrait {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    object-fit: cover;
    box-shadow: 0 20px 40px var(--shadow-lg);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-portrait:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px var(--shadow-lg);
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .hero-portrait {
        width: 200px;
        height: 200px;
    }
    
    .offer-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-services {
        justify-content: center;
    }
}

/* Quick Tiles */
.quick-tiles {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    animation: slideInUp 0.8s ease-out;
}

.animated-tile {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.animated-tile:nth-child(1) { animation-delay: 0.1s; }
.animated-tile:nth-child(2) { animation-delay: 0.2s; }
.animated-tile:nth-child(3) { animation-delay: 0.3s; }
.animated-tile:nth-child(4) { animation-delay: 0.4s; }
.animated-tile:nth-child(5) { animation-delay: 0.5s; }
.animated-tile:nth-child(6) { animation-delay: 0.6s; }

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.tile {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 166, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.tile:hover::before {
    left: 100%;
}

.tile:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 35px var(--shadow-lg);
    border-color: var(--brand-sky);
}

.tile h3 {
    color: var(--brand-sky);
    margin-bottom: 0.5rem;
}

.tile p {
    color: var(--muted);
    margin: 0;
}

/* Pricing */
.pricing {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--brand-soft) 100%);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%2346A6FF" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    pointer-events: none;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--muted);
    margin-bottom: 3rem;
}

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

.animated-card {
    animation: slideInUp 0.8s ease-out;
    animation-fill-mode: both;
}

.animated-card:nth-child(1) { animation-delay: 0.2s; }
.animated-card:nth-child(2) { animation-delay: 0.4s; }
.animated-card:nth-child(3) { animation-delay: 0.6s; }

.pricing-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 25px var(--shadow);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--brand-sky), var(--brand-deep));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.pricing-card:hover::before {
    opacity: 0.05;
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

.discount-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    animation: bounce 2s infinite;
    z-index: 2;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--brand-deep);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-lg);
    border-color: var(--brand-sky);
}

.pricing-card.featured {
    border-color: var(--brand-sky);
    transform: scale(1.05);
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 1rem;
}

.original-price {
    font-size: 1.25rem;
    color: var(--muted);
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.discounted-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--brand-sky);
    animation: priceGlow 2s ease-in-out infinite;
}

@keyframes priceGlow {
    0%, 100% { text-shadow: 0 0 5px rgba(70, 166, 255, 0.3); }
    50% { text-shadow: 0 0 20px rgba(70, 166, 255, 0.6); }
}

.offer-countdown {
    text-align: center;
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 12px;
    border: 2px dashed #ff6b6b;
}

.offer-countdown p {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ff6b6b;
    margin: 0;
}

#countdown-timer {
    font-weight: bold;
    animation: urgency 1s ease-in-out infinite;
}

@keyframes urgency {
    0%, 100% { color: #ff6b6b; }
    50% { color: #e74c3c; }
}

.pricing-card h3 {
    margin-bottom: 1rem;
    color: var(--ink);
}

.pricing-card p {
    color: var(--muted);
    margin-bottom: 2rem;
}

/* Reviews */
.reviews-preview {
    padding: 4rem 0;
    background: var(--white);
}

.reviews-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.review {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    border-left: 4px solid var(--brand-sky);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
}

.review:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 25px var(--shadow-lg);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.review p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--ink);
}

.review cite {
    font-style: normal;
    font-weight: 500;
    color: var(--brand-sky);
}

/* Contact Strip */
.contact-strip {
    padding: 3rem 0;
    background: var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.contact-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(70, 166, 255, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-item {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
}

.contact-item:hover {
    color: var(--brand-soft);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(19, 34, 56, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(19, 34, 56, 0.3);
    transform: scale(0.8) rotate(5deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active .modal {
    transform: scale(1) rotate(0deg);
}

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

.modal-header h2 {
    margin: 0;
    color: var(--ink);
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--muted);
    padding: 0.5rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--ink);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.modal-body p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: var(--muted);
}

.modal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--ink);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    opacity: 0.8;
}

.footer-section a:hover {
    color: var(--brand-soft);
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid var(--muted);
    padding-top: 2rem;
    text-align: center;
}

/* Form Styles */
.form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--ink);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    border-color: var(--brand-sky);
    outline: none;
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-required {
    color: #dc2626;
}

.form-note {
    background: var(--brand-soft);
    border: 1px solid var(--brand-sky);
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem 0;
    color: var(--brand-deep);
}

.form-input.error,
.form-textarea.error,
.form-select.error {
    border-color: #dc2626;
    background-color: #fef2f2;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px var(--shadow-lg);
}

.card-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.card-body {
    padding: 1.5rem;
}

.card-title {
    margin-bottom: 0.5rem;
    color: var(--ink);
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--brand-sky);
    color: var(--white);
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.badge.coming-soon {
    background: var(--muted);
}

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

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 5px 15px var(--shadow);
}

.step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--brand-sky);
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-weight: bold;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.step-title {
    margin-bottom: 0.5rem;
    color: var(--ink);
}

.step-description {
    color: var(--muted);
    margin: 0;
}

/* FAQ */
.faq-item {
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--ink);
}

.faq-question:hover {
    background: var(--brand-soft);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 1.5rem 1rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--muted);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .pricing-grid,
    .reviews-grid,
    .tiles-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .quick-tiles,
    .pricing,
    .reviews-preview {
        padding: 2rem 0;
    }
    
    .modal-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Section Images */
.section-image {
    margin-bottom: 3rem;
    text-align: center;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 15px 35px var(--shadow-lg);
}

.section-photo {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px;
}

.section-photo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .section-photo {
        height: 200px;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: var(--ink);
        border: 2px solid var(--ink);
    }
    
    .btn-primary:hover {
        background: var(--brand-deep);
        border-color: var(--brand-deep);
    }
    
    .tile,
    .pricing-card,
    .review {
        border: 2px solid var(--ink);
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .nav-toggle,
    .modal-overlay {
        display: none;
    }
    
    .hero,
    .pricing,
    .reviews-preview,
    .contact-strip {
        background: var(--white) !important;
    }
    
    .btn {
        display: none;
    }
}