body {
    margin: 0;
    font-family: "Poppins", sans-serif;
    background: linear-gradient(135deg, #fdfbff, #f3e5f5, #e8eaf6);
    color: #1a1a2e;
    overflow-x: hidden;
}

/* Particle background canvas */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
    pointer-events: none;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 181, 253, 0.3);
    box-shadow: 0 8px 32px rgba(167, 139, 250, 0.1);
}

header h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

header h1 span {
    font-size: 13px;
    opacity: 0.9;
    margin-left: 8px;
    background: linear-gradient(135deg, #4f46e5, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

nav a {
    margin-left: 30px;
    text-decoration: none;
    color: #5b21b6;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #7c3aed;
}

nav a:hover:after {
    width: 100%;
}

/* HERO SECTION */
.hero {
    text-align: center;
    padding: 80px 20px 40px;
    background: linear-gradient(135deg, rgba(240, 217, 255, 0.8), rgba(225, 200, 255, 0.6), rgba(191, 219, 254, 0.5));
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid rgba(196, 181, 253, 0.3);
}

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

/* Floating Aura Rings */
.aura-ring {
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(192, 132, 252, 0.25), transparent 60%);
    position: absolute;
    filter: blur(80px);
    animation: floatRing 16s ease-in-out infinite;
    z-index: -1;
}

@keyframes floatRing {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}

.aura-ring.r1 { 
    top: -50px; 
    left: -100px; 
    background: radial-gradient(circle, rgba(192, 132, 252, 0.2), transparent 60%);
}
.aura-ring.r2 { 
    bottom: -50px; 
    right: -100px; 
    animation-duration: 18s; 
    background: radial-gradient(circle, rgba(167, 139, 250, 0.2), transparent 60%);
}

.hero h2 {
    font-size: 62px;
    font-weight: 800;
    background: linear-gradient(135deg, #6d28d9, #d946ef, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
    animation: heroSlide 0.8s ease-out;
    text-shadow: 0 10px 30px rgba(109, 40, 217, 0.15);
}

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

.hero p {
    font-size: 22px;
    max-width: 700px;
    margin: auto;
    color: #4c1d95;
    font-weight: 500;
    line-height: 1.6;
    animation: heroSlide 0.8s ease-out 0.1s backwards;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 10%;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.28), transparent 55%),
                radial-gradient(circle at 70% 70%, rgba(236, 72, 153, 0.26), transparent 55%);
    filter: blur(18px);
    opacity: 0.8;
    pointer-events: none;
}

.hero-pill {
    display: inline-flex;
    padding: 10px 16px;
    background: rgba(16, 185, 129, 0.12);
    color: #047857;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 14px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15);
}

.hero-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 22px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 26px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    font-size: 15px;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: #fff;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.25);
}

.hero-btn.ghost {
    background: rgba(255, 255, 255, 0.9);
    color: #4c1d95;
    border-color: rgba(124, 58, 237, 0.35);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.12);
}

.hero-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 36px rgba(124, 58, 237, 0.25);
}

.hero-bullets {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 16px;
    color: #4338ca;
    font-weight: 600;
}

/* SECTION TITLE */
.section-title {
    text-align: center;
    font-size: 38px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #6d28d9, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.section-subtitle {
    text-align: center;
    margin: -6px auto 28px;
    color: #4b5563;
    font-weight: 600;
}

/* TOOLS SECTION */
.tools-wrapper {
    max-width: 1150px;
    margin: auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(237, 233, 254, 0.75));
    box-shadow: 0 18px 48px rgba(124, 58, 237, 0.12);
    position: relative;
    overflow: hidden;
}

.tools-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.12) 0, rgba(124, 58, 237, 0.0) 35%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.12) 0, rgba(59, 130, 246, 0.0) 35%),
        radial-gradient(circle at 40% 75%, rgba(236, 72, 153, 0.10) 0, rgba(236, 72, 153, 0.0) 32%);
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.tool-card {
    background: linear-gradient(135deg, rgba(240, 217, 255, 0.6), rgba(225, 200, 255, 0.4));
    backdrop-filter: blur(20px);
    padding: 40px 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(196, 181, 253, 0.5);
    box-shadow: 0 20px 60px rgba(192, 132, 252, 0.15);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

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

.tool-card:hover::before {
    left: 100%;
}

.tool-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 80px rgba(192, 132, 252, 0.3);
    border-color: rgba(192, 132, 252, 0.8);
    background: linear-gradient(135deg, rgba(225, 200, 255, 0.7), rgba(210, 180, 255, 0.5));
}

