/* ====================================
   RESET & BASE STYLES
   ==================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue-50: #eff6ff;
    --blue-100: #dbeafe;
    --blue-200: #bfdbfe;
    --blue-400: #60a5fa;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --blue-800: #1e40af;
    
    --indigo-50: #eef2ff;
    --indigo-600: #4f46e5;
    
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;
    
    --green-100: #dcfce7;
    --green-600: #16a34a;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--slate-900);
    background: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.icon {
    flex-shrink: 0;
}

/* ====================================
   NAVIGATION
   ==================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: transparent;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
}

.navbar.navbar-scrolled {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}


.logo-image {
    height: 50px !important;
    width: auto;
}


.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-link {
    color: var(--slate-600);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--blue-600);
}

.nav-link.active {
    color: var(--blue-600);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-left: 1rem;
    margin-left: 1rem;
    border-left: 1px solid var(--slate-200);
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background: none;
    border: none;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    padding: 0.5rem;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.lang-toggle:hover {
    color: var(--blue-600);
}

.btn-primary {
    background: var(--blue-600);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: var(--blue-700);
    transform: scale(1.05);
}

.btn-primary:active {
    transform: scale(0.95);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 1.5rem;
    height: 2px;
    background: var(--slate-800);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.mobile-menu.active {
    max-height: 500px;
    padding: 1.5rem;
    border-bottom: 1px solid var(--slate-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none;
    }
}

.mobile-link {
    color: var(--slate-800);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-link:hover {
    color: var(--blue-600);
}

.lang-toggle-mobile {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--slate-700);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.75rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid var(--slate-100);
}

/* ====================================
   HERO SECTION
   ==================================== */
.hero {
    position: relative;
    padding-top: 8rem;
    padding-bottom: 5rem;
    background: white;
    overflow: hidden;
}

@media (min-width: 640px) {
    .hero {
        padding-top: 12rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding-top: 12rem;
        padding-bottom: 10rem;
    }
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.hero-blob-1 {
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: var(--blue-50);
    transform: translate(25%, -50%);
}

.hero-blob-2 {
    bottom: 0;
    left: 0;
    width: 500px;
    height: 500px;
    background: var(--indigo-50);
    transform: translate(-25%, 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 4rem;
    }
}

.hero-text {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-text {
        text-align: left;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--blue-50);
    border: 1px solid var(--blue-100);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: var(--blue-600);
}

.hero-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--blue-700);
}

.hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--slate-900);
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.text-gradient {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 42rem;
}

@media (min-width: 1024px) {
    .hero-subtitle {
        max-width: none;
    }
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .hero-buttons {
        justify-content: flex-start;
    }
}

.btn-hero-primary,
.btn-hero-secondary {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

@media (min-width: 640px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        width: auto;
    }
}

.btn-hero-primary {
    background: var(--blue-600);
    color: white;
    box-shadow: 0 20px 25px -5px rgba(37, 99, 235, 0.2);
}

.btn-hero-primary:hover {
    background: var(--blue-700);
}

.btn-hero-primary svg {
    transition: transform 0.3s ease;
}

.btn-hero-primary:hover svg {
    transform: translateX(4px);
}

.btn-hero-secondary {
    background: white;
    color: var(--slate-700);
    border: 1px solid var(--slate-200);
}

.btn-hero-secondary:hover {
    background: var(--slate-50);
}

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
    background: white;
    padding: 0.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--slate-100);
    overflow: hidden;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: scale(1.02);
}

.hero-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
    animation: float 6s ease-in-out infinite;
    z-index: 10;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.floating-card-1 {
    top: -2.5rem;
    right: -2.5rem;
    display: none;
}

@media (min-width: 640px) {
    .floating-card-1 {
        display: block;
    }
}

.floating-card-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    background: var(--slate-900);
    color: white;
    display: none;
    animation-delay: 1s;
}

