/* ===========================================
   WebsiteTomorrow - Bold, Fun, Orange Energy
   =========================================== */

:root {
    /* Orange/Yellow Energy Palette */
    --orange-500: #FF6B00;
    --orange-600: #E55A00;
    --orange-400: #FF8534;
    --yellow-400: #FFB800;
    --yellow-300: #FFCB47;

    /* Neutrals */
    --white: #FFFFFF;
    --gray-50: #FAFAFA;
    --gray-100: #F5F5F5;
    --gray-200: #E5E5E5;
    --gray-600: #525252;
    --gray-800: #262626;
    --gray-900: #171717;

    /* Semantic */
    --text-primary: var(--gray-900);
    --text-secondary: var(--gray-600);
    --bg-primary: var(--white);
    --bg-secondary: var(--gray-50);
    --accent: var(--orange-500);
    --accent-hover: var(--orange-600);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;

    /* Typography */
    --font-main: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Misc */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
}

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

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

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    margin-bottom: var(--space-md);
}

h3 {
    font-size: 1.25rem;
}

.highlight {
    color: var(--accent);
}

.hero h1 .highlight {
    font-size: 1.2em;
    background:
        linear-gradient(
            to top,
            transparent 15%,
            rgba(255, 184, 0, 0.5) 15%,
            rgba(255, 184, 0, 0.75) 25%,
            rgba(255, 184, 0, 0.65) 32%,
            rgba(255, 184, 0, 0.8) 38%,
            transparent 40%
        ),
        linear-gradient(
            to right,
            rgba(255, 184, 0, 0.15) 0%,
            rgba(255, 184, 0, 0.4) 8%,
            rgba(255, 184, 0, 0.1) 15%,
            rgba(255, 184, 0, 0.3) 40%,
            rgba(255, 184, 0, 0.05) 60%,
            rgba(255, 184, 0, 0.35) 80%,
            rgba(255, 184, 0, 0.2) 100%
        );
    padding: 0 0.1em;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-xl);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-main);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: var(--radius-full);
}

.btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(255, 107, 0, 0.4);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}

.btn i {
    margin-right: 0.5rem;
}

