/* Landing Page CSS - Dark Mode Premium */

:root {
    /* Colors */
    --bg-main: #0f1115;
    --bg-secondary: #16191f;
    --bg-card: #1c2029;

    --text-main: #e2e8f0;
    --text-muted: #94a3b8;

    --accent-primary: #f59e0b;
    /* Orange/Gold */
    --accent-glow: rgba(245, 158, 11, 0.2);
    --accent-hover: #d97706;

    --border-color: rgba(255, 255, 255, 0.1);

    --success: #10b981;
    --danger: #ef4444;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 40px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

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

ul {
    list-style: none;
}

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

/* Typography Utilities */
.text-gradient {
    background: linear-gradient(135deg, #fff 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-danger {
    color: var(--danger);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.bg-darker {
    background-color: var(--bg-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    border: 1px solid transparent;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--accent-glow);
}

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

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.2rem;
}

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

/* Keep global header/footer aligned with main site palette */
header,
footer {
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --accent-primary: #3b82f6;
    --accent-secondary: #10b981;
    --accent-tertiary: #f59e0b;
    --accent-whatsapp: #075E54;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    /* Header space */
    overflow: hidden;
    background: radial-gradient(circle at top right, #1B2735 0%, #090A0F 60%);
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    text-align: left;
}

.authority-badge {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--accent-primary);
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-img-3d {
    width: 100%;
    max-width: 600px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.15s ease-out;
}

.hero-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.1) 40%, rgba(0, 0, 0, 0) 70%);
    z-index: 1;
    pointer-events: none;
    filter: blur(40px);
}