@media (min-width: 640px) {
    .floating-card-2 {
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
}

.floating-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.floating-card-icon {
    width: 2rem;
    height: 2rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card-icon.success {
    background: var(--green-100);
    color: var(--green-600);
}

.floating-card-icon.primary {
    background: var(--blue-600);
    border-radius: 0.5rem;
}

.floating-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.floating-card-title {
    font-weight: 700;
}

.floating-card-text {
    font-size: 0.75rem;
    color: var(--slate-400);
}

/* ====================================
   STATS SECTION
   ==================================== */
.stats-section {
    padding: 5rem 0;
    background: var(--slate-50);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.stat-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue-600);
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .stat-value {
        font-size: 2.5rem;
    }
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ====================================
   OFFER SECTION (FIXED BACKGROUND)
   ==================================== */
.offer-section {
    position: relative;
    padding: 8rem 0;
    background-image: url('assets/production-bg.svg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.offer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 58, 138, 0.85) 100%);
    z-index: 1;
}

.offer-content {
    position: relative;
    z-index: 10;
}

.offer-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .offer-title {
        font-size: 3rem;
    }
}

.offer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .offer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.offer-card {
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.offer-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.offer-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.offer-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.75;
}

.offer-cta {
    text-align: center;
    padding: 2rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 1rem;
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.offer-cta p {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .offer-cta p {
        font-size: 1.75rem;
    }
}

/* ====================================
   SERVICES PREVIEW SECTION
   ==================================== */
.services-preview {
    padding: 6rem 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-600);
    max-width: 42rem;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-100);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--blue-600);
    color: white;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.service-link {
    color: var(--blue-600);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

/* Contribution Grid */
.contribution-grid {
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .contribution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .contribution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.contribution-grid .service-card {
    position: relative;
    padding: 2.5rem;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.contribution-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.contribution-grid .service-title {
    font-size: 1.375rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.contribution-grid .service-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    flex-grow: 1;
}

/* ====================================
   AI SECTION
   ==================================== */
.ai-section {
    padding: 6rem 0;
    background: var(--slate-900);
    color: white;
    position: relative;
    overflow: hidden;
}

.ai-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
}

.ai-blob-1 {
    top: 2.5rem;
    left: 2.5rem;
    width: 16rem;
    height: 16rem;
    background: var(--blue-500);
}

.ai-blob-2 {
    bottom: 2.5rem;
    right: 2.5rem;
    width: 24rem;
    height: 24rem;
    background: var(--indigo-600);
}

.ai-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.ai-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.ai-subtitle {
    color: var(--slate-400);
    margin-bottom: 2rem;
}

.ai-input-wrapper {
    background: var(--slate-800);
    padding: 0.5rem;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--slate-700);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .ai-input-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.ai-input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1.125rem;
    color: white;
    outline: none;
}

.ai-input::placeholder {
    color: var(--slate-500);
}

.ai-button {
    background: var(--blue-600);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.ai-button:hover {
    background: var(--blue-700);
}

.ai-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.ai-result {
    margin-top: 3rem;
    background: white;
    color: var(--slate-900);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--blue-100);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ai-result-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.ai-result-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--blue-600);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ai-result-header h4 {
    font-size: 1.25rem;
    font-weight: 700;
}

.ai-result-text {
    color: var(--slate-700);
    line-height: 1.75;
    white-space: pre-line;
}

/* ====================================
   CTA SECTION
   ==================================== */
.cta-section {
    padding: 6rem 0;
    background: var(--blue-600);
    color: white;
}

.cta-content {
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    background: white;
    color: var(--blue-600);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: var(--slate-50);
    transform: translateY(-4px);
}

/* ====================================
   FOOTER
   ==================================== */
.footer {
    background: var(--slate-900);
    color: white;
    padding: 4rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-about {
    max-width: 28rem;
}


.footer-logo-image {
    height: 45px !important;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-text {
    color: white;
}

.footer-description {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-800);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link svg {
    width: 20px;
    height: 20px;
}

.social-link:hover {
    background: #0077B5;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--blue-400);
}

.footer-contact ul {
    color: var(--slate-400);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    color: var(--slate-500);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: column;
    }
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    margin: 0.25rem 0;
    color: var(--slate-400);
    line-height: 1.6;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: var(--slate-500);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: white;
}

/* ====================================
   PAGE HEADER (for inner pages)
   ==================================== */
.page-header {
    padding: 10rem 0 6rem;
    text-align: center;
    background: white;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--slate-900);
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    .page-title {
        font-size: 3.5rem;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    max-width: 42rem;
    margin: 0 auto;
}

/* ====================================
   SERVICES DETAIL PAGE
   ==================================== */
.services-intro-section {
    padding: 4rem 0 2rem;
    background: white;
}

.services-intro-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.services-intro-text {
    font-size: 1.25rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.services-intro-subtitle {
    font-size: 2rem;
    font-weight: 800;
    color: var(--blue-600);
    text-align: center;
}

@media (min-width: 768px) {
    .services-intro-subtitle {
        font-size: 2.5rem;
    }
}

.services-detail-section {
    padding: 6rem 0;
    background: white;
}

.services-detail-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 4rem;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-detail-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-detail-card {
    padding: 2.5rem;
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-100);
    transform: translateY(-4px);
}

.service-detail-card-expanded {
    grid-column: span 1;
}

@media (min-width: 768px) {
    .service-detail-card-expanded {
        grid-column: span 2;
    }
}

.service-detail-icon {
    width: 5rem;
    height: 5rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.service-detail-card:hover .service-detail-icon {
    background: var(--blue-600);
    color: white;
    transform: rotate(6deg);
}

.service-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-detail-description {
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.service-benefits {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--slate-100);
}

.service-benefits-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--slate-700);
    margin-bottom: 1rem;
}

.service-features svg {
    color: var(--blue-500);
    flex-shrink: 0;
}

/* Custom Solutions Section */
.custom-solutions {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    border-radius: 3rem;
    margin: 0 1rem 6rem 1rem;
    position: relative;
    overflow: hidden;
}

.custom-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent);
    pointer-events: none;
}

