:root {
    --primary: #0f172a; /* Luxurious Obsidian */
    --accent: #c5a059; /* Elegant Gold */
    --accent-hover: #b38f4d;
    --accent-gradient: linear-gradient(135deg, #c5a059 0%, #ecd06f 100%);
    --bg: #ffffff;
    --surface: #fafaf9; /* Warm White / Bone */
    --text: #1c1917;
    --text-light: #57534e;
    --description-text: #78716c; /* Warm Gray */
    --gold-subtle: rgba(197, 160, 89, 0.1);
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 12px;
    --radius-lg: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.5);
    --gold-glow: 0 0 20px rgba(197, 160, 89, 0.2);
}

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

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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

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

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

ul {
    list-style: none;
}

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

section {
    padding: 80px 0;
}

h1, h2, h3 {
    line-height: 1.2;
    color: var(--primary);
}

.bg-light {
    background-color: var(--surface);
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

/* Header & Navigation */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    gap: 8px;
}

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

nav ul {
    display: flex;
    gap: 30px;
}

nav a {
    font-weight: 600;
    font-size: 15px;
    color: var(--text);
}

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

/* Hero Section */
.hero {
    padding: 100px 0 60px;
    text-align: center;
    background: #ffffff;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 850;
    color: var(--primary);
}

.hero p {
    font-size: 19px;
    color: var(--text-light);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
    letter-spacing: 0.01em;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
}

.btn-premium {
    background: var(--primary);
    color: white;
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 20px -5px rgba(15, 23, 42, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(15, 23, 42, 0.3);
}

.btn-accent {
    background: var(--accent-gradient);
    color: #1c1917; /* Dark text on gold for luxury feel */
    padding: 18px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    box-shadow: 0 10px 20px -5px rgba(197, 160, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-accent:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 30px -10px rgba(197, 160, 89, 0.4);
}

/* Modern 3D Premium Buttons - Refined Layout */
.btn-3d-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 30px 0 40px;
    flex-wrap: wrap;
}

.btn-3d {
    display: flex;
    align-items: center;
    padding: 8px 30px 8px 8px;
    border-radius: 100px;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    border: 3px solid transparent;
    cursor: pointer;
    text-decoration: none;
    min-width: 280px;
    background: white !important;
    text-align: left;
}

.btn-3d:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-3d-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.btn-3d-icon svg {
    width: 24px;
    height: 24px;
}

.btn-3d-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.btn-3d-label {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}

.btn-3d-main {
    font-size: 20px;
    font-weight: 900;
    color: #1a1a1a;
}

/* Red Outline Variant */
.btn-3d-red-outline {
    border-color: #ff3b3b;
}

.btn-3d-red-outline .btn-3d-icon {
    background: #ff3b3b;
    color: white;
}

.btn-3d-red-outline .btn-3d-label {
    color: #ff3b3b;
}

/* Gold Outline Variant */
.btn-3d-gold-outline {
    border-color: #c5a059;
}

.btn-3d-gold-outline .btn-3d-icon {
    background: #c5a059;
    color: white;
}

.btn-3d-gold-outline .btn-3d-label {
    color: #c5a059;
}

.btn-3d:active {
    transform: translateY(-2px);
}

.hero-image-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

.hero-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    /* Seamless blend: soft fade at the edges */
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent),
                linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    mask-composite: intersect;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent),
                        linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-composite: source-in;
}

.stats-bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(197, 160, 89, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--glass-border);
}

