:root {
    /* Sophisticated & Trustworthy Color Palette */
    --brand-primary: #0f172a; /* Deep Navy */
    --brand-accent: #3b82f6; /* Modern Blue */
    --brand-accent-hover: #2563eb;
    --brand-success: #10b981;
    
    /* Luxury Grays & Surfaces */
    --surface-0: #ffffff;
    --surface-50: #f8fafc;
    --surface-100: #f1f5f9;
    --surface-200: #e2e8f0;
    --surface-800: #1e293b;
    --surface-900: #0f172a;
    
    /* Typography */
    --font-main: 'Plus Jakarta Sans', 'Inter', system-ui, sans-serif;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-on-brand: #ffffff;
    
    /* Spacing & Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    
    --container-max: 1280px;
    
    /* Shadows - Layered for realism */
    --shadow-soft: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-card: 0 10px 30px -5px rgba(0,0,0,0.05), 0 5px 15px -5px rgba(0,0,0,0.02);
    --shadow-lg: 0 15px 40px -5px rgba(0,0,0,0.1);
    --shadow-float: 0 20px 50px -10px rgba(15, 23, 42, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Base & Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

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

body {
    font-family: var(--font-main);
    background-color: var(--surface-0);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

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

a {
    color: var(--brand-accent);
    text-decoration: none;
    transition: var(--transition);
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    letter-spacing: -0.02em;
    font-weight: 800;
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.2; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
}

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

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

.btn-white {
    background: white;
    color: var(--brand-primary);
    box-shadow: var(--shadow-soft);
}

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

.btn-outline {
    background: transparent;
    color: var(--brand-primary);
    border: 1px solid var(--surface-200);
}

.btn-outline:hover {
    border-color: var(--brand-primary);
    background: var(--surface-50);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* --- Header & Navigation --- */
.header {
    position: fixed;
    top: 1.5rem;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-full);
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-soft);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--brand-primary);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--brand-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.nav-link:hover {
    background: var(--surface-100);
    color: var(--brand-primary);
}

.nav-link.active {
    background: var(--brand-primary);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
    padding: 12rem 0 6rem;
    background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 10% 80%, rgba(59, 130, 246, 0.03) 0%, transparent 40%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: var(--surface-100);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-content h1 {
    color: var(--brand-primary);
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin: 2rem 0 3rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
}

.floating-card {
    position: absolute;
    bottom: 2rem;
    left: -2rem;
    background: white;
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-float);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 6s ease-in-out infinite;
}

.floating-card .logo-icon.verified {
    background: var(--brand-success);
    color: white;
}

.floating-card-content {
    display: flex;
    flex-direction: column;
}

.verified-title {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.verified-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* --- Brands Section --- */
.brands {
    padding: 2rem 0;
    border-top: 1px solid var(--surface-100);
    border-bottom: 1px solid var(--surface-100);
}

.brands-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0.5;
    filter: grayscale(1);
    flex-wrap: wrap;
    gap: 2rem;
}

.brand-item { font-weight: 800; font-size: 1.2rem; }

/* --- Features (Bento Grid) --- */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-header p {
    font-size: 1.1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1.5rem;
}

.bento-item {
    background: var(--surface-50);
    border: 1px solid var(--surface-100);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: var(--transition);
}

.bento-item:hover {
    background: white;
    border-color: var(--brand-accent);
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
}

.bento-item.large {
    grid-column: span 2;
    background: var(--brand-primary);
    color: white;
}

.bento-item.large h3 { color: white; }
.bento-item.large p { color: rgba(255,255,255,0.7); }

.bento-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow-soft);
}

/* --- Testimonials --- */
.testimonials {
    background: var(--surface-900);
    color: white;
    padding: 8rem 0;
}

.testimonials h2 {
    color: white;
    margin-bottom: 4rem;
    text-align: center;
}

.t-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.t-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
}

.t-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

