* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ffffff;
    --primary-muted: #e4e4e7;
    --accent-color: #71717a;
    --bg-dark: #09090b;
    --bg-darker: #000000;
    --bg-card: #18181b;
    --bg-card-hover: #27272a;
    --text-primary: #fafafa;
    --text-secondary: #a1a1aa;
    --border-color: #27272a;
    --border-accent: #3f3f46;
    --glow-subtle: rgba(255, 255, 255, 0.03);
    --glow-hover: rgba(255, 255, 255, 0.06);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(9, 9, 11, 0.8);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    backdrop-filter: blur(20px);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.02em;
}

.logo-bold {
    font-weight: 700;
}

.logo-tm {
    font-size: 0.625rem;
    vertical-align: super;
    color: var(--text-muted);
    margin-left: 2px;
    font-weight: 400;
}

nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: linear-gradient(180deg, #ffffff 0%, #e4e4e7 100%);
    color: var(--bg-darker) !important;
    padding: 0.625rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.25s ease;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.08);
}

.btn-nav:hover {
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.15);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: var(--bg-dark);
    background-image: radial-gradient(ellipse 80% 50% at 50% -20%, rgba(255, 255, 255, 0.04), transparent);
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.mobile-break {
    display: none;
}

.highlight {
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--text-primary);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: 1px solid var(--border-accent);
    cursor: pointer;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    background: var(--glow-hover);
    border-color: var(--text-secondary);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(180deg, #ffffff 0%, #e4e4e7 100%);
    color: var(--bg-darker);
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.25s ease;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
}

.btn-main-text {
    display: block;
}

.btn-subtext {
    position: absolute;
    bottom: 0.25rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    font-weight: 400;
    opacity: 0.6;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    white-space: nowrap;
}

.btn-primary:hover {
    transform: translateY(-2px);
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), 0 10px 40px rgba(255, 255, 255, 0.1), inset 0 1px 0 rgba(255, 255, 255, 1);
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-top: 5rem;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(180deg, #ffffff 20%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Calculator Section */
.calculator-section {
    padding: 5rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.calculator-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.calculator-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 2rem auto 0;
    max-width: 400px;
    background: var(--bg-card);
    padding: 0.375rem;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.calc-tab {
    flex: 1;
    padding: 0.625rem 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    font-family: inherit;
}

.calc-tab:hover {
    color: var(--text-primary);
}

.calc-tab.active {
    background: var(--primary-color);
    color: var(--bg-darker);
}

.calculator-card {
    max-width: 900px;
    margin: 3rem auto 0;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 24, 27, 0.8) 100%);
    border: 1px solid var(--border-color);
    border-top-color: var(--border-accent);
    border-radius: 12px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 255, 255, 0.02);
}

.calculator-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.calc-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calc-form-group label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-hint {
    display: block;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-style: italic;
    opacity: 0.8;
}

.calc-input {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 0.875rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.2s;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Input with prefix (for dollar sign) */
.input-with-prefix {
    position: relative;
    display: flex;
    align-items: center;
}

.input-with-prefix .input-prefix {
    position: absolute;
    left: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
    pointer-events: none;
    z-index: 1;
}

.input-with-prefix .calc-input {
    padding-left: 1rem;
}

.input-with-prefix.has-prefix .calc-input {
    padding-left: 1.75rem;
}

.calc-input:focus {
    outline: none;
    border-color: var(--text-secondary);
    background: var(--bg-darker);
}

.calc-input::placeholder {
    color: var(--text-secondary);
    opacity: 0.5;
}

.calc-btn {
    margin-top: auto;
    width: 100%;
}

.calculator-result {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-dark);
    border-radius: 4px;
    padding: 2rem;
    min-height: 300px;
}

.result-hidden {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.result-content {
    width: 100%;
    text-align: center;
}

.result-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
}

.result-amount {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.15);
}

