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

:root {
    --primary: #0a2540;
    --primary-light: #1a4a7a;
    --accent: #ff6b35;
    --accent-hover: #ff5722;
    --secondary: #00d4aa;
    --text: #1a1a2e;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --bg-dark: #0a2540;
    --white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Skip to main content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--accent);
    color: var(--white);
    padding: 8px 16px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

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

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

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

.btn-outline:hover,
.btn-outline:focus {
    background: var(--primary);
    color: var(--white);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    height: 45px;
    width: auto;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
}

.logo-text span {
    color: var(--accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    font-weight: 500;
    color: var(--text);
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
  .nav-links a:focus::after,
  .nav-links a.active::after {
  width: 100%;
  }
  
  .nav-links a.active {
  color: var(--accent);
  }

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
    justify-content: center;
    align-items: center;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    color: var(--white);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 107, 53, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: var(--accent);
}

.hero h1 {
    font-size: clamp(32px, 5vw, 52px);
    margin-bottom: 24px;
    line-height: 1.1;
    text-wrap: balance;
}

.hero h1 span {
    color: var(--accent);
}

.hero p {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 4vw, 36px);
    font-weight: 700;
    color: var(--accent);
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

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

/* Reduce motion for accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero-image img {
        animation: none;
    }
    
    html {
        scroll-behavior: auto;
    }
    
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Trust Badges */
.trust-badges {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border);
}

.trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.trust-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-logos img {
    height: 32px;
    width: auto;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    color: var(--primary);
    margin-bottom: 16px;
    text-wrap: balance;
}

.section-header p {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-muted);
    line-height: 1.7;
}

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

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.about-features {
    display: grid;
    gap: 24px;
}

.feature-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--white);
}

.feature-content h3 {
    font-size: 18px;
    color: var(--primary);
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.process-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto 24px;
}

.process-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--white);
}

.process-card h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 12px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
}

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

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.service-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    opacity: 0.85;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.testimonial-stars svg {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-amount {
    background: linear-gradient(135deg, var(--secondary) 0%, #00b894 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
}

.testimonial-info h4 {
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.testimonial-info p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 600;
    color: var(--primary);
    transition: color 0.3s ease;
    min-height: 44px;
}

.faq-question:hover,
.faq-question:focus {
    color: var(--accent);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 20px;
    text-wrap: balance;
}

.contact-info > p {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 107, 53, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.benefit-item span {
    font-size: 16px;
    font-weight: 500;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-form > p {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
}

.form-group label span {
    color: var(--accent);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text);
    transition: all 0.3s ease;
    background: var(--white);
    min-height: 48px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

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

.form-submit {
    margin-top: 24px;
}

.form-submit .btn {
    width: 100%;
    padding: 16px 32px;
    font-size: 17px;
    min-height: 56px;
}

.form-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--text-muted);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Form Messages */
.form-message {
    padding: 16px;
    border-radius: var(--radius);
    margin-top: 20px;
    display: none;
}

.form-message.success {
    background: rgba(0, 212, 170, 0.1);
    color: #00a67d;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Footer */
.footer {
    background: #050d18;
    color: var(--white);
    padding: 80px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 15px;
    opacity: 0.8;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    font-size: 15px;
    opacity: 0.7;
    transition: all 0.3s ease;
    padding: 4px 0;
    display: inline-block;
}

.footer-col a:hover,
.footer-col a:focus {
    opacity: 1;
    color: var(--accent);
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover,
.footer-social a:focus {
    background: var(--accent);
}

.footer-social svg {
    width: 18px;
    height: 18px;
    fill: var(--white);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu a {
    font-size: 18px;
    font-weight: 500;
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child {
  border-bottom: none;
  }
  
  .mobile-menu a.active {
  color: var(--accent);
  font-weight: 600;
  }
  
  /* AdSense Placeholder Styles */
.ad-container {
    background: var(--bg-light);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
    margin: 40px 0;
}

.ad-container p {
    color: var(--text-muted);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-inner,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero {
        min-height: auto;
    }
    
    .hero-image {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        gap: 40px;
    }
    
    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .header .btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .trust-logos {
        gap: 24px;
    }
    
    .trust-logos img {
        height: 24px;
    }
    
    .process-grid,
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .about,
    .process,
    .services,
    .testimonials,
    .faq,
    .contact {
        padding: 60px 0;
    }
    
    .feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .container {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        height: 70px;
    }
    
    .logo img {
        height: 35px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .mobile-menu {
        top: 70px;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .testimonial-card {
        padding: 24px;
    }
    
    .process-card {
        padding: 30px 16px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
}

/* Print styles */
@media print {
    .header,
    .mobile-menu,
    .hero-buttons,
    .contact-form-wrapper,
    .footer-social,
    .ad-container {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    .hero,
    .services,
    .contact {
        background: none !important;
        color: #000 !important;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
}

/* --- Guide & inner content pages --- */
.article-hero {
    padding: 140px 0 40px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 55%);
    border-bottom: 1px solid var(--border);
}

.article-hero h1 {
    max-width: 900px;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: var(--primary);
}

.article-hero h1 span {
    color: var(--accent);
}

.article-hero .lead {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 760px;
    margin-top: 16px;
    line-height: 1.7;
}

.breadcrumbs {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: var(--primary-light);
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs [aria-current="page"] {
    color: var(--text-muted);
    font-weight: 600;
}

.content-article {
    padding: 48px 0 96px;
}

.content-article .article-inner {
    max-width: 760px;
    margin: 0 auto;
}

.content-article h2 {
    margin-top: 2.75rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.content-article h2:first-of-type {
    margin-top: 0;
}

.content-article h3 {
    margin-top: 1.75rem;
    margin-bottom: 0.65rem;
    font-size: 1.15rem;
    color: var(--text);
}

.content-article p {
    margin-bottom: 1rem;
    color: var(--text);
    line-height: 1.75;
}

.content-article ul,
.content-article ol {
    margin: 1rem 0 1.25rem 1.35rem;
    color: var(--text);
    line-height: 1.7;
}

.content-article li {
    margin-bottom: 0.5rem;
}

.content-article .callout {
    background: var(--bg-light);
    border-left: 4px solid var(--accent);
    padding: 20px 24px;
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 2rem 0;
}

.content-article .callout p:last-child {
    margin-bottom: 0;
}

.cta-inline {
    margin-top: 3rem;
    padding: 36px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
    border-radius: var(--radius-lg);
    text-align: center;
}

.cta-inline h2 {
    color: var(--white);
    margin: 0 0 12px;
    font-size: 1.5rem;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.guide-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    margin-top: 40px;
}

.guide-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.guide-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.guide-card h2 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.guide-card h2 a {
    color: var(--primary);
}

.guide-card h2 a:hover {
    color: var(--accent);
}

.guide-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.services-guides-note {
    text-align: center;
    margin-top: 40px;
    font-size: 15px;
    color: var(--text-muted);
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.65;
}

.services-guides-note a {
    color: var(--primary-light);
    text-decoration: underline;
}

.services-guides-note a:hover {
    color: var(--accent);
}