.hero-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, rgba(15, 17, 21, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

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

/* Deliverables (Cards) */
.deliverables {
    background: radial-gradient(ellipse at top, #1B2735 0%, #090A0F 100%);
    position: relative;
}

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

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    filter: drop-shadow(0 4px 8px rgba(245, 158, 11, 0.2));
    transition: transform 0.3s ease;
}

.card:hover .icon {
    transform: scale(1.1);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.card p {
    color: var(--text-muted);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Process (Steps) - Space Theme */
.process {
    position: relative;
    background: radial-gradient(ellipse at bottom, #1B2735 0%, #090A0F 100%);
    overflow: hidden;
}

#star-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.process-title-icon {
    width: 64px;
    height: 64px;
    vertical-align: middle;
    margin-right: 10px;
    fill: url(#rocket-gradient);
}

.process .container {
    position: relative;
    z-index: 1;
}



.process-header {
    text-align: center;
    margin-bottom: 4rem;
}

.process-eyebrow {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-primary);
    background: rgba(245, 158, 11, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.process-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 1.5rem auto 0;
    line-height: 1.6;
}.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.step {
    position: relative;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
    cursor: default; /* Prevent text cursor */
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3); /* Stronger shadow on hover */
    border-color: rgba(245, 158, 11, 0.3); /* Subtle orange glow */
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.step-number {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: absolute;
    top: 3px; /* Adjusted margin */
    right: 10px; /* Adjusted margin */
    opacity: 0.6; /* Increased opacity for better contrast */
    line-height: 1;
    z-index: 0;
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-icon {
    width: 24px;
    height: 24px;
    fill: var(--accent-primary);
    filter: drop-shadow(0 0 5px rgba(245, 158, 11, 0.3));
}

.step p {
    color: var(--text-muted);
    font-size: 1rem;
    position: relative;
    z-index: 1;
    line-height: 1.6;
}

/* Differentiators */
.differentiators {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.03) 0%, rgba(16, 185, 129, 0.03) 100%);
    position: relative;
}

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

.diff-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: transform 0.2s ease, color 0.2s ease;
}

.check-list li:hover {
    transform: translateX(5px);
    color: #fff;
}

.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
    font-size: 1.3rem;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.visual-box {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: background 0.3s ease;
}

.stat-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

.stat-row .label {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.stat-row .sub-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.icon-container {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon {
    width: 100%;
    height: 100%;
    fill: var(--text-muted);
}

/* Performance - Speedometer */
.perf-icon .needle {
    transform-origin: 12px 13px;
    animation: gauge-move 3s ease-in-out infinite alternate;
}

@keyframes gauge-move {
    0% { transform: rotate(-90deg); }
    100% { transform: rotate(60deg); }
}

/* SEO - Rocket Morph */
.seo-icon {
    color: var(--text-muted);
    overflow: visible;
}

.seo-icon .magnifier {
    transform-origin: center;
    animation: magnifier-fade 4s ease-in-out infinite;
}

.seo-icon .rocket {
    transform-origin: 50% 70%;
    opacity: 0;
    animation: rocket-launch 4s ease-in-out infinite;
}

.seo-icon .rocket-shadow {
    opacity: 0.4;
    filter: blur(3px);
}

.seo-icon .rocket-body {
    stroke: rgba(255, 255, 255, 0.12);
    stroke-width: 0.35;
}

.seo-icon .rocket-window {
    stroke: #38bdf8;
    stroke-width: 0.5;
}

.seo-icon .rocket-ship {
    transform-origin: center;
    transform: rotate(-45deg);
}

.seo-icon .rocket-flames {
    transform-origin: center top;
    transform: translate(-1.5px, 3px);
}

.seo-icon .flame-main {
    filter: drop-shadow(0 4px 10px rgba(249, 115, 22, 0.5));
    animation: flame-flicker 0.35s ease-in-out infinite alternate;
}

.seo-icon .flame-inner {
    animation: flame-flicker 0.3s ease-in-out infinite alternate-reverse;
}

.seo-icon .spark {
    opacity: 0.85;
    animation: spark-pop 0.9s ease-in-out infinite;
}

.seo-icon .spark-left { animation-delay: 0.1s; }
.seo-icon .spark-right { animation-delay: 0.25s; }

@keyframes magnifier-fade {
    0% { opacity: 1; transform: scale(1) rotate(0deg); }
    35% { opacity: 1; transform: scale(1.05) rotate(2deg); }
    45% { opacity: 0; transform: scale(0.6) rotate(-12deg); }
    100% { opacity: 0; transform: scale(0.6) rotate(-12deg); }
}

@keyframes rocket-launch {
    0%, 45% { opacity: 0; transform: translateY(12px) translateX(0) scale(0.35); }
    50% { opacity: 1; transform: translateY(6px) translateX(-1px) scale(1); }
    55% { transform: translateY(2px) translateX(1px) scale(1); }
    60% { transform: translateY(-1px) translateX(-1px) scale(1.01); }
    65% { transform: translateY(-3px) translateX(1px) scale(1.02); }
    70% { transform: translateY(-5px) translateX(-1px) scale(1.02); }
    75% { transform: translateY(-8px) translateX(1px) scale(1.03); }
    80% { transform: translateY(-12px) translateX(-1px) scale(1.04); }
    85% { opacity: 0.9; transform: translateY(-16px) translateX(0) scale(1.05); }
    100% { opacity: 0; transform: translateY(-26px) translateX(0) scale(1.05); }
}

@keyframes flame-flicker {
    0% { transform: scaleY(1) translateY(0); opacity: 1; }
    50% { transform: scaleY(0.82) translateY(2px); opacity: 0.85; }
    100% { transform: scaleY(1) translateY(0); opacity: 1; }
}

@keyframes spark-pop {
    0% { opacity: 0.9; transform: translateY(0) scale(0.6); }
    60% { opacity: 0.9; transform: translateY(-6px) scale(1); }
    100% { opacity: 0; transform: translateY(-12px) scale(1.1); }
}

/* Accessibility - Pulse */
.access-icon {
    color: #10b981;
    overflow: visible;
}

.access-icon .pulse-ring {
    transform-origin: center;
    animation: access-pulse 2s ease-out infinite;
}

@keyframes access-pulse {
    0% { transform: scale(0.8); opacity: 0.8; stroke-width: 2; }
    100% { transform: scale(1.5); opacity: 0; stroke-width: 0; }
}

/* Investment */
.futuristic-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}

.futuristic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-color: rgba(59, 130, 246, 0.3);
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.price-title {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-weight: 400;
    position: relative;
    z-index: 1;
}

.price-main {
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

.amount-text {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    display: block;
    margin-bottom: 0.5rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.price-breakdown {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 1;
}

.price-breakdown .item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    gap: 1rem;
}

.price-breakdown .item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.price-breakdown .item:first-child {
    padding-top: 0;
}

.item-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 1rem;
    flex: 1;
    min-width: 0;
}

.item-value-row {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-top: 0.25rem;
}

.item-value {
    color: #fff;
    font-weight: 700;
    font-size: 1.05rem;
}

.promo-tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    color: var(--accent-primary);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.text-success {
    color: #10b981;
}

.payment-section {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.payment-label {
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.payment-icons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.pay-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-width: 96px;
}

.pay-icon {
    width: 72px;
    height: 48px;
    display: block;
    margin: 0 auto;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.35));
}

.pay-icon:hover {
    transform: translateY(-2px) scale(1.02);
}

.pay-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 0.01em;
}

.payment-terms {
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.term-row {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #fff;
    font-weight: 500;
}

.highlight {
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.separator {
    color: var(--text-muted);
    margin: 0 0.5rem;
}

.discount-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.legal-notes {
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 2rem;
    opacity: 0.6;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

.legal-notes p {
    font-size: 0.7rem !important;
    margin-bottom: 0.25rem;
}

.legal-notes sup {
    font-size: 0.8em !important;
    vertical-align: super;
}

.price-card sup {
    font-size: 0.35em;
    vertical-align: super;
}

.investment .legal-notes,
.price-card .legal-notes {
    font-size: 0.64rem;
    line-height: 1.5;
}

.price-card .legal-notes sup,
.price-card sup {
    font-size: 0.35em;
}

.terms-note {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.terms-note a {
    color: var(--accent-primary);
}

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

.glow-on-hover {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.glow-on-hover::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;
}

.glow-on-hover:hover::before {
    left: 100%;
}

/* Exclusions */
.exclusions-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.exclusion-item {
    text-align: center;
    padding: 1.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08), rgba(239, 68, 68, 0.04));
    border-radius: 14px;
    border: 1px solid rgba(239, 68, 68, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.exclusion-icon {
    width: 56px;
    height: 56px;
    color: var(--danger);
}

.exclusion-icon svg {
    width: 100%;
    height: 100%;
}

.exclusion-item p {
    color: var(--text-main);
    font-weight: 600;
}

.exclusion-note {
    display: block;
    font-weight: 400;
    font-size: 0.85em;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.exclusions-note {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.exclusions-note__text {
    font-size: 0.9rem;
    text-align: center;
    max-width: 720px;
}

.share-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.share-title {
    text-align: center;
    color: var(--text-main);
    font-size: 1.6rem;
    margin-bottom: 0.35rem;
}

.share-subtitle {
    text-align: center;
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto 1rem;
    font-size: 0.98rem;
}

.share-actions {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 0.25rem;
}

.share-icon {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    color: var(--text-main);
}

.share-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.share-icon:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-2px);
}

.share-icon--linkedin {
    color: #0a66c2;
}

.share-icon--x {
    color: #e5e7eb;
}

.share-icon--facebook {
    color: #1877f2;
}

.share-icon--whatsapp {
    color: #25d366;
}
@media (max-width: 1024px) {
    .exclusions-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .exclusions-grid {
        grid-template-columns: 1fr;
    }

    .share-actions {
        gap: 8px;
    }
}

/* Footer */
.lp-footer {
    margin-top: 0px !important;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding-top: 2rem;
    }

    .hero-text {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .btn-group {
        flex-direction: column;
        justify-content: center;
    }

    .hero-img-3d {
        max-width: 80%;
    }

    .diff-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .diff-content h2 {
        text-align: center;
    }


    /* Investment Section - Mobile */
    .futuristic-card {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }

    .price-title {
        font-size: 1.3rem;
    }

    .amount-text {
        font-size: 2.2rem;
    }

    .price-sub {
        font-size: 1rem;
    }

    .price-breakdown {
        padding: 1.25rem;
    }

    .price-breakdown .item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .item-label {
        font-size: 0.9rem;
        flex-wrap: wrap;
    }

    .item-label span:not(.icon) {
        flex: 1;
    }

    .item-value {
        font-size: 0.95rem;
        width: 100%;
        text-align: left;
    }

    .item-value-row {
        width: 100%;
        justify-content: flex-start;
    }

    .payment-icons {
        gap: 0.75rem;
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .pay-option {
        min-width: auto;
        flex: 1;
        max-width: 90px;
    }

    .pay-icon {
        width: 48px;
        height: 32px;
    }

    .pay-icon-paypal {
        width: 42px;
        height: 32px;
    }

    .pay-label {
        font-size: 0.75rem;
    }

    .payment-terms {
        padding: 0.85rem;
    }

    .term-row {
        font-size: 1rem;
    }

    .highlight {
        font-size: 1.1rem;
    }

    .discount-badge {
        font-size: 0.85rem;
        padding: 5px 14px;
    }

}