.tool-card-icon {
    font-size: 56px;
    margin-bottom: 18px;
    display: inline-block;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.tool-card:hover .tool-card-icon {
    animation: iconBounce 0.8s ease-in-out 3;
}

.tool-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.tool-card-tags {
    display: inline-flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.tool-card-tags span {
    background: rgba(124, 58, 237, 0.12);
    color: #5b21b6;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .tools-wrapper {
        padding: 38px 20px;
        gap: 18px;
    }
    .tool-card {
        padding: 28px 22px;
        border-radius: 18px;
    }
    .tool-card-icon {
        font-size: 46px;
        margin-bottom: 12px;
    }
    .tool-card h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }
    .tool-card p {
        font-size: 14px;
        line-height: 1.55;
    }
    .tool-card-tags span {
        font-size: 11px;
        padding: 5px 8px;
    }
}

.metrics-strip {
    max-width: 1150px;
    margin: 30px auto 10px;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(124, 58, 237, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(124, 58, 237, 0.1);
}

.trust-strip {
    max-width: 1150px;
    margin: 10px auto 30px;
    padding: 20px 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.trust-item {
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 14px;
    padding: 16px;
    box-shadow: 0 10px 24px rgba(16, 185, 129, 0.12);
}

.trust-item h4 {
    margin: 0 0 6px;
    color: #065f46;
}

.trust-item p {
    margin: 0;
    color: #064e3b;
}

.highlights-teaser {
    max-width: 1150px;
    margin: 30px auto;
    padding: 24px 28px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 18px;
    align-items: center;
}

.teaser-copy h3 {
    margin: 6px 0 10px;
    color: #312e81;
}

.teaser-copy p {
    margin: 0 0 10px;
    color: #4b5563;
}

.teaser-kicker {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #7c3aed;
    font-weight: 800;
    font-size: 12px;
}

.teaser-card {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.12);
}

.teaser-pill {
    display: inline-flex;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.14);
    color: #047857;
    border-radius: 999px;
    font-weight: 700;
    margin-bottom: 10px;
}

.teaser-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(124, 58, 237, 0.2);
    color: #1f2937;
}

.teaser-row:last-child {
    border-bottom: none;
}

.faq-section {
    max-width: 900px;
    margin: 50px auto 20px;
    padding: 0 20px;
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 8px 22px rgba(124, 58, 237, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 14px 16px;
    background: transparent;
    border: none;
    font-weight: 700;
    color: #4c1d95;
    cursor: pointer;
}

.faq-answer {
    padding: 0 16px 14px;
    color: #374151;
    display: none;
}

.metric-value {
    font-size: 24px;
    font-weight: 800;
    color: #4c1d95;
}

.metric-label {
    margin-top: 6px;
    color: #4b5563;
    font-weight: 600;
    font-size: 14px;
}

.value-grid {
    max-width: 1150px;
    margin: 40px auto 10px;
    padding: 10px 30px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.value-card {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: 16px;
    padding: 18px 20px;
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
    color: #1f2937;
}

.value-card h4 {
    margin: 0 0 8px;
    color: #4338ca;
    font-size: 18px;
}

.how-it-works {
    max-width: 1150px;
    margin: 60px auto 30px;
    padding: 0 30px;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.how-step {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.1);
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 10px;
}

.how-step h4 {
    margin: 0 0 6px;
    color: #312e81;
}

.how-step p {
    margin: 0;
    color: #4b5563;
}

.cta-banner {
    max-width: 1150px;
    margin: 60px auto 40px;
    padding: 26px 28px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(236, 72, 153, 0.12));
    border-radius: 18px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    display: flex;
    gap: 16px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 14px 36px rgba(124, 58, 237, 0.16);
}

.cta-banner h3 {
    margin: 4px 0 0;
    color: #312e81;
    font-size: 24px;
}

.cta-kicker {
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b21a8;
    font-weight: 800;
    font-size: 12px;
}

.cta-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tool-card p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.tool-card a {
    display: inline-block;
    padding: 12px 32px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.25);
}

.tool-card a:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
    color: white;
}

/* WHY SECTION */
.why-section {
    max-width: 1100px;
    margin: 120px auto;
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.why-title {
    font-size: 36px;
    background: linear-gradient(135deg, #6d28d9, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    margin-bottom: 35px;
    letter-spacing: -1px;
}

.why-box {
    background: rgba(255, 255, 255, 0.6);
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
    color: #4b5563;
    font-size: 19px;
    line-height: 1.8;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    font-weight: 500;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 80px rgba(124, 58, 237, 0.15);
    border-color: rgba(139, 92, 246, 0.4);
}

/* TESTIMONIALS */
.testimonials-section {
    max-width: 1150px;
    margin: 100px auto;
    padding: 40px;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.5);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.05);
}

.site-disclaimer {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: #4b5563;
    line-height: 1.5;
}

