/*
Theme Name: AmmoStash
Theme URI: https://ammostash.com
Description: WordPress theme replicating AmmoStash.com - Ammo subscription service with secure storage
Version: 1.0
Author: AmmoStash
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

:root {
    --slate-900: #0f172a;
    --slate-950: #020617;
    --slate-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-400: #fb923c;
    --white: #ffffff;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--slate-900);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

* {
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header Styles */
.site-header {
    background-color: var(--slate-950);
    border-bottom: 1px solid var(--slate-800);
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 1rem 0;
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain;
    display: block;
}

.logo-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    line-height: 1.2;
    display: block;
}

.powered-by {
    font-size: 0.75rem;
    color: var(--orange-400);
    display: block;
    margin-top: -2px;
}

.main-navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu a {
    color: var(--slate-300);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--orange-400);
}

.login-button {
    background: transparent;
    border: 1px solid var(--orange-500);
    color: var(--orange-400);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    cursor: pointer;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    font-weight: 500;
}

.login-button:hover {
    background-color: var(--orange-500);
    color: var(--white);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero-section {
    padding: 1.5rem 0 3rem;
    background: linear-gradient(to bottom right, var(--slate-950), var(--slate-900), rgba(251, 146, 60, 0.1));
    position: relative;
    overflow: hidden;
}

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

.hero-content {
    position: relative;
    z-index: 10;
}

.badge {
    display: inline-block;
    background-color: rgba(249, 115, 22, 0.2);
    color: var(--orange-400);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(249, 115, 22, 0.3);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero-title .highlight {
    color: var(--orange-400);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.email-signup-form {
    max-width: 28rem;
    margin-bottom: 1rem;
}

.email-input-wrapper {
    display: flex;
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid var(--slate-600);
    overflow: hidden;
    transition: all 0.3s;
    margin-bottom: 0.75rem;
}

.email-input-wrapper:focus-within {
    border-color: var(--orange-500);
    box-shadow: 0 0 0 2px rgba(249, 115, 22, 0.2);
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    background-color: var(--white);
    color: #1e293b;
    border: none;
    outline: none;
    font-size: 1rem;
}

.email-input::placeholder {
    color: var(--slate-500);
}

.signup-button {
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.signup-button:hover {
    background-color: var(--orange-600);
}

.signup-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.arrow-icon {
    font-size: 1.25rem;
}

.signup-note {
    font-size: 0.875rem;
    color: var(--slate-400);
    margin-top: 0.5rem;
}

.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--slate-300);
}

.trust-badge-icon {
    color: var(--orange-400);
    font-size: 1rem;
}

.trust-badge-text {
    font-weight: 500;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--slate-300);
    font-size: 1rem;
}

.hero-feature-icon {
    font-size: 1.25rem;
    color: var(--orange-400);
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}

.hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--slate-800);
    max-height: 400px;
    width: 100%;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    object-fit: cover;
    max-height: 400px;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent, transparent);
}

.hero-image-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 0.75rem;
    border: 1px solid var(--slate-700);
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}

.hero-card-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--orange-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.hero-card-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.hero-card-subtitle {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin: 0;
}

.hero-card-progress {
    width: 100%;
    background-color: var(--slate-700);
    height: 0.5rem;
    border-radius: 9999px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.hero-card-progress-bar {
    height: 100%;
    width: 75%;
    background-color: var(--orange-500);
}

.hero-card-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: var(--slate-400);
}

/* How It Works Section */
.how-it-works-section {
    padding: 6rem 0;
    background-color: var(--slate-950);
}

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

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--slate-400);
    max-width: 48rem;
    margin: 0 auto;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.how-it-works-item {
    background-color: var(--slate-900);
    border-radius: 0.75rem;
    padding: 2rem;
    border: 1px solid var(--slate-800);
    transition: all 0.3s;
    height: 100%;
}

.how-it-works-item:hover {
    border-color: rgba(249, 115, 22, 0.5);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(249, 115, 22, 0.1);
}

.how-it-works-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--slate-800);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.how-it-works-item:hover .how-it-works-icon-wrapper {
    background-color: var(--orange-500);
}

.how-it-works-icon {
    font-size: 1.75rem;
    color: var(--orange-500);
    transition: color 0.3s;
}

.how-it-works-item:hover .how-it-works-icon {
    color: var(--white);
}

.how-it-works-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.how-it-works-description {
    color: var(--slate-400);
    line-height: 1.6;
}