/* --- CTA Section --- */
.cta {
    padding: 6rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* --- Footer --- */
.footer {
    padding: 6rem 0 3rem;
    background: var(--surface-50);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: inline-block;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}
.footer-links a:hover {
    color: var(--brand-accent);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--surface-200);
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Page Hero (for inner pages) --- */
.page-hero {
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--surface-900) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    color: white;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* --- Comparison Page Styles --- */
.comparison-intro {
    max-width: 900px;
    margin: 0 auto;
}

.comparison-intro h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.comparison-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.tool-placeholder {
    background: var(--surface-50);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
    margin-top: 2rem;
}

.tool-notice {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.featured-providers h3 {
    margin-bottom: 2rem;
}

.providers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.provider-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--surface-200);
    text-align: left;
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.provider-header h4 {
    margin: 0;
    color: var(--text-primary);
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

.provider-contact {
    background: var(--surface-50);
    padding: 1rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.provider-contact p {
    margin-bottom: 0.5rem;
}

.contact-block strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-block p {
    margin: 0;
}

/* --- Factors Grid --- */
.factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.factor-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.factor-item h4 {
    color: var(--brand-accent);
    margin-bottom: 0.75rem;
}

/* --- FAQ --- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
}

.faq-item h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* --- About Page --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.img-responsive {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
}

/* --- Additional Utility Classes --- */
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 4rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mt-4 { margin-top: 4rem; }

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

.w-100 { width: 100%; }

.text-white {
    color: white !important;
}

.underline {
    text-decoration: underline;
}

.link-primary {
    color: var(--brand-primary);
}

/* --- Text Utilities --- */
.text-white { color: white !important; }
.text-muted { color: var(--text-muted) !important; }
.text-secondary { color: var(--text-secondary) !important; }
.text-brand-accent { color: var(--brand-accent) !important; }
.text-brand-success { color: var(--brand-success) !important; }

.font-weight-400 { font-weight: 400; }
.font-weight-600 { font-weight: 600; }
.font-weight-700 { font-weight: 700; }
.font-weight-800 { font-weight: 800; }

.font-size-0-8rem { font-size: 0.8rem; }
.font-size-0-85rem { font-size: 0.85rem; }
.font-size-0-9rem { font-size: 0.9rem; }
.font-size-0-95rem { font-size: 0.95rem; }
.font-size-1-1rem { font-size: 1.1rem; }
.font-size-1-25rem { font-size: 1.25rem; }
.font-size-1-4rem { font-size: 1.4rem; }
.font-size-1-5rem { font-size: 1.5rem; }
.font-size-2rem { font-size: 2rem; }
.font-size-3-5rem { font-size: 3.5rem; }

.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.opacity-80 { opacity: 0.8; }

/* --- Flexbox Utilities --- */
.d-flex { display: flex; }
.flex-column { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-center { justify-content: center; }
.justify-content-space-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-flex-start { align-items: flex-start; }
.gap-0-5rem { gap: 0.5rem; }
.gap-1rem { gap: 1rem; }
.gap-1-5rem { gap: 1.5rem; }
.gap-2rem { gap: 2rem; }
.gap-3rem { gap: 3rem; }
.gap-4rem { gap: 4rem; }

/* --- Border Utilities --- */
.border-bottom { border-bottom: 1px solid var(--surface-100); }
.border-radius-8px { border-radius: 8px; }
.border-radius-10px { border-radius: 10px; }
.border-radius-12px { border-radius: 12px; }
.border-radius-24px { border-radius: 24px; }

/* --- Background Utilities --- */
.bg-white { background: white; }
.bg-surface-50 { background: var(--surface-50); }
.bg-brand-success { background: var(--brand-success); }

/* --- Padding/Margin Utilities --- */
.p-0 { padding: 0; }
.p-0-5rem { padding: 0.5rem; }
.p-0-75rem { padding: 0.75rem; }
.p-1rem { padding: 1rem; }
.p-1-5rem { padding: 1.5rem; }
.p-2rem { padding: 2rem; }
.p-2-5rem { padding: 2.5rem; }
.p-3rem { padding: 3rem; }
.p-4rem { padding: 4rem; }

.m-0 { margin: 0; }
.m-bottom-0 { margin-bottom: 0; }
.m-bottom-0-5rem { margin-bottom: 0.5rem; }
.m-bottom-0-25rem { margin-bottom: 0.25rem; }
.m-bottom-1rem { margin-bottom: 1rem; }
.m-bottom-1-5rem { margin-bottom: 1.5rem; }
.m-bottom-2rem { margin-bottom: 2rem; }
.m-bottom-2-5rem { margin-bottom: 2.5rem; }
.m-bottom-3rem { margin-bottom: 3rem; }
.m-bottom-4rem { margin-bottom: 4rem; }
.m-top-0-5rem { margin-top: 0.5rem; }
.m-top-1rem { margin-top: 1rem; }

/* --- Specific Component Styles --- */
.testimonial-author {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-date {
    font-size: 0.8rem;
    color: var(--brand-accent);
}

.footer-heading {
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--brand-accent);
}

.badge-white {
    background: white;
    color: var(--text-primary);
}

.provider-tag {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background: var(--surface-50);
    border-radius: 4px;
    border: 1px solid var(--surface-100);
}

.provider-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.provider-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 1rem 0;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-heading p {
    font-size: 1.1rem;
}

/* --- Additional Utilities --- */
.p-bottom-4rem { padding-bottom: 4rem; }

/* --- Team --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--surface-900) 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.member-role {
    color: var(--brand-accent);
    font-weight: 500;
    margin-bottom: 1rem;
}

/* --- Partners --- */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.partner-logo {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--surface-100);
}

.partner-logo h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    color: var(--brand-accent);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-primary);
}

.map-placeholder {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.map-placeholder img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-placeholder p {
    padding: 1.5rem;
    margin: 0;
}

/* --- Contact Form --- */
.form-wrapper {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    max-width: 700px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--surface-200);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-checkbox input {
    width: auto;
}

.form-checkbox label {
    margin-bottom: 0;
    font-weight: 400;
}

/* --- Providers List --- */
.contact-providers {
    margin-top: 4rem;
}

.providers-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.provider-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--surface-100);
}

