/* =========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================= */
   :root {
    /* Colors */
    --color-primary: #0f172a;      /* Night Blue */
    --color-primary-light: #1e293b;
    --color-accent: #0284c7;       /* Petrol Blue Accent */
    --color-accent-hover: #0369a1;
    --color-bg-light: #f8fafc;     /* Off white */
    --color-bg-white: #ffffff;
    --color-text: #334155;
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Spacing & Layout */
    --container-width: 1280px;
    --section-padding: 5rem 1rem;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.02);
    --shadow-hover: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

/* =========================================================================
   RESET & BASE STYLES
   ========================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: var(--font-size-base);
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg-white);
    line-height: var(--line-height-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--color-text-dark);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

ul {
    list-style: none;
}

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

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

/* Utility Classes */
.bg-light { background-color: var(--color-bg-light); }
.bg-dark { background-color: var(--color-primary); }
.text-white, .text-white h2, .text-white p { color: #fff; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.text-sm { font-size: 0.875rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    gap: 0.5rem;
}

.btn i {
    width: 18px;
    height: 18px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-block {
    display: flex;
    width: 100%;
}

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

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline:hover {
    background-color: var(--color-accent);
    color: #fff;
}

.btn-dark {
    background-color: var(--color-primary);
    color: #fff;
}

.btn-dark:hover {
    background-color: var(--color-primary-light);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-inverse {
    border-color: #fff;
    color: #fff;
}
.btn-inverse:hover {
    background-color: #fff;
    color: var(--color-primary);
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
}
.bg-dark .section-header p, .bg-dark .section-header h2 {
    color: #fff;
}
.bg-dark .section-header h2::after {
    background-color: #38bdf8;
}

/* =========================================================================
   HEADER / NAVBAR
   ========================================================================= */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -0.5px;
}

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

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

.nav-links a {
    color: var(--color-text);
    font-weight: 500;
    font-size: 0.95rem;
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-primary);
}

/* =========================================================================
   HERO SECTION
   ========================================================================= */