.custom-solutions-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    text-align: center;
}

.custom-solutions-text {
    color: white;
}

.custom-solutions-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .custom-solutions-title {
        font-size: 2.5rem;
    }
}

.custom-solutions-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.custom-solutions-text .btn-primary {
    background: white;
    color: var(--blue-600);
    display: inline-block;
    margin-top: 1rem;
}

.custom-solutions-text .btn-primary:hover {
    background: var(--slate-50);
    transform: translateY(-2px);
}
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* ====================================
   METHODS PAGE
   ==================================== */
.methods-hero {
    margin-top: 100px;
    padding: 4rem 0 4rem;
    background: white;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .methods-hero {
        margin-top: 110px;
        padding: 5rem 0 5rem;
    }
}

@media (min-width: 768px) {
    .methods-hero {
        margin-top: 120px;
        padding: 6rem 0 8rem;
    }
}

.methods-hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--blue-50) 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.5;
    z-index: 0;
}

.methods-hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.methods-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--blue-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 2rem;
    border: 1px solid var(--blue-200);
}

.methods-badge svg {
    color: var(--blue-600);
}

.methods-badge span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.methods-hero-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
}

@media (min-width: 1024px) {
    .methods-hero-title {
        font-size: 4.5rem;
    }
}

.methods-hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.methods-hero-quote {
    font-size: 1.125rem;
    color: var(--slate-500);
    font-style: italic;
    max-width: 48rem;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: var(--slate-50);
    border-radius: 4rem;
    margin: 0 1rem;
}

@media (min-width: 1024px) {
    .process-section {
        margin: 0 2rem;
    }
}

.process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.process-card {
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: 2rem;
    border: 1px solid var(--slate-100);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.process-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.process-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--blue-600);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 1.5rem;
    transition: transform 0.5s ease;
}