.btn-secondary {
    background: var(--white);
    color: var(--text-primary);
    padding: 0.875rem 2rem;
    font-size: 1rem;
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.btn-header {
    background: var(--accent);
    color: var(--white);
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
}

.btn-header:hover {
    background: var(--accent-hover);
}

.header-message {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-flag-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-flag {
    height: 1.25rem;
    width: auto;
}

.header-made-in {
    font-size: 0.5rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-top: 0.1rem;
}

.header-note {
    font-family: 'Caveat', cursive;
    font-size: 1.5rem;
    color: var(--accent);
    transform: rotate(-2deg);
    white-space: nowrap;
    margin-top: -0.5rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-100);
    padding: 0.5rem 0;
    padding-top: max(0.5rem, env(safe-area-inset-top));
}

/* Scroll offset for fixed header */
[id] {
    scroll-margin-top: 3rem;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-icon {
    height: 5rem;
    width: auto;
}

.logo-text {
    letter-spacing: -0.02em;
}

/* Hero */
.hero {
    padding: 7rem 0 3rem;
    text-align: center;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 184, 0, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.hero-badge {
    display: inline-block;
    background: var(--orange-400);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.hero h1 {
    margin-bottom: var(--space-md);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto var(--space-sm);
}

.hero-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: var(--space-lg);
}

.hero-price .price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: -0.03em;
}

.hero-price .price-detail {
    color: var(--text-secondary);
    font-size: 1rem;
}

.hero-ctas {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero .buy-cta-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: var(--space-md);
}

.hero .buy-cta-wrapper::before {
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    max-width: calc(100% - 30px);
    right: auto;
}

.hero-trust {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-top: var(--space-lg);
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-trust i {
    color: var(--accent);
    font-size: 1.25rem;
}

/* Problem Section */
.problem {
    padding: var(--space-lg) 0 var(--space-2xl);
    text-align: center;
}

.problem h2 {
    margin-bottom: var(--space-xl);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-md);
}

.problem-card {
    background: var(--gray-50);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.problem-icon {
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-sm);
    color: var(--accent);
}

.problem-icon i {
    transition: all 0.3s ease;
}

/* Card 1: Flashlight/torch searching around with beam */
.problem-card:nth-child(1) .problem-icon {
    position: relative;
    overflow: visible;
}

.problem-card:nth-child(1) .problem-icon i {
    position: relative;
    z-index: 2;
}

.problem-card:nth-child(1) .problem-icon::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    border-top: 50px solid rgba(255, 200, 50, 0.35);
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    transform-origin: 50% calc(100% + 30px);
    transform: translateX(-50%) rotate(-20deg);
    opacity: 0;
    transition: opacity 0.3s ease;
    filter: blur(4px);
    z-index: 1;
}

.problem-card:nth-child(1):hover .problem-icon::before {
    opacity: 1;
    animation: beam-search 2.5s ease-in-out infinite;
}

.problem-card:nth-child(1):hover .problem-icon i {
    animation: torch-search 2.5s ease-in-out infinite;
}

@keyframes torch-search {
    0% { transform: rotate(-20deg); }
    25% { transform: rotate(15deg); }
    50% { transform: rotate(-25deg); }
    75% { transform: rotate(10deg); }
    100% { transform: rotate(-20deg); }
}

@keyframes beam-search {
    0% { transform: translateX(-50%) rotate(-20deg); }
    25% { transform: translateX(-50%) rotate(15deg); }
    50% { transform: translateX(-50%) rotate(-25deg); }
    75% { transform: translateX(-50%) rotate(10deg); }
    100% { transform: translateX(-50%) rotate(-20deg); }
}

/* Card 2: Person morphs to thumbs down */
.problem-icon-morph {
    position: relative;
}

.problem-icon-morph .morph-user {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-icon-morph .morph-thumb {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0) rotate(180deg);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.problem-card:nth-child(2):hover .morph-user {
    transform: scale(0) rotate(-180deg);
    opacity: 0;
}

.problem-card:nth-child(2):hover .morph-thumb {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
}

/* Card 3: Clock with spinning hands */
.clock-face-icon {
    width: 48px;
    height: 48px;
    color: var(--accent);
}

.clock-face-icon .minute-hand,
.clock-face-icon .hour-hand {
    transform-origin: 50px 50px;
}

.problem-card:nth-child(3):hover .clock-face-icon .minute-hand {
    animation: hand-spin 1s linear infinite;
}

.problem-card:nth-child(3):hover .clock-face-icon .hour-hand {
    animation: hand-spin 4s linear infinite;
}

@keyframes hand-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Card 4: Money flying away */
.problem-card:nth-child(4) .problem-icon {
    position: relative;
    overflow: visible;
}

.problem-card:nth-child(4):hover .problem-icon i {
    animation: shake-money 0.5s ease-in-out infinite;
}

@keyframes shake-money {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.problem-card:nth-child(4) .problem-icon::before,
.problem-card:nth-child(4) .problem-icon::after {
    content: '£';
    position: absolute;
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    opacity: 0;
    pointer-events: none;
}

.problem-card:nth-child(4) .problem-icon::before {
    top: 50%;
    left: 30%;
}

.problem-card:nth-child(4) .problem-icon::after {
    top: 50%;
    left: 60%;
}

.problem-card:nth-child(4):hover .problem-icon::before {
    animation: money-fly-1 1.5s ease-out infinite;
}

.problem-card:nth-child(4):hover .problem-icon::after {
    animation: money-fly-2 1.5s ease-out infinite 0.4s;
}

@keyframes money-fly-1 {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
    15% { opacity: 1; }
    100% { opacity: 0; transform: translate(-25px, -50px) rotate(-60deg); }
}

@keyframes money-fly-2 {
    0% { opacity: 0; transform: translate(0, 0) rotate(0deg); }
    15% { opacity: 1; }
    100% { opacity: 0; transform: translate(20px, -45px) rotate(45deg); }
}

.problem-card p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Included Section */
.included {
    padding: var(--space-2xl) 0;
    background: var(--gray-900);
    color: var(--white);
    text-align: center;
}

.included .highlight {
    color: var(--yellow-400);
}

.included .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    text-align: left;
}

.included-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
}

.included-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--orange-500);
    transform: translateY(-4px);
}

.included-icon {
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: var(--space-sm);
    color: var(--yellow-400);
}

.included-card h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.included-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
}

/* How It Works */
.how-it-works {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: var(--space-lg);
    transition: transform 0.3s ease;
}