.hero {
    padding: 10rem 0 6rem 0;
    background: linear-gradient(135deg, var(--color-bg-light) 0%, #e2e8f0 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(2,132,199,0.05) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(2, 132, 199, 0.1);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

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

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-note {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.payment-note i {
    width: 16px;
    height: 16px;
    color: #fbbf24;
}

.hero-image {
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

/* =========================================================================
   ABOUT SECTION
   ========================================================================= */
.about {
    padding: var(--section-padding);
}

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

.about-content .lead {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text-dark);
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid #e2e8f0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f1f5f9;
}

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

.feature-card i {
    color: var(--color-accent);
    width: 32px;
    height: 32px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.1rem;
    margin: 0;
}

/* =========================================================================
   AUDIENCE SECTION
   ========================================================================= */
.audience {
    padding: var(--section-padding);
}

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

.audience-card {
    background: var(--color-bg-light);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    transition: background 0.3s ease;
}

.audience-card:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
}

.audience-card i {
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
}

.audience-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

/* =========================================================================
   SOLUTIONS SECTION
   ========================================================================= */
.solutions {
    padding: var(--section-padding);
    background-image: radial-gradient(circle at top right, var(--color-primary-light), var(--color-primary));
}

.problems-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.problems-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.1rem;
    background: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
}

.problems-list i {
    color: #38bdf8;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

/* =========================================================================
   SERVICES / PRICING SECTION
   ========================================================================= */
.services {
    padding: var(--section-padding);
}

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

.pricing-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    box-shadow: var(--shadow-md);
    position: relative;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.pricing-card.popular {
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-card.premium {
    background: linear-gradient(135deg, #1e3a8a, #0284c7);
    color: #fff;
}

.pricing-card.premium h3, 
.pricing-card.premium .price, 
.pricing-card.premium .duration {
    color: #fff;
}

.badge, .badge-premium {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.badge {
    background: var(--color-accent);
    color: #fff;
}

.badge-premium {
    background: #fbbf24;
    color: #0f172a;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-card.premium .pricing-header {
    border-color: rgba(255,255,255,0.1);
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
}

.price span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.duration {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.pricing-features {
    flex-grow: 1;
}

.pricing-features .objective {
    font-size: 0.95rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.pricing-card.premium .pricing-features .objective {
    color: #cbd5e1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.pricing-features i {
    color: var(--color-accent);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.pricing-card.premium .pricing-features i {
    color: #38bdf8;
}

.pricing-cta {
    margin-top: 2rem;
}

.pricing-note {
    text-align: center;
    background: var(--color-bg-light);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    max-width: 600px;
    margin: 0 auto;
}

.pricing-note p {
    margin: 0;
    font-size: 0.95rem;
}

.pricing-note i {
    color: var(--color-accent);
    vertical-align: middle;
    margin-right: 0.5rem;
}

/* =========================================================================
   TUNNEL / BOOKING PROCESS SECTION
   ========================================================================= */
.tunnel {
    padding: var(--section-padding);
}

.tunnel-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.step {
    text-align: center;
    flex: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #fff;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem auto;
    box-shadow: var(--shadow-sm);
}

.step h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin: 0;
}

.step-arrow {
    color: #cbd5e1;
    font-size: 2rem;
}

/* =========================================================================
   METHOD TIMELINE SECTION
   ========================================================================= */
.method {
    padding: var(--section-padding);
}

.method-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.method-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    height: 100%;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-accent);
    border: 4px solid #fff;
    box-shadow: 0 0 0 2px var(--color-bg-light);
}

.timeline-content {
    background: var(--color-bg-light);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
    color: var(--color-primary);
}

.timeline-content p {
    margin: 0;
    color: var(--color-text-muted);
}

/* =========================================================================
   TESTIMONIALS SECTION
   ========================================================================= */
.testimonials {
    padding: var(--section-padding);
}

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

.testimonial-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    width: 18px;
    height: 18px;
    color: #e2e8f0;
}

.stars i.filled {
    color: #fbbf24;
}

.quote {
    font-size: 1.05rem;
    font-style: italic;
    color: var(--color-text-dark);
    margin-bottom: 2rem;
}

.author .name {
    font-weight: 700;
    color: var(--color-primary);
}

.author .sector {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* =========================================================================
   FAQ SECTION
   ========================================================================= */
.faq {
    padding: var(--section-padding);
}

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

.accordion-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--color-accent);
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
}

.accordion-content p {
    padding-bottom: 1.5rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* =========================================================================
   CONTACT SECTION
   ========================================================================= */
.contact {
    padding: var(--section-padding);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

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

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    color: #f1f5f9;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.1);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: #38bdf8;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.info-item i {
    color: #38bdf8;
    width: 24px;
    height: 24px;
}

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

.info-item p {
    color: #cbd5e1;
    margin: 0;
}

.linkedin-link {
    color: #38bdf8;
    text-decoration: underline;
}

.warning-card {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.warning-card i {
    color: #fbbf24;
}

.warning-card h4 {
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.warning-card p {
    color: #cbd5e1;
    margin: 0;
    font-size: 0.9rem;
}

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
    background: #0b1120;
    color: #fff;
    padding-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.95rem;
    max-width: 300px;
    margin-top: 1rem;
}

.footer h4 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul li, .footer-legal ul li {
    margin-bottom: 0.75rem;
}

.footer a {
    color: #94a3b8;
}

.footer a:hover {
    color: #38bdf8;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.bottom-bar p {
    margin: 0;
}

/* =========================================================================
   RESPONSIVE DESIGN
   ========================================================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    .audience-grid, .pricing-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .pricing-card.popular { transform: none; }
    .pricing-card.popular:hover { transform: translateY(-10px); }
    .footer-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .section-header h2 { font-size: 2rem; }
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero .subtitle { margin: 0 auto 2.5rem auto; }
    .hero-cta { justify-content: center; flex-direction: column; }
    .payment-note { justify-content: center; }
    
    .nav-links, .navbar .btn-sm { display: none; }
    .mobile-menu-toggle { display: block; }
    
    .problems-list { grid-template-columns: 1fr; }
    .audience-grid, .pricing-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .tunnel-steps { flex-direction: column; gap: 2rem; }
    .step-arrow { transform: rotate(90deg); }
    
    .footer-container { grid-template-columns: 1fr; gap: 2rem; }
    .bottom-bar { flex-direction: column; gap: 1rem; text-align: center; }
}

/* =========================================================================
   ANIMATIONS (Reveal on Scroll)
   ========================================================================= */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal-up { transform: translateY(30px); }
.reveal-left { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0);
}

/* =========================================================================
   PAYPAL MODAL (SMART BUTTONS)
   ========================================================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-container {
    background: #fff;
    width: 90%;
    max-width: 450px;
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 2.5rem 2rem;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: #f1f5f9;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.modal-close:hover {
    color: var(--color-accent);
    background: #e2e8f0;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f1f5f9;
}

.modal-header h3 {
    font-size: 1.25rem;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

#modal-offer-name {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 1rem;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-text-dark);
    line-height: 1;
}

.modal-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.modal-secure-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1.4;
}

.modal-secure-note i {
    width: 16px;
    height: 16px;
    color: #10b981;
    flex-shrink: 0;
}