.provider-contact-large {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.contact-block strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.contact-block p {
    margin: 0;
}

/* --- New Section: Project Inspiratie (index.html) --- */
.inspiration {
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--surface-900) 100%);
    color: white;
}

.inspiration h2 {
    text-align: center;
    margin-bottom: 4rem;
}

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

.inspiration-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inspiration-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-float);
}

.inspiration-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.inspiration-card:hover .inspiration-image {
    transform: scale(1.05);
}

.inspiration-content {
    padding: 2rem;
}

.inspiration-content h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.inspiration-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

/* --- New Page: MateriaalGids.html --- */
.guide-hero {
    padding: 10rem 0 6rem;
    text-align: center;
    background: var(--surface-50);
}

.guide-hero h1 {
    color: var(--brand-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.guide-content {
    max-width: 1100px;
    margin: 0 auto;
}

.material-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 4rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--surface-200);
}

.material-item img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.material-item h3 {
    color: var(--brand-accent);
    font-size: 2rem;
    border-bottom: 3px solid var(--surface-100);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.material-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pros-cons ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.pros-cons li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--surface-100);
    font-size: 1rem;
}

.pro { color: var(--brand-success); font-weight: 600; }
.con { color: #ef4444; font-weight: 600; }

.guide-faq {
    padding: 6rem 0;
    background: var(--surface-900);
    color: white;
}

.guide-faq h2 {
    color: white;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--brand-accent);
}

.faq-item h4 {
    color: white;
}

.note {
    font-style: italic;
    font-size: 0.9rem;
    margin-top: 1rem;
    color: var(--text-secondary);
}

/* --- Table Responsiveness --- */
.table-wrapper {
    overflow-x: auto;
    margin: 0 -2rem;
    padding: 0 2rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--surface-100);
}

.comparison-table th {
    background: var(--brand-primary);
    color: white;
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover {
    background: var(--surface-50);
}

/* --- Floating Card Responsive --- */
@media (max-width: 1024px) {
    .floating-card {
        left: 1rem;
        bottom: 1rem;
        max-width: calc(100% - 2rem);
    }
}

@media (max-width: 768px) {
    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1rem;
        width: 100%;
    }
}

/* --- Provider Cards (Comparison Page) --- */
.provider-card-large {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 2px solid var(--surface-100);
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.provider-header h4 {
    margin: 0;
    color: var(--text-primary);
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

.provider-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.provider-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.provider-tag {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    background: var(--surface-50);
    border-radius: 4px;
    border: 1px solid var(--surface-100);
}

.provider-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-primary);
    margin: 1rem 0;
}

.provider-price-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}

/* --- Guide Page Specific --- */
.guide-hero {
    padding: 10rem 0 6rem;
    text-align: center;
    background: var(--surface-50);
}

.guide-hero h1 {
    color: var(--brand-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.guide-content {
    max-width: 1100px;
    margin: 0 auto;
}

.material-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 6rem;
    padding: 4rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--surface-200);
}

.material-item img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    width: 100%;
    height: auto;
}