.testimonial-text {
    font-size: 16px;
    color: #4b5563;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #6d28d9;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border-radius: 50%;
}

/* CONTACT SECTION */
.contact-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(243, 232, 255, 0.8));
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(124, 58, 237, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    background: rgba(255, 255, 255, 0.9);
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    color: #1f2937;
    box-sizing: border-box;
    transition: 0.3s;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

.contact-btn {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(124, 58, 237, 0.3);
}

/* FOOTER */
footer {
    text-align: center;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(250, 248, 255, 0.9), rgba(243, 232, 255, 0.9));
    color: #6d6a7d;
    margin-top: 120px;
    font-size: 15px;
    border-top: 1px solid rgba(196, 181, 253, 0.3);
    backdrop-filter: blur(10px);
}

footer:before {
    content: '✦';
    display: block;
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #c084fc, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
/* BLOG SECTION */
.blog-wrapper {
    max-width: 1150px;
    margin: auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.blog-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(196, 181, 253, 0.4);
    box-shadow: 0 10px 40px rgba(167, 139, 250, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(167, 139, 250, 0.2);
    border-color: rgba(167, 139, 250, 0.6);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #ddd6fe, #f5d0fe);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 40px;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 13px;
    color: #7c3aed;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card h3 {
    font-size: 22px;
    margin: 0 0 15px;
    color: #4c1d95;
    font-weight: 700;
    line-height: 1.4;
}

.blog-card p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.read-more {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: gap 0.3s ease;
}

.read-more:hover {
    gap: 10px;
    color: #db2777;
}

/* Language Toggle Button */
.lang-btn {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    border: none;
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    margin-left: 20px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.lang-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.4);
}

.lang-btn:active {
    transform: translateY(0);
}

/* Custom Date Input Styling */
input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    background: white;
    color: #4b5563;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 12px 15px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    width: 100%;
    outline: none;
    box-shadow: 0 2px 10px rgba(139, 92, 246, 0.05);
    transition: border-color 0.3s;
    cursor: pointer;
    margin-bottom: 20px;
}

input[type="date"]:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Mobile Friendly Navigation */
@media (max-width: 768px) {
    header {
        padding: 15px 20px;
    }
    header h1 {
        font-size: 20px;
    }
    nav a {
        display: none; /* Hide confusing links on mobile for now, or just show lang button */
    }
    /* Show "Tools" link on mobile? Or maybe a hamburger later. For now, let's keep it simple or user might complain. 
       Actually, hiding links might be bad if user wants to go back.
       Let's keep links but make them smaller or hide less important ones.
    */
    nav a {
        display: inline-block;
        margin-left: 15px;
        font-size: 13px;
    }
    .lang-btn {
        padding: 5px 12px;
        font-size: 12px;
        margin-left: 10px;
    }

    .hero h2 {
        font-size: 40px;
    }

    .hero p {
        font-size: 18px;
    }

    .metrics-strip {
        padding: 16px;
        gap: 10px;
    }

    .cta-banner {
        padding: 18px;
    }

    .highlights-teaser {
        padding: 18px;
    }
}
nav {
    display: flex;
    align-items: center;
}

/* --- ADVERTISING PLACEHOLDERS --- */
.ad-container {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}

.ad-slot {
    background: rgba(255, 255, 255, 0.4);
    border: 1px dashed rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 20px;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(124, 58, 237, 0.5);
    font-size: 14px;
    margin: 0 auto;
}

/* Specific Sizes for AdSense */
.ad-slot.leaderboard {
    min-height: 90px;
    max-width: 728px;
}

.ad-slot.rectangle {
    min-height: 250px;
    max-width: 300px;
}


/* Share Button Styling */
.share-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.share-btn:active {
    transform: translateY(0);
}

/* Highlights Card */
.highlights-card {
    margin-top: 12px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(79, 70, 229, 0.18);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.07), rgba(59, 130, 246, 0.06));
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
}

.highlights-head {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.highlights-date {
    font-weight: 700;
    color: #312e81;
    font-size: 1.05rem;
}

.highlights-city {
    color: #4b5563;
    font-size: 0.95rem;
    margin-top: 4px;
}

.highlight-pill {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(59, 130, 246, 0.12);
    color: #1d4ed8;
    font-weight: 600;
    font-size: 0.95rem;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 14px 0;
}

.highlight-item {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(124, 58, 237, 0.1);
    color: #1f2937;
}

.highlight-item label {
    display: block;
    font-weight: 600;
    color: #4c1d95;
    margin-bottom: 4px;
}

.highlight-interpretation {
    margin-top: 8px;
    padding: 12px 14px;
    border-radius: 10px;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
    font-weight: 600;
    line-height: 1.5;
}