.step:hover {
    transform: translateY(-4px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--orange-500), var(--yellow-400));
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
    box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Step numbers - glowing pulse on hover */
@keyframes live-glow {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 107, 0, 0.3); }
    50% { box-shadow: 0 0 25px 12px rgba(255, 107, 0, 0.4); }
}

.step:hover .step-number {
    animation: live-glow 1s ease infinite;
}

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

.step p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

.step-arrow {
    font-size: 2rem;
    color: var(--orange-400);
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {
    .step-arrow {
        display: none;
    }
}

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

/* Perfect For */
.perfect-for {
    padding: var(--space-2xl) 0;
    background: var(--gray-50);
    text-align: center;
}

.trades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.trade-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: all 0.2s ease;
}

.trade-tag i {
    color: var(--accent);
    font-size: 1.1rem;
}

.trade-tag:hover {
    border-color: var(--orange-500);
    background: rgba(255, 107, 0, 0.05);
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.testimonial-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    text-align: left;
    transition: all 0.2s ease;
}

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

.testimonial-stars {
    color: var(--yellow-400);
    font-size: 1.25rem;
    margin-bottom: var(--space-sm);
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

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

.author-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Pricing */
.pricing {
    padding: var(--space-2xl) 0;
    text-align: center;
}

.pricing h2 {
    margin-bottom: var(--space-sm);
}

.pricing .section-subtitle {
    margin-bottom: var(--space-xl);
}

/* Main Website Pricing Card */
.pricing-hero-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-xl);
    align-items: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: left;
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .pricing-hero-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 400px) {
    .pricing-hero-price .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
}

.pricing-badge {
    display: inline-block;
    background: var(--orange-500);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.pricing-hero-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
    color: var(--white);
}

.pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: var(--space-md);
}

@media (max-width: 600px) {
    .pricing-features {
        grid-template-columns: 1fr;
    }
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-features i {
    color: var(--yellow-400);
    font-size: 1.125rem;
}

.pricing-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
}

.pricing-note i {
    color: var(--yellow-400);
}

.pricing-hero-price {
    text-align: center;
    padding: var(--space-lg);
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    min-width: 220px;
}

.pricing-hero-price .btn {
    white-space: nowrap;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.pricing-hero-price .price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--yellow-400);
    letter-spacing: -0.03em;
    line-height: 1;
}

.pricing-hero-price .price-term {
    display: block;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: var(--space-md);
}

/* Maintenance Section */
.pricing-maintenance {
    margin-top: var(--space-xl);
    position: relative;
}

.optional-badge {
    display: inline-block;
    background: var(--gray-200);
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.375rem 0.75rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-sm);
}

.pricing-maintenance h3 {
    font-size: 1.75rem;
    margin-bottom: var(--space-sm);
}

.pricing-maintenance .section-subtitle {
    margin-bottom: var(--space-lg);
}

/* Billing Toggle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.toggle-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.toggle-label.active {
    color: var(--text-primary);
    font-weight: 600;
}

.toggle-savings {
    display: inline-block;
    background: var(--yellow-400);
    color: var(--gray-900);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-full);
    margin-left: 0.5rem;
    text-transform: uppercase;
}

.toggle-switch {
    position: relative;
    width: 56px;
    height: 30px;
    cursor: pointer;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    inset: 0;
    background: var(--gray-200);
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 3px;
    bottom: 3px;
    background: var(--white);
    border-radius: 50%;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
    background: var(--orange-500);
}

.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(26px);
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1100px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px) scale(1.03);
}

/* Metallic Tier Styling */
.pricing-card-bronze {
    border: 2px solid #CD7F32;
    background: linear-gradient(165deg,
        rgba(205, 127, 50, 0.08) 0%,
        rgba(232, 184, 125, 0.05) 30%,
        rgba(255, 255, 255, 1) 60%,
        rgba(205, 127, 50, 0.03) 100%);
}

.pricing-card-bronze:hover {
    border-color: #CD7F32;
    box-shadow: 0 12px 40px rgba(205, 127, 50, 0.25);
}