.how-it-works-cta {
    text-align: center;
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.how-it-works-button {
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
    margin: 0 auto;
}

.how-it-works-button:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

/* Subscription Tiers Section */
.tiers-section {
    padding: 5rem 0;
    background-color: var(--slate-900);
    position: relative;
}

.tiers-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(30, 41, 59, 0.5);
    border: 1px solid var(--slate-700);
    border-radius: 9999px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    color: var(--orange-400);
    margin-top: 1rem;
    gap: 0.5rem;
}

.tiers-badge-icon {
    font-size: 1rem;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto;
}

.tier-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    border-radius: 1rem;
    border: 1px solid var(--slate-800);
    background-color: var(--slate-950);
    transition: all 0.3s;
}

.tier-card:hover {
    border-color: var(--slate-700);
}

.tier-recommended {
    background-color: var(--slate-800);
    border-color: var(--orange-500);
    box-shadow: 0 25px 50px -12px rgba(249, 115, 22, 0.2);
}

.tier-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--orange-500);
    color: var(--white);
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.tier-content {
    padding: 2rem;
    flex-grow: 1;
}

.tier-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.tier-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.tier-description {
    color: var(--slate-400);
    font-size: 0.875rem;
    margin-top: 0.25rem;
    padding-right: 1rem;
}

.tier-icon-wrapper {
    padding: 0.75rem;
    border-radius: 0.75rem;
    background-color: var(--slate-800);
}

.tier-icon-recommended {
    background-color: rgba(249, 115, 22, 0.1);
}

.tier-icon {
    font-size: 2rem;
    color: var(--slate-400);
}

.tier-recommended .tier-icon {
    color: var(--orange-500);
}

.tier-price {
    display: flex;
    align-items: baseline;
    margin-bottom: 2rem;
}

.tier-currency {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--white);
}

.tier-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
}

.tier-frequency {
    color: var(--slate-400);
    margin-left: 0.5rem;
    font-weight: 500;
}

.tier-breakdown {
    background-color: rgba(15, 23, 42, 0.5);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--slate-800);
}

.tier-breakdown-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.tier-breakdown-list {
    list-style: none;
    margin-bottom: 1rem;
}

.tier-breakdown-list li {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--slate-300);
    margin-bottom: 0.5rem;
}

.tier-breakdown-list li:before {
    content: "";
    width: 0.375rem;
    height: 0.375rem;
    border-radius: 9999px;
    background-color: rgba(249, 115, 22, 0.5);
    margin-right: 0.5rem;
}

.tier-shipment {
    padding-top: 0.75rem;
    border-top: 1px solid var(--slate-800);
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: var(--orange-400);
    font-weight: 500;
    gap: 0.5rem;
}

.tier-shipment-icon {
    font-size: 0.75rem;
}

.tier-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.tier-feature {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--slate-400);
}

.tier-feature-check {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    color: var(--slate-600);
    font-weight: bold;
}

.tier-feature-check-recommended {
    color: var(--orange-500);
}

.tier-button-wrapper {
    padding: 2rem;
    padding-top: 0;
}

.tier-button {
    width: 100%;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    background-color: var(--slate-800);
    color: var(--white);
    border: 1px solid var(--slate-700);
}

.tier-button:hover {
    background-color: var(--slate-700);
}

.tier-button-recommended {
    background-color: var(--orange-500);
    border-color: var(--orange-500);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}

.tier-button-recommended:hover {
    background-color: var(--orange-600);
}

.tiers-disclaimer {
    margin-top: 3rem;
    text-align: center;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--slate-500);
}

.tiers-disclaimer-icon {
    font-size: 1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Calculator Section */
.calculator-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08) 0%, var(--slate-900) 50%, rgba(249, 115, 22, 0.08) 100%);
    border-top: 3px solid var(--orange-500);
    border-bottom: 3px solid var(--orange-500);
    position: relative;
    margin: 2rem 0;
}

.calculator-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.calculator {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--slate-900) 0%, rgba(30, 41, 59, 0.9) 100%);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid var(--orange-500);
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.4), 0 0 0 1px rgba(249, 115, 22, 0.2) inset;
    position: relative;
    z-index: 1;
}

.calculator-form {
    width: 100%;
}

.calculator-inputs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.calculator-input-group {
    display: flex;
    flex-direction: column;
}

.calculator-input-group-full {
    grid-column: 1 / -1;
}