.material-item h3 {
    color: var(--brand-accent);
    font-size: 2rem;
    border-bottom: 3px solid var(--surface-100);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.material-details p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.pros-cons ul {
    list-style: none;
    padding-left: 0;
    margin-top: 1rem;
}

.pros-cons li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--surface-100);
    font-size: 1rem;
}

.pro { color: var(--brand-success); font-weight: 600; }
.con { color: #ef4444; font-weight: 600; }

.guide-faq {
    padding: 6rem 0;
    background: var(--surface-900);
    color: white;
}

.guide-faq h2 {
    color: white;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid var(--brand-accent);
}

.faq-item h4 {
    color: white;
}

/* --- Responsive Design --- */

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }
    .hero-image-container {
        display: none;
    }
    .bento-grid {
        grid-template-columns: 1fr;
    }
    .bento-item.large {
        grid-column: span 1;
    }
    .t-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .inspiration-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    .material-item {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    .material-item img {
        order: -1;
    }
    .guide-hero {
        padding: 6rem 0 4rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .providers-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 0.75rem 1rem;
        border-radius: 0;
        border: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--surface-0);
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-xl);
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s ease-in-out;
        z-index: 1000;
    }
    
    .nav.active {
        transform: scaleY(1);
    }
    
    .nav-list {
        flex-direction: column;
    }
    
    .nav-link {
        padding: 1rem 2rem;
        border-bottom: 1px solid var(--surface-100);
    }
    
    .nav:not(.active) {
        display: none;
    }
    
    .logo-text {
        display: none;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 0.9rem 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .inspiration {
        padding: 6rem 0;
    }
    
    .inspiration-card:hover {
        transform: translateY(-5px);
    }
    
    .material-item {
        padding: 2rem;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .pros-cons li {
        font-size: 0.95rem;
    }
    
    .provider-contact-large {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card,
    .partners-card {
        padding: 2rem;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .hero-image-container {
        display: none;
    }
    
    .floating-card {
        position: relative;
        left: 0;
        bottom: 0;
        margin-top: 1rem;
        width: 100%;
    }
    
    .section-header {
        max-width: 100%;
        margin-bottom: 3rem;
    }
    
    .bento-item.large {
        grid-column: span 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-content p {
        font-size: 0.95rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .bento-grid,
    .t-grid,
    .inspiration-grid,
    .faq-grid,
    .values-grid,
    .team-grid,
    .partners-grid,
    .providers-list,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .material-item {
        grid-template-columns: 1fr !important;
        padding: 1.5rem !important;
        margin-bottom: 3rem;
    }
    
    .material-item img {
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }
    
    .form-wrapper {
        padding: 1.5rem;
    }
    
    .provider-card-large {
        padding: 1.5rem;
    }
    
    .provider-tags {
        gap: 0.5rem;
    }
    
    .contact-info-card,
    .partners-card {
        padding: 1.5rem;
    }
    
    .partner-block {
        margin-bottom: 2rem;
        padding-bottom: 2rem;
    }
    
    .cta-box {
        padding: 2rem;
    }
    
    .table-wrapper {
        margin: 0 -1rem;
        padding: 0 1rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* --- Additional Spacing Utilities --- */
.p-top-2rem { padding-top: 2rem; }
.p-bottom-2rem { padding-bottom: 2rem; }
.p-top-3rem { padding-top: 3rem; }
.p-bottom-3rem { padding-bottom: 3rem; }

.m-top-2rem { margin-top: 2rem; }
.m-bottom-2rem { margin-bottom: 2rem; }
.m-left-0 { margin-left: 0; }
.m-0 { margin: 0; }
.m-bottom-0 { margin-bottom: 0; }

/* --- Width Utilities --- */
.w-100 { width: 100%; }
.max-width-900px { max-width: 900px; }

/* --- Text & Background Utilities --- */
.text-white-opacity-80 { color: rgba(255,255,255,0.8); }
.text-white-opacity-70 { color: rgba(255,255,255,0.7); }
.opacity-0-6 { opacity: 0.6; }
.opacity-0-7 { opacity: 0.7; }

.font-italic { font-style: italic; }

/* --- Border Radius Utilities --- */
.border-radius-lg { border-radius: var(--radius-lg); }

/* --- Contact Page Specific --- */
.contact-info-card,
.partners-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

.partners-card {
    background: var(--brand-primary);
    color: white;
}

.partner-block {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
}

.cta-box {
    background: var(--surface-50);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin-top: 4rem;
}

/* --- Reveal Animation Classes --- */
.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}