.pricing-card-bronze h4 {
    background: linear-gradient(135deg, #CD7F32 0%, #E8B87D 50%, #CD7F32 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-align: center;
    padding: 1.5rem var(--space-lg) 0.75rem;
    margin: calc(-1 * var(--space-lg) - 2px) calc(-1 * var(--space-lg) - 2px) var(--space-md) calc(-1 * var(--space-lg) - 2px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-card-silver {
    border: 2px solid #A8A9AD;
    background: linear-gradient(165deg,
        rgba(168, 169, 173, 0.1) 0%,
        rgba(212, 212, 212, 0.08) 30%,
        rgba(255, 255, 255, 1) 60%,
        rgba(168, 169, 173, 0.05) 100%);
}

.pricing-card-silver:hover {
    border-color: #A8A9AD;
    box-shadow: 0 12px 40px rgba(168, 169, 173, 0.3);
}

.pricing-card-silver h4 {
    background: linear-gradient(135deg, #757575 0%, #D4D4D4 50%, #757575 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-align: center;
    padding: 1.5rem var(--space-lg) 0.75rem;
    margin: calc(-1 * var(--space-lg) - 2px) calc(-1 * var(--space-lg) - 2px) var(--space-md) calc(-1 * var(--space-lg) - 2px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-card-gold {
    border: 2px solid #D4AF37;
    background: linear-gradient(165deg,
        rgba(212, 175, 55, 0.1) 0%,
        rgba(245, 231, 163, 0.08) 30%,
        rgba(255, 255, 255, 1) 60%,
        rgba(212, 175, 55, 0.05) 100%);
}

.pricing-card-gold:hover {
    border-color: #D4AF37;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.3);
}

.pricing-card-gold h4 {
    background: linear-gradient(135deg, #D4AF37 0%, #F5E7A3 50%, #D4AF37 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-align: center;
    padding: 1.5rem var(--space-lg) 0.75rem;
    margin: calc(-1 * var(--space-lg) - 2px) calc(-1 * var(--space-lg) - 2px) var(--space-md) calc(-1 * var(--space-lg) - 2px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-card-platinum {
    border: 2px solid #4A6FA5;
    background: linear-gradient(165deg,
        rgba(74, 111, 165, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 25%,
        rgba(230, 240, 250, 0.95) 50%,
        rgba(229, 228, 226, 0.1) 100%);
}

.pricing-card-platinum:hover {
    border-color: #2C4A7C;
    box-shadow: 0 12px 40px rgba(74, 111, 165, 0.3);
}

.pricing-card-platinum h4 {
    background: linear-gradient(135deg, #2C4A7C 0%, #5A8AC9 30%, #8BB8E8 50%, #5A8AC9 70%, #2C4A7C 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    text-align: center;
    padding: 1.5rem var(--space-lg) 0.75rem;
    margin: calc(-1 * var(--space-lg) - 2px) calc(-1 * var(--space-lg) - 2px) var(--space-md) calc(-1 * var(--space-lg) - 2px);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.pricing-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6875rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.03em;
    white-space: nowrap;
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.pricing-card-badge-silver {
    color: #555;
    border: 2px solid #A8A9AD;
}

.pricing-card-badge-platinum {
    color: #2C4A7C;
    border: 2px solid #4A6FA5;
}

.pricing-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.pricing-card-desc {
    font-size: 0.9375rem;
    font-style: italic;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--gray-200);
    text-align: center;
}

.pricing-card-bronze .pricing-card-desc {
    color: #8B5A2B;
}

.pricing-card-silver .pricing-card-desc {
    color: #5a5a5e;
}

.pricing-card-gold .pricing-card-desc {
    color: #8B7025;
}

.pricing-card-platinum .pricing-card-desc {
    color: #2C4A7C;
}

.pricing-card-price {
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--gray-200);
}

.pricing-card-price .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.pricing-card-price .price-term {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Platinum Card Special Styling */
.pricing-card-platinum {
    overflow: visible;
}

.pricing-mega-savings {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2C4A7C 0%, #5A8AC9 50%, #2C4A7C 100%);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-md);
    animation: pulse-glow 2s ease-in-out infinite;
}

.pricing-mega-savings.visible {
    display: flex;
}

.pricing-mega-savings i {
    font-size: 1.25rem;
    color: #fff;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(74, 111, 165, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(74, 111, 165, 0.7);
    }
}

.pricing-card-features {
    list-style: none;
    margin-bottom: var(--space-lg);
}

.pricing-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.625rem;
}

.pricing-card-features li:last-child {
    margin-bottom: 0;
}

.pricing-card-features i {
    color: var(--accent);
    font-size: 1rem;
    margin-top: 0.125rem;
}

.pricing-card-features strong {
    color: var(--text-primary);
}

.pricing-card-features .per-month {
    font-size: 0.7rem;
    font-style: italic;
    color: var(--gray-400);
    opacity: 0.8;
}

/* Tooltip */
.has-tooltip {
    position: relative;
    cursor: help;
}

.has-tooltip .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background: var(--gray-900);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 0.5rem 0.75rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 100;
}

.has-tooltip .tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--gray-900);
}

.has-tooltip:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-4px);
}

/* FAQ */
.faq {
    padding: var(--space-2xl) 0;
    background: var(--gray-50);
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-md);
    text-align: left;
    margin-top: var(--space-xl);
}

.faq-item {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
}

.faq-item h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Contact */
.contact {
    padding: var(--space-2xl) 0;
    background: linear-gradient(135deg, var(--orange-500) 0%, var(--orange-600) 100%);
    color: var(--white);
    overflow-x: hidden;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

@media (max-width: 900px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: stretch;
    }

    .contact-info,
    .contact-form-wrapper {
        width: 100%;
    }

    .contact-alt i {
        display: none;
    }
}

.contact-info {
    text-align: center;
}

.contact-info h2 {
    color: var(--white);
}

.contact-info p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--space-sm);
}

.contact-price {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.price-large {
    display: block;
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.price-note {
    opacity: 0.9;
}

/* Buy Button */
.buy-cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--white);
    padding: 1.5rem 2rem 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 100%;
    box-sizing: border-box;
}

.buy-cta-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 3px dashed #FF0000;
    pointer-events: none;
}