.calculator-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.calculator-select,
.calculator-input {
    padding: 0.625rem 0.875rem;
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 0.9375rem;
    transition: all 0.3s;
}

.calculator-select:focus,
.calculator-input:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.calculator-select option {
    background-color: var(--slate-800);
    color: var(--white);
}

.calculator-cta-wrapper {
    text-align: center;
    margin-top: 1.5rem;
}

.calculator-results {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-800);
}

.calculator-loading {
    text-align: center;
    padding: 2rem;
}

.calculator-loading-spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--slate-700);
    border-top-color: var(--orange-500);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.calculator-loading p {
    color: var(--slate-400);
    font-size: 0.9375rem;
}

.email-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.calculator-results-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    text-align: center;
}

.calculator-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.calculator-result-card {
    background-color: rgba(15, 23, 42, 0.5);
    border: 1px solid var(--slate-800);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s;
}

.calculator-result-card:hover {
    border-color: var(--orange-500);
    transform: translateY(-2px);
}

.calculator-result-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.calculator-result-label {
    font-size: 0.75rem;
    color: var(--slate-400);
    margin-bottom: 0.25rem;
}

.calculator-result-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--orange-400);
}

.calculator-result-note {
    font-size: 0.75rem;
    color: var(--slate-500);
    margin-top: 0.25rem;
}

.calculator-comparison {
    background-color: rgba(249, 115, 22, 0.1);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1rem;
}

.calculator-comparison-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}

.calculator-comparison-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.calculator-comparison-item {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    color: var(--slate-300);
}

.calculator-comparison-savings {
    color: var(--orange-400);
    font-weight: 600;
    font-size: 1.125rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(249, 115, 22, 0.3);
}