.process-card:hover .process-icon {
    transform: scale(1.1);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--slate-100);
    transition: color 0.5s ease;
}

.process-card:hover .process-number {
    color: var(--blue-50);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
    padding-right: 2rem;
}

.process-description {
    color: var(--slate-600);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Modules Section */
.modules-section {
    padding: 6rem 0;
    background: white;
}

.section-divider {
    width: 6rem;
    height: 0.25rem;
    background: var(--blue-600);
    margin: 0 auto;
    border-radius: 9999px;
}

.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--blue-200);
    background: rgba(59, 130, 246, 0.03);
}

.module-icon {
    width: 3rem;
    height: 3rem;
    background: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-600);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.module-card:hover .module-icon {
    background: var(--blue-600);
    color: white;
}

.module-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.75rem;
}

.module-description {
    color: var(--slate-600);
    font-size: 0.875rem;
    line-height: 1.75;
}

/* Results Section */
.results-section {
    padding: 6rem 0;
    background: var(--slate-900);
    color: white;
    border-radius: 4rem;
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .results-section {
        margin: 0 2rem;
    }
}

.results-blob-1,
.results-blob-2 {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
}

.results-blob-1 {
    top: -100px;
    left: -100px;
    width: 16rem;
    height: 16rem;
    background: var(--blue-600);
}

.results-blob-2 {
    bottom: -100px;
    right: -100px;
    width: 24rem;
    height: 24rem;
    background: var(--indigo-600);
}

.results-grid {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .results-grid {
        flex-direction: row;
    }
}

.results-why {
    flex: 1;
}

.results-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
    .results-title {
        font-size: 2.5rem;
    }
}

.results-list {
    list-style: none;
}

.results-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.results-item:hover {
    transform: translateX(8px);
}

.results-check {
    width: 2rem;
    height: 2rem;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.results-item:hover .results-check {
    background: var(--blue-600);
}

.results-check svg {
    color: var(--blue-400);
    transition: color 0.3s ease;
}

.results-item:hover .results-check svg {
    color: white;
}

.results-item span {
    font-size: 1.125rem;
    color: var(--slate-300);
    transition: color 0.3s ease;
}

.results-item:hover span {
    color: white;
}

.results-stats {
    flex: 1;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.results-stats-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.results-stats-header svg {
    color: var(--blue-400);
}

.results-stats-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.results-highlight {
    margin-bottom: 2.5rem;
}

.results-big-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--blue-500);
}

.results-big-label {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.results-mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.mini-stat {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mini-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue-400);
    margin-bottom: 0.25rem;
}

.mini-stat-label {
    font-size: 0.75rem;
    color: var(--slate-500);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Methods CTA */
.methods-cta {
    padding: 6rem 0;
    background: white;
}

.methods-cta-content {
    max-width: 64rem;
    margin: 0 auto;
    background: var(--blue-600);
    padding: 4rem;
    border-radius: 4rem;
    color: white;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.2);
    position: relative;
    overflow: hidden;
}

.methods-cta-blob {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.methods-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 10;
}

.methods-cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 10;
}

.methods-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .methods-cta-actions {
        flex-direction: row;
    }
}

.btn-methods-cta {
    background: white;
    color: var(--blue-600);
    padding: 1.25rem 2.5rem;
    border-radius: 1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-methods-cta:hover {
    background: var(--slate-50);
}

.methods-cta-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 1rem;
    font-weight: 600;
}

.methods-cta-badge svg {
    color: rgba(255, 255, 255, 0.8);
}

/* ====================================
   ABOUT PAGE
   ==================================== */
.about-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--blue-600), var(--indigo-600));
    color: white;
}

.about-hero-content {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-title {
        font-size: 3.5rem;
    }
}

.about-tagline {
    font-size: 1.375rem;
    line-height: 1.6;
    font-weight: 300;
    opacity: 0.95;
}

@media (min-width: 768px) {
    .about-tagline {
        font-size: 1.5rem;
    }
}