.btn-buy-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: url('images/add-to-cart-drop-shadow.png') center/contain no-repeat;
    color: #333;
    text-decoration: none;
    width: min(320px, 100%);
    height: 100px;
    transition: all 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
}

.btn-buy-cta:hover {
    transform: translateY(-3px);
}

.btn-buy-cta:active {
    transform: translateY(-1px);
}

.buy-cta-main {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}


.buy-cta-link {
    font-size: 1.125rem;
    font-weight: 700;
    color: #0000EE;
    text-decoration: underline;
    margin-top: 0.25rem;
}

.buy-cta-link:hover {
    color: #551A8B;
}

.payment-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.payment-icons img {
    height: 45px;
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.payment-icons img:hover {
    opacity: 1;
    transform: scale(1.2);
}

.contact-alt {
    margin-top: var(--space-md);
    font-size: 0.9375rem;
    opacity: 0.8;
}

.contact-form-wrapper {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    box-sizing: border-box;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    text-align: left;
}

.form-group label {
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    font-family: var(--font-main);
    font-size: 1rem;
    padding: 0.875rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.contact-form .btn-primary {
    margin-top: var(--space-sm);
}

.form-hint {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-top: var(--space-sm);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--white);
    padding: var(--space-xl) 0;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-logo .highlight {
    color: var(--orange-400);
}

.footer-logo .logo-icon {
    height: 2.5rem;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9375rem;
}

.footer-disclaimer {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    max-width: 500px;
    line-height: 1.5;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8125rem;
}

/* Responsive */
@media (max-width: 640px) {
    .header .container {
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 0.5rem;
    }

    .header .logo {
        order: 1;
    }

    .header .btn-header {
        display: none;
    }

    .header-message {
        order: 3;
        width: 100%;
        justify-content: center;
        gap: 0.75rem;
    }

    .header-note {
        font-size: 1.1rem;
    }

    .hero {
        padding: 9rem 0 1.5rem;
    }

    .hero-price .price {
        font-size: 2.75rem;
    }

    .buy-cta-wrapper {
        padding: 1rem 1.5rem 1.5rem;
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .buy-cta-wrapper::before {
        left: 8px;
        right: 8px;
        top: 8px;
        bottom: 8px;
    }

    .logo-icon {
        height: 3.5rem;
    }

    .logo {
        gap: 0.25rem;
        font-size: 1.25rem;
    }

    .payment-icons {
        gap: 1rem;
    }

    .payment-icons img {
        height: 32px;
    }

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

    .hero-ctas .btn-large {
        width: 100%;
        max-width: 300px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        gap: var(--space-lg);
    }

    .contact-form-wrapper {
        padding: var(--space-md);
        width: 100%;
        border-radius: var(--radius-sm);
    }

    .price-large {
        font-size: 3rem;
    }
}