.calculator-recommendation {
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.calculator-recommendation-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.calculator-recommendation-text {
    color: var(--slate-300);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.calculator-cta-button {
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 0.875rem 2rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.calculator-cta-button:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

/* Calculator Responsive */
@media (max-width: 768px) {
    .calculator-section {
        padding: 2rem 0;
        margin: 1rem 0;
    }
    
    .calculator {
        padding: 1.25rem;
        border-width: 1px;
        border-radius: 0.75rem;
    }
    
    .calculator-inputs {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .calculator-label {
        font-size: 0.8125rem;
        margin-bottom: 0.375rem;
    }
    
    .calculator-select,
    .calculator-input {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    .calculator-results {
        margin-top: 1.25rem;
        padding-top: 1.25rem;
    }
    
    .calculator-results-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .calculator-results-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }
    
    .calculator-result-card {
        padding: 1rem 0.75rem;
    }
    
    .calculator-result-icon {
        font-size: 1.25rem;
    }
    
    .calculator-result-label {
        font-size: 0.6875rem;
    }
    
    .calculator-result-value {
        font-size: 1.125rem;
    }
    
    .calculator-result-note {
        font-size: 0.6875rem;
        margin-top: 0.25rem;
    }
    
    .calculator-comparison {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .calculator-comparison-title {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .calculator-comparison-item {
        font-size: 0.9375rem;
    }
    
    .calculator-comparison-savings {
        font-size: 1rem;
    }
    
    .calculator-cta-wrapper {
        margin-top: 1rem;
    }
    
    .calculator-cta-button {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .calculator-section {
        padding: 1.5rem 0;
    }
    
    .calculator {
        padding: 1rem;
    }
    
    .calculator-inputs {
        gap: 0.875rem;
    }
    
    .calculator-results-grid {
        gap: 0.75rem;
    }
    
    .calculator-result-card {
        padding: 0.875rem 0.625rem;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background-color: var(--slate-900);
}

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

.testimonial-card {
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.2);
}

.testimonial-rating {
    margin-bottom: 1rem;
}

.testimonial-rating .star {
    color: var(--orange-400);
    font-size: 1.25rem;
    margin-right: 0.25rem;
}

.testimonial-text {
    color: var(--slate-300);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.9375rem;
}

.testimonial-location {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.testimonials-cta-text {
    font-size: 1.125rem;
    color: var(--slate-300);
    font-weight: 500;
}

/* Pain Points Section */
.pain-points-section {
    padding: 4rem 0;
    background-color: var(--slate-900);
}

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


.pain-point-card {
    text-align: center;
    padding: 2rem;
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    transition: all 0.3s;
}

.pain-point-card:hover {
    border-color: var(--orange-500);
    transform: translateY(-4px);
}

.pain-point-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.pain-point-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.pain-point-description {
    color: var(--slate-400);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.pain-points-solution {
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(249, 115, 22, 0.05) 100%);
    border: 2px solid var(--orange-500);
    border-radius: 1rem;
}

.pain-points-solution-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--orange-400);
    margin-bottom: 0.75rem;
}

.pain-points-solution-text {
    font-size: 1.125rem;
    color: var(--slate-300);
    line-height: 1.6;
}

/* Why AmmoStash Section */
.why-ammostash-section {
    padding: 5rem 0;
    background-color: var(--slate-950);
}

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


.why-ammostash-card {
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s;
}

.why-ammostash-card:hover {
    border-color: var(--orange-500);
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -5px rgba(249, 115, 22, 0.2);
}

.why-ammostash-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-ammostash-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.why-ammostash-description {
    color: var(--slate-300);
    line-height: 1.7;
}

.why-ammostash-cta {
    text-align: center;
    margin-top: 3rem;
}

.why-ammostash-cta-text {
    font-size: 1.125rem;
    color: var(--slate-300);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.why-ammostash-button {
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}

.why-ammostash-button:hover {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

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

@media (max-width: 768px) {
    .pain-points-section,
    .why-ammostash-section {
        padding: 3rem 0;
    }
    
    .pain-points-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .pain-point-card {
        display: block !important;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .pain-point-icon {
        font-size: 2.5rem;
        margin-bottom: 0.75rem;
    }
    
    .pain-point-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .pain-point-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .pain-points-solution {
        padding: 2rem 1.5rem;
    }
    
    .pain-points-solution-title {
        font-size: 1.5rem;
    }
    
    .pain-points-solution-text {
        font-size: 1rem;
    }
    
    .why-ammostash-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .why-ammostash-card {
        display: block !important;
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .why-ammostash-icon {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .why-ammostash-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .why-ammostash-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .why-ammostash-cta {
        margin-top: 2rem;
    }
    
    .why-ammostash-cta-text {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .why-ammostash-button {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Storage Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--slate-950);
}

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

.benefit-card {
    background-color: var(--slate-900);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-800);
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--slate-700);
}

.benefit-icon-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: var(--slate-800);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    font-size: 1.5rem;
    color: var(--orange-500);
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: var(--slate-400);
    line-height: 1.6;
}

/* Auto-Ship Section */
.autoship-section {
    padding: 6rem 0;
    background-color: var(--slate-900);
}

.autoship-gradient-card {
    background: linear-gradient(to bottom right, var(--orange-600), var(--orange-700));
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.autoship-gradient-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    filter: blur(80px);
    transform: translate(5rem, -5rem);
}

.autoship-gradient-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 9999px;
    filter: blur(80px);
    transform: translate(-5rem, 5rem);
}

.autoship-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 64rem;
    margin: 0 auto;
}

.autoship-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.autoship-description {
    font-size: 1.25rem;
    color: rgba(255, 237, 213, 1);
    margin-bottom: 3rem;
}

.autoship-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.autoship-feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.autoship-feature-icon {
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 1rem;
    display: block;
}

.autoship-feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.autoship-feature-description {
    font-size: 0.875rem;
    color: rgba(255, 237, 213, 1);
}

.autoship-button {
    background-color: var(--white);
    color: var(--orange-600);
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.autoship-button:hover {
    background-color: rgba(255, 237, 213, 1);
    color: var(--orange-700);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background-color: var(--slate-900);
}

.faq-container {
    max-width: 64rem;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--slate-800);
    border-radius: 0.5rem;
    overflow: hidden;
    background-color: rgba(2, 6, 23, 0.5);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--slate-100);
    padding: 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    padding-right: 2rem;
}

.faq-question:hover {
    background-color: rgba(30, 41, 59, 0.5);
}

.faq-question.active {
    color: var(--orange-500);
}

.faq-icon {
    color: var(--orange-500);
    flex-shrink: 0;
    font-size: 1.25rem;
    transition: transform 0.3s;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--slate-400);
    line-height: 1.6;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 0 1.5rem 1.5rem;
}

/* Newsletter Popup */
.newsletter-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.newsletter-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.newsletter-popup-content {
    position: relative;
    background: linear-gradient(135deg, var(--slate-900) 0%, rgba(30, 41, 59, 0.95) 100%);
    border: 2px solid var(--orange-500);
    border-radius: 1rem;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 40px -10px rgba(249, 115, 22, 0.4);
    animation: slideUp 0.3s ease-out;
    z-index: 10000;
}

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

.newsletter-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--slate-400);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
    z-index: 10001;
}

.newsletter-popup-close:hover {
    color: var(--white);
}

.newsletter-popup-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.newsletter-popup-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.newsletter-popup-subtitle {
    font-size: 1rem;
    color: var(--orange-400);
    font-weight: 600;
}

.newsletter-popup-body {
    margin-top: 1.5rem;
}

.newsletter-popup-description {
    color: var(--slate-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.newsletter-popup-form {
    width: 100%;
}

.newsletter-popup-input-wrapper {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.newsletter-popup-input {
    flex: 1;
    padding: 0.875rem 1rem;
    background-color: var(--slate-800);
    border: 1px solid var(--slate-700);
    border-radius: 0.5rem;
    color: var(--white);
    font-size: 1rem;
    transition: all 0.3s;
}

.newsletter-popup-input:focus {
    outline: none;
    border-color: var(--orange-500);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

.newsletter-popup-input::placeholder {
    color: var(--slate-500);
}

.newsletter-popup-button {
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
    white-space: nowrap;
}

.newsletter-popup-button:hover:not(:disabled) {
    background-color: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.newsletter-popup-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.newsletter-popup-note {
    font-size: 0.875rem;
    color: var(--slate-500);
    text-align: center;
    margin: 0;
}

.newsletter-popup-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
    display: block;
}

@media (max-width: 768px) {
    .newsletter-popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
        margin: 1rem;
    }
    
    .newsletter-popup-close {
        top: 0.75rem;
        right: 0.75rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.75rem;
    }
    
    .newsletter-popup-header {
        margin-bottom: 1.25rem;
        padding-right: 2rem;
    }
    
    .newsletter-popup-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }
    
    .newsletter-popup-subtitle {
        font-size: 0.9375rem;
    }
    
    .newsletter-popup-description {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .newsletter-popup-input-wrapper {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-popup-input {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .newsletter-popup-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .newsletter-popup-note {
        font-size: 0.8125rem;
    }
}

@media (max-width: 480px) {
    .newsletter-popup-content {
        padding: 1.75rem 1.25rem;
        border-radius: 0.75rem;
    }
    
    .newsletter-popup-title {
        font-size: 1.25rem;
    }
    
    .newsletter-popup-subtitle {
        font-size: 0.875rem;
    }
    
    .newsletter-popup-description {
        font-size: 0.875rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: var(--slate-950);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(249, 115, 22, 0.05);
}

.cta-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-button {
    background-color: var(--orange-500);
    color: var(--white);
    border: none;
    padding: 1.75rem 2.5rem;
    border-radius: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 2.5rem;
    transition: all 0.3s;
    box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.2);
}

.cta-button:hover {
    background-color: var(--orange-600);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    background-color: var(--slate-950);
    border-top: 1px solid var(--slate-800);
    padding: 3rem 0;
}

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

.footer-brand-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-brand-icon {
    width: 32px !important;
    height: 32px !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    display: block;
}

.footer-brand-tagline {
    font-size: 0.75rem;
    color: var(--orange-400);
    display: block;
}

.footer-brand-description {
    color: var(--slate-400);
    font-size: 0.875rem;
}

.footer-contact-title {
    color: var(--white);
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--slate-400);
    font-size: 0.875rem;
}

.footer-contact-icon {
    font-size: 1rem;
    color: var(--orange-400);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--slate-800);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}

.footer-copyright {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-link {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--orange-400);
}

/* Desktop Hero Optimization */
@media (min-width: 769px) {
    .hero-section {
        padding: 1rem 0 2.5rem;
    }
    
    .hero-image-container {
        max-height: 350px;
    }
    
    .hero-image {
        max-height: 350px;
    }
    
    .hero-grid {
        gap: 1.5rem;
    }
    
    .hero-image-wrapper {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .main-navigation {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--slate-950);
        flex-direction: column;
        padding: 2.5rem 1rem;
        transition: left 0.3s;
        border-top: 1px solid var(--slate-800);
    }

    .main-navigation.active {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 1.25rem;
    }

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

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-description {
        font-size: 1.125rem;
    }

    .email-input-wrapper {
        flex-direction: column;
    }

    .signup-button {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .autoship-title {
        font-size: 2rem;
    }

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

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .autoship-title {
        font-size: 1.75rem;
    }
}