.result-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.result-detail {
    display: flex;
    justify-content: space-between;
    font-size: 0.9375rem;
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    color: var(--text-primary);
    font-weight: 500;
}

.calculator-disclaimer {
    max-width: 900px;
    margin: 1.5rem auto 0;
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Custom Notification */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 1rem 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 300px;
    max-width: 400px;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s ease;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification.error {
    border-left: 3px solid #ef4444;
}

.notification.success {
    border-left: 3px solid #10b981;
}

.notification-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.notification.error .notification-icon {
    color: #ef4444;
}

.notification.success .notification-icon {
    color: #10b981;
}

.notification-message {
    flex: 1;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

/* Calculator prefill indicator */
.calc-prefill-indicator {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(59, 130, 246, 0.1));
    border: 2px solid var(--accent);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    position: relative;
}

.calc-prefill-indicator svg {
    flex-shrink: 0;
    color: var(--accent);
}

.indicator-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.indicator-content strong {
    color: var(--text-primary);
    font-size: 1rem;
}

.indicator-content span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.clear-prefill {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.clear-prefill:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
}

/* Prefilled field highlight */
.prefilled {
    background: rgba(236, 72, 153, 0.05) !important;
    border-color: var(--accent) !important;
}

@media (max-width: 768px) {
    .calc-prefill-indicator {
        padding-right: 50px;
    }
    
    .clear-prefill {
        position: absolute;
        top: 12px;
        right: 12px;
    }
}

/* Trusted Partners Section */
.trusted-partners {
    padding: 4rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.partners-label {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.partner-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    justify-items: center;
    align-items: center;
    gap: 3rem 4rem;
    max-width: 900px;
    margin: 0 auto;
}

.partner-logo {
    opacity: 0.6;
    transition: opacity 0.2s;
    filter: brightness(0) invert(1);
}

.partner-logo:hover {
    opacity: 1;
}

.partner-logo img {
    height: 32px;
    width: auto;
    display: block;
}

.partner-logo.loading-placeholder {
    width: 100px;
    height: 32px;
    background: linear-gradient(90deg, var(--bg-card) 25%, var(--border-color) 50%, var(--bg-card) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, var(--bg-card) 0%, transparent 100%);
    color: var(--text-primary);
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.step h3 {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.step p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Why Sell Section */
.why-sell {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.why-sell h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.reason {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.reason:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.icon-box {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-accent);
    border-radius: 8px;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, var(--bg-card-hover) 0%, transparent 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.icon-box svg {
    color: var(--text-primary);
}

.reason h3 {
    font-size: 1.125rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.reason p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Points Types Section */
.points-types {
    padding: 6rem 0;
    background: var(--bg-darker);
    border-bottom: 1px solid var(--border-color);
}

.points-types h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 4rem;
    letter-spacing: -0.02em;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .points-grid {
        grid-template-columns: 1fr;
    }
}

.point-type {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
    font-weight: 400;
    font-size: 0.95rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.point-type:hover {
    border-color: var(--border-accent);
    background: var(--bg-card-hover);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

/* Get Quote Section */
.get-quote {
    padding: 6rem 0;
    background: var(--bg-dark);
    border-bottom: 1px solid var(--border-color);
}

.get-quote h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.badge svg {
    color: var(--text-primary);
}

.quote-form {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(24, 24, 27, 0.8) 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    border-top-color: var(--border-accent);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 0 60px rgba(255, 255, 255, 0.02);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 400;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: var(--bg-darker);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--border-accent);
    background: var(--bg-card);
}

.quote-form .btn-primary {
    width: 100%;
    margin-top: 1rem;
}

.success-message {
    text-align: center;
    padding: 4rem 2rem;
    animation: fadeIn 0.5s ease;
}

.success-message svg {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.success-message h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.success-message p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.success-email {
    margin-top: 1rem;
    font-size: 0.95rem;
}

.success-email strong {
    color: var(--text-primary);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--bg-darker);
    color: var(--text-primary);
    padding: 3rem 0 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 500;
    font-size: 0.875rem;
}

.footer-trust {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.footer-trust p {
    margin-bottom: 0.25rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-section a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-bottom a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--border-color);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    nav.active {
        max-height: 300px;
        opacity: 1;
    }

    nav a {
        padding: 1.125rem 24px;
        border-bottom: 1px solid var(--border-color);
        font-size: 1rem;
        display: block;
        transition: all 0.2s ease;
    }

    nav a:hover {
        background: var(--bg-card);
        padding-left: 28px;
    }

    nav a:last-child {
        border-bottom: none;
    }

    .btn-nav {
        border-radius: 0;
        text-align: left;
        margin: 0.75rem 24px 0.75rem 24px;
        padding: 0.75rem 1.25rem;
        border-radius: 4px;
        text-align: center;
    }

    .btn-nav:hover {
        padding-left: 1.25rem;
    }

    .mobile-break {
        display: block;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .trust-indicators {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 2.5rem 3rem;
        margin-top: 3.5rem;
        justify-content: space-around;
    }

    .trust-item {
        min-width: 100px;
    }

    .trust-number {
        font-size: 2rem;
    }

    .trust-label {
        font-size: 0.75rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-form {
        padding: 1.5rem;
    }

    .form-group {
        margin-bottom: 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem;
        font-size: 16px;
    }

    .btn-primary {
        padding: 0.875rem 2rem;
        font-size: 0.95rem;
    }

    .steps,
    .reasons {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero-cta {
        flex-direction: row;
        width: 100%;
        gap: 0.75rem;
        margin-bottom: 3rem;
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: auto;
        flex: 0 1 auto;
        padding: 0.875rem 1.375rem;
        font-size: 0.9375rem;
        white-space: nowrap;
        min-height: 44px;
    }

    .trust-badges {
        gap: 1.5rem;
    }

    .trusted-partners {
        padding: 3rem 0;
    }

    .partner-logos {
        gap: 2rem 2.5rem;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .partner-logo img {
        height: 28px;
    }

    .how-it-works,
    .why-sell,
    .points-types,
    .get-quote,
    .calculator-section {
        padding: 4rem 0;
    }

    .calculator-section h2 {
        font-size: 2rem;
    }

    .calculator-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }

    .calculator-result {
        min-height: 250px;
        padding: 1.5rem 1rem;
    }

    .result-amount {
        font-size: 2.75rem;
        word-break: break-word;
    }

    .calculator-disclaimer {
        padding: 0 20px;
        margin: 1.5rem 20px 0;
    }

    .get-quote h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 3rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 1.25rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.75rem;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        padding: 0.8125rem 1.25rem;
        font-size: 0.9rem;
        min-height: 44px;
    }

    .trust-indicators {
        gap: 2rem 2rem;
        margin-top: 3rem;
    }

    .trust-number {
        font-size: 1.75rem;
    }

    .how-it-works h2,
    .why-sell h2,
    .points-types h2,
    .get-quote h2,
    .calculator-section h2 {
        font-size: 1.75rem;
    }

    .calculator-card {
        padding: 1.25rem;
    }

    .result-amount {
        font-size: 2.25rem;
    }

    .result-details {
        padding: 1rem;
    }

    .calculator-form {
        gap: 1.25rem;
    }

    .calc-input {
        font-size: 16px;
    }

    .quote-form {
        padding: 1.25rem;
    }

    .form-group label {
        font-size: 0.8125rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* Floating Contact Button */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.4);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(236, 72, 153, 0.6);
}

.floating-btn.active {
    background: var(--bg-card);
    border: 2px solid var(--accent);
}

.floating-btn.active svg {
    transform: rotate(45deg);
}

.contact-menu {
    position: absolute;
    bottom: 75px;
    right: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 8px;
    min-width: 180px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.contact-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-primary);
    transition: all 0.2s ease;
    font-size: 0.9375rem;
}

.contact-option:hover {
    background: rgba(255, 255, 255, 0.05);
}

.contact-option.whatsapp:hover {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.contact-option.whatsapp:hover svg {
    color: #25D366;
}

.contact-option.sms:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
}

.contact-option.sms:hover svg {
    color: #3b82f6;
}

.contact-option.call:hover {
    background: rgba(236, 72, 153, 0.1);
    color: var(--accent);
}

.contact-option.call:hover svg {
    color: var(--accent);
}

.contact-option svg {
    flex-shrink: 0;
    transition: color 0.2s ease;
}

@media (max-width: 768px) {
    .floating-contact {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-btn {
        width: 56px;
        height: 56px;
    }
}

/* Claim Offer Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--border-accent) transparent;
}

.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: transparent;
}

.modal-content::-webkit-scrollbar-thumb {
    background: var(--border-accent);
    border-radius: 3px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: var(--text-secondary);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 28px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
    z-index: 1;
}

.modal-close:hover {
    background: var(--bg-card-hover);
    color: var(--text-primary);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.modal-header p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.modal-offer-summary {
    background: var(--bg-darker);
    margin: 1.5rem;
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.offer-summary-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.offer-summary-amount {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.offer-summary-details {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.modal-form {
    padding: 0 2rem 1.5rem;
}

.modal-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.modal-form-group {
    margin-bottom: 1rem;
}

.modal-form-group label {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.modal-form-group input,
.modal-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
}

.modal-form-group input:focus,
.modal-form-group textarea:focus {
    outline: none;
    border-color: var(--text-secondary);
    background: var(--bg-darker);
}

.modal-form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.modal-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

.modal-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 1rem 2rem 1.5rem;
    border-top: 1px solid var(--border-color);
}

.modal-trust span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.modal-trust svg {
    color: var(--text-primary);
}

.modal-success {
    padding: 3rem 2rem;
    text-align: center;
}

.modal-success svg {
    color: #10b981;
    margin-bottom: 1rem;
}

.modal-success h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.modal-success p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.modal-success .email-highlight {
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 600px) {
    .modal-form-row {
        grid-template-columns: 1fr;
    }
    
    .modal-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .modal-form {
        padding: 0 1.5rem 1.5rem;
    }
    
    .modal-offer-summary {
        margin: 1rem;
    }
    
    .modal-trust {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .offer-summary-amount {
        font-size: 1.75rem;
    }
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(90deg, var(--bg-card) 0%, var(--bg-card-hover) 100%);
    border-bottom: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 999;
}

.announcement-banner.info {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

.announcement-banner.warning {
    background: linear-gradient(90deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    border-bottom-color: rgba(245, 158, 11, 0.2);
}

.announcement-banner.success {
    background: linear-gradient(90deg, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0.05) 100%);
    border-bottom-color: rgba(16, 185, 129, 0.2);
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-message {
    font-size: 0.9375rem;
    color: var(--text-primary);
    text-align: center;
}

.banner-link {
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: underline;
    font-size: 0.9375rem;
}

.banner-link:hover {
    opacity: 0.8;
}

.banner-close {
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    position: absolute;
    right: 1rem;
    transition: color 0.2s;
}

.banner-close:hover {
    color: var(--text-primary);
}

/* Entry Popup */
.entry-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.entry-popup {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    animation: popupSlide 0.4s ease;
}

@keyframes popupSlide {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.25rem;
    line-height: 1;
    transition: color 0.2s;
}

.popup-close:hover {
    color: var(--text-primary);
}

.popup-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.popup-icon svg {
    opacity: 0.9;
}

.popup-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.popup-message {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.popup-btn {
    width: 100%;
    padding: 1rem;
}

@media (max-width: 480px) {
    .entry-popup {
        padding: 2rem 1.5rem;
    }
    
    .popup-title {
        font-size: 1.25rem;
    }
    
    .banner-message {
        font-size: 0.8125rem;
    }
    
    .banner-close {
        position: static;
    }
}