.stat-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 35px 20px;
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.stat-item:hover {
    background: white;
    transform: translateY(-5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item h3 {
    font-size: 34px;
    color: var(--primary);
    margin: 0;
    font-weight: 850;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-item p {
    font-weight: 700;
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.category-card {
    background: white;
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 700;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    color: var(--accent);
    box-shadow: var(--shadow-lg);
}

/* SEO Content */
.content-section h2 { margin-bottom: 30px; }
.content-section h3 { margin: 40px 0 20px; }
.content-section p { margin-bottom: 20px; color: var(--text-light); }
.content-section ul { margin-bottom: 30px; padding-left: 20px; }
.content-section li { margin-bottom: 10px; color: var(--text-light); list-style-type: square; }
.content-section a { color: var(--accent); font-weight: 600; }

/* Comparison Table Premium */
.comparison-section {
    background: var(--surface);
    padding: 100px 0;
}

.comparison-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.comp-col {
    padding: 60px 40px;
}

.comp-col.privat {
    background: #f8fafc;
}

.comp-col.wir {
    background: var(--primary);
    color: white;
    position: relative;
    border: 2px solid var(--accent);
}

.comp-header {
    text-align: center;
    margin-bottom: 40px;
}

.comp-header h4 {
    font-size: 24px;
    margin-bottom: 10px;
}

.comp-col.wir .comp-header h4 { color: var(--accent); }

.comp-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.comp-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.comp-col.privat .comp-item { color: var(--text-light); }
.comp-col.wir .comp-item { color: white; }

.comp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.check-icon { color: #10b981; font-weight: bold; margin-right: 10px; }
.cross-icon { color: var(--accent); font-weight: bold; margin-right: 10px; }

/* Why Us Section */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.benefit-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gold-subtle);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    transition: var(--transition);
}

.benefit-card:hover .benefit-icon-wrapper {
    background: var(--accent);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 800;
}

.benefit-card p {
    color: var(--text-light);
    font-size: 15px;
}

/* Info Image Section */
.info-image-section {
    padding: 80px 0;
    text-align: center;
}

.info-image-card {
    max-width: 700px;
    margin: 0 auto;
}

.info-image-card h2 {
    margin-bottom: 40px;
    font-size: 28px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.full-info-img {
    width: 100%;
    display: block;
}

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

.faq-item-glass {
    background: white;
    border-radius: var(--radius);
    margin-bottom: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-item-glass:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    font-weight: 800;
    font-size: 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    transition: var(--transition);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    transition: var(--transition);
}

.faq-item-glass.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    color: var(--text-light);
    transition: all 0.5s cubic-bezier(0, 1, 0, 1);
    background: #fafafa;
}

.faq-item-glass.active .faq-answer {
    max-height: 1000px;
    padding: 10px 30px 30px;
    transition: all 0.5s cubic-bezier(1, 0, 1, 0);
}

/* Contact Form */
.premium-form-section {
    padding-top: 120px;
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-lg);
    padding: 60px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    max-width: 900px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-image-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.form-hero-img {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: var(--radius);
}

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

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

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

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

.form-group input, .form-group select, .form-group textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    background: #f8f9fa;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.12);
}

.checkbox-group {
    grid-column: span 2;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 10px;
    cursor: pointer;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--accent);
}

.checkbox-group label {
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    cursor: pointer;
}

/* Mobile: single column form */
@media (max-width: 768px) {
    .glass-form-card {
        padding: 30px 20px;
        border-radius: 16px;
    }

    .premium-form-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

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

    .checkbox-group {
        grid-column: span 1;
    }

    .form-group input, .form-group select, .form-group textarea {
        font-size: 16px; /* Prevents iOS zoom-in on focus */
    }
}

.form-footer {
    margin-top: 30px;
    text-align: center;
}

/* Footer */
footer {
    background: var(--primary);
    color: white;
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: white;
    margin-bottom: 30px;
    font-size: 20px;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.footer-col a, .footer-col span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.5);
    margin-left: 20px;
}

.footer-bottom a:hover {
    color: white;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-bottom a {
        margin: 0 10px;
    }
}
/* Floating Round CTAs */
.pill-cta {
    position: fixed;
    bottom: 110px; /* Positions perfectly above the WhatsApp button */
    right: 30px; /* Matches WhatsApp placement */
    left: auto;
    transform: none;
    background: transparent;
    padding: 0;
    border: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(20px);
}

.pill-cta.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.pill-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0; /* Hides the text */
    color: transparent;
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}

.pill-btn:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.pill-btn svg {
    width: 28px;
    height: 28px;
    color: white;
    margin: 0;
}

.pill-btn-gold {
    background: var(--accent-gradient);
}

.pill-btn-outline {
    background: #ff3b3b; /* Make it solid red for high visibility instead of outline */
    border: none;
}

@media (max-width: 600px) {
    .pill-cta {
        right: 18px;
        left: auto;
        bottom: 170px;
        width: auto;
        flex-direction: column;
    }
    .pill-btn {
        width: 54px;
        height: 54px;
    }
    .pill-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Modern Round WhatsApp Button 2026 */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 3000;
}

.whatsapp-btn {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    animation: whatsapp-ring 2.5s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    background: #1da851;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn svg {
    width: 36px;
    height: 36px;
    fill: white;
}

@keyframes whatsapp-ring {
    0%   { transform: scale(1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
    50%  { transform: scale(1.06); box-shadow: 0 8px 25px rgba(37, 211, 102, 0.7); }
    100% { transform: scale(1); box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5); }
}

@media (max-width: 600px) {
    .whatsapp-float {
        bottom: 100px;
        right: 18px;
    }
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    .whatsapp-btn svg {
        width: 30px;
        height: 30px;
    }
}

.dual-cta { display: none !important; } /* Hide old mobile bar */

@media (max-width: 900px) {
    .hero h1 { font-size: 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .premium-form-grid { grid-template-columns: 1fr; }
    .form-group.full-width { grid-column: span 1; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .process-grid { grid-template-columns: 1fr 1fr; }
    .benefits-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
    nav { display: none; }
    .dual-cta { display: grid; }
    section { padding: 60px 0; }
    .hero-cta-group { flex-direction: column; }
    .stats-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Geo-SEO Section */
.geo-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 15, 30, 0.4) 0%, rgba(20, 30, 60, 0.4) 100%);
}

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

.geo-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
}

.geo-item span {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    font-size: 0.95rem;
}

.geo-item:hover {
    background: rgba(255, 77, 77, 0.1);
    border-color: rgba(255, 77, 77, 0.3);
    transform: translateY(-3px);
}

.geo-item:hover span {
    color: #ff4d4d;
}