/* Vision Section */
.vision-section {
    padding: 6rem 0;
    background: white;
}

.vision-content {
    max-width: 56rem;
    margin: 0 auto;
}

.vision-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .vision-title {
        font-size: 3rem;
    }
}

.vision-text {
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-text:last-child {
    margin-bottom: 0;
}

/* Why Section */
.why-section {
    padding: 6rem 0;
    background: var(--slate-50);
}

.why-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--slate-900);
    margin-bottom: 4rem;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.why-card {
    padding: 3rem 2rem;
    background: white;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--blue-100);
}

.why-icon {
    width: 5rem;
    height: 5rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: var(--blue-600);
    color: white;
    transform: scale(1.1);
}

.why-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.why-text {
    color: var(--slate-600);
    line-height: 1.75;
    font-size: 1rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 6rem 0;
    background: var(--slate-900);
    color: white;
}

.about-cta-content {
    text-align: center;
    max-width: 48rem;
    margin: 0 auto;
}

.about-cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 3rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .about-cta-title {
        font-size: 3rem;
    }
}

.about-cta-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .about-cta-info {
        flex-direction: row;
        justify-content: center;
        gap: 3rem;
    }
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-link:hover {
    background: var(--blue-600);
    border-color: var(--blue-600);
    transform: translateY(-2px);
}

.contact-link svg {
    flex-shrink: 0;
}

/* ====================================
   CONTACT PAGE
   ==================================== */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--blue-50);
    color: var(--blue-600);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-content {
    flex: 1;
}

.contact-info-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.contact-info-value {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 0.25rem;
}

.contact-info-note {
    color: var(--slate-400);
}

.contact-visit-box {
    padding: 2rem;
    background: var(--blue-50);
    border-radius: 1.5rem;
    border: 1px solid var(--blue-100);
}

.contact-visit-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--blue-800);
    margin-bottom: 1rem;
}

.contact-visit-text {
    color: var(--blue-700);
    opacity: 0.8;
    line-height: 1.75;
}

.contact-form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: 2.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--slate-100);
    position: relative;
    z-index: 10;
}

@media (min-width: 1024px) {
    .contact-form-wrapper {
        padding: 3rem;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--slate-700);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    color: var(--slate-900);
    outline: none;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    border-color: var(--blue-500);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    background: white;
}

.form-textarea {
    resize: none;
}

.form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--slate-600);
    cursor: pointer;
    line-height: 1.6;
}

.form-checkbox {
    margin-top: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
    cursor: pointer;
    accent-color: var(--blue-600);
    flex-shrink: 0;
}

.btn-form-submit {
    width: 100%;
    background: var(--blue-600);
    color: white;
    border: none;
    padding: 1.25rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
}

.btn-form-submit:hover {
    background: var(--blue-700);
}

/* ====================================
   PRIVACY PAGE
   ==================================== */
.privacy-content {
    padding: 6rem 0;
    background: white;
}

.privacy-wrapper {
    max-width: 50rem;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 1rem;
}

.privacy-section p {
    color: var(--slate-600);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-section ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--slate-600);
    line-height: 1.8;
}

.privacy-section li {
    margin-bottom: 0.5rem;
}

.privacy-cta {
    margin-top: 4rem;
    padding: 2rem;
    background: var(--blue-50);
    border-radius: 1rem;
    border-left: 4px solid var(--blue-600);
}

.privacy-cta h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 0.5rem;
}

.privacy-cta p {
    color: var(--slate-600);
    line-height: 1.8;
}

/* ====================================
   UTILITY CLASSES & RESPONSIVE
   ==================================== */
@media (max-width: 767px) {
    .hero {
        padding-top: 6rem;
        padding-bottom: 3rem;
    }
    
    .page-header {
        padding: 8rem 0 4rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Loading spinner for AI button */
@keyframes spin {
    to { transform: rotate(360deg); }
}

.spinning {
    animation: spin 1s linear infinite;
}
