/* CSS Variables */
:root {
    --primary-color: #3182ce;
    --secondary-color: #2c5282;
    --text-color: #333;
    --light-bg: #f7fafc;
    --border-color: #e2e8f0;
    --touch-target-min: 44px;
    --border-radius: 8px;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
}

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

/* Screen reader only class */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus management for accessibility */
*:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-color);
    color: white;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1001;
}

.skip-link:focus {
    top: 6px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    color: #1a365d;
}

h2 {
    font-size: 2.5rem;
    color: #2d3748;
}

h3 {
    font-size: 1.5rem;
    color: #4a5568;
}

p {
    margin-bottom: 1rem;
    color: #666;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn--primary {
    background-color: #3182ce;
    color: white;
    border-color: #3182ce;
}

.btn--primary:hover {
    background-color: #2c5282;
    border-color: #2c5282;
    transform: translateY(-2px);
}

.btn--secondary {
    background-color: transparent;
    color: #3182ce;
    border-color: #3182ce;
}

.btn--secondary:hover {
    background-color: #3182ce;
    color: white;
}

.btn--outline {
    background-color: transparent;
    color: #4a5568;
    border-color: #e2e8f0;
}

.btn--outline:hover {
    background-color: #4a5568;
    color: white;
    border-color: #4a5568;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e2e8f0;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav__logo {
    display: flex;
    align-items: center;
}

.nav__logo .logo {
    height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav__logo .logo:hover {
    transform: scale(1.05);
}

.nav__logo h2 {
    color: #3182ce;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav__logo a {
    text-decoration: none;
}

.nav__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav__link:hover {
    color: #3182ce;
}

.nav__toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    min-height: var(--touch-target-min);
    min-width: var(--touch-target-min);
    -webkit-tap-highlight-color: transparent;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

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

.hero__title {
    font-size: 3.5rem;
    color: #1a365d;
    margin-bottom: 1.5rem;
}

.hero__subtitle {
    font-size: 1.3rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero__cta {
    display: flex;
    gap: 1rem;
}

.hero__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__placeholder {
    width: 400px;
    height: 300px;
    background: linear-gradient(135deg, #3182ce, #2c5282);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #ffffff;
}

.section__title {
    text-align: center;
    margin-bottom: 3rem;
    color: #1a365d;
}

.section__subtitle {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.2rem;
    color: #666;
}

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

.benefit {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background-color: #f7fafc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: #2d3748;
    margin-bottom: 1rem;
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 3rem;
    padding: 1rem;
    background-color: white;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.toggle-label {
    font-weight: 600;
    color: #4a5568;
    transition: color 0.3s ease;
}

.toggle-label.active {
    color: #3182ce;
}

.discount-badge {
    background: linear-gradient(135deg, #38a169, #2f855a);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 0.5rem;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

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

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #cbd5e0;
    transition: 0.4s;
    border-radius: 32px;
}

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

.toggle-switch input:checked + .toggle-slider {
    background: linear-gradient(135deg, #3182ce, #2c5282);
}

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

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

.plan {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.plan--popular {
    border: 2px solid #3182ce;
    transform: scale(1.05);
}

.plan__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #3182ce;
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

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

.plan__name {
    color: #1a365d;
    margin-bottom: 1rem;
}

.plan__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 1rem;
}

.plan__currency {
    font-size: 1.5rem;
    color: #4a5568;
    margin-right: 0.25rem;
}

.plan__amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.plan__period {
    font-size: 1.2rem;
    color: #666;
    margin-left: 0.25rem;
}

.plan__tagline {
    font-style: italic;
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 0;
}

.plan__features {
    list-style: none;
    margin-bottom: 2rem;
}

.plan__features li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f7fafc;
    position: relative;
    padding-left: 1.5rem;
    color: #4a5568;
}

.plan__features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.plan__features li:last-child {
    border-bottom: none;
}

.plan__actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.plan__yearly-note {
    text-align: center;
    margin-top: 0.5rem;
    color: #38a169;
    font-weight: 600;
}

.plan__yearly-note small {
    font-size: 0.85rem;
}

.subscribe-btn {
    font-weight: 600;
    position: relative;
    overflow: hidden;
}

.subscribe-btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.subscribe-btn:hover:before {
    left: 100%;
}

/* Prevention Calculator Section */
.prevention-calculator {
    padding: 80px 0;
    background: linear-gradient(135deg, #fed7d7 0%, #feb2b2 100%);
    position: relative;
}

.calculator-hook {
    text-align: center;
    margin-bottom: 3rem;
}

.calculator-tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #742a2a;
    font-weight: 600;
    margin: 0;
}

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

.prevention-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid transparent;
}

.prevention-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.prevention-item--priceless {
    border-color: #e53e3e;
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
}

.prevention-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.prevention-item h3 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.prevention-cost {
    font-size: 2rem;
    font-weight: 700;
    color: #e53e3e;
    margin-bottom: 1rem;
}

.prevention-item--priceless .prevention-cost {
    background: linear-gradient(135deg, #e53e3e, #c53030);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
}

.prevention-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.calculator-summary {
    background-color: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    margin: 3rem 0;
    text-align: center;
}

.calculator-math {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.math-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}

.math-label {
    font-size: 1.1rem;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.math-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a365d;
}

.math-vs {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e53e3e;
    background-color: #fed7d7;
    padding: 0.5rem 1rem;
    border-radius: 50%;
    min-width: 50px;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calculator-result {
    border-top: 2px solid #e2e8f0;
    padding-top: 2rem;
}

.calculator-result h3 {
    color: #1a365d;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.calculator-result p {
    color: #666;
    font-size: 1.2rem;
    margin: 0;
}

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

.prevention-note {
    margin-top: 1rem;
    font-style: italic;
    color: #742a2a;
    font-weight: 500;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: #1a365d;
    color: white;
    text-align: center;
}

.cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta p {
    color: #cbd5e0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #2d3748;
    color: white;
    padding: 60px 0 20px;
}

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

.footer__section h3,
.footer__section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer__section p {
    color: #cbd5e0;
}

.footer__section ul {
    list-style: none;
}

.footer__section ul li {
    margin-bottom: 0.5rem;
}

.footer__section ul li a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__section ul li a:hover {
    color: white;
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
}

/* Plan Detail Pages */
.plan-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
    color: white;
    text-align: center;
}

.plan-hero__badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.plan-hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
}

.plan-hero__price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 2rem;
}

.plan-hero__currency {
    font-size: 2rem;
    margin-right: 0.25rem;
}

.plan-hero__amount {
    font-size: 4rem;
    font-weight: 700;
}

.plan-hero__period {
    font-size: 1.5rem;
    margin-left: 0.25rem;
}

.plan-hero__description {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #cbd5e0;
}

.plan-hero__cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Plan Details Section */
.plan-details {
    padding: 80px 0;
    background-color: #f7fafc;
}

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

.feature {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.feature__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature h3 {
    color: #1a365d;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background-color: white;
}

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

.schedule-item {
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3182ce;
}

.schedule-item__season {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.schedule-item__month {
    color: #3182ce;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.schedule-item__tasks {
    list-style: none;
}

.schedule-item__tasks li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.schedule-item__tasks li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3182ce;
    font-weight: bold;
}

/* Comparison Section */
.compare {
    padding: 80px 0;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.comparison-table {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    align-items: center;
}

.comparison-header {
    background-color: #1a365d;
    color: white;
    font-weight: 600;
    padding: 1.5rem;
}

.comparison-row {
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 1.5rem;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-feature {
    font-weight: 500;
    color: #2d3748;
}

.comparison-plan {
    text-align: center;
    padding: 0.5rem;
}

.comparison-plan--current {
    background-color: #e6fffa;
    color: #065f46;
    font-weight: 600;
    border-radius: 8px;
    margin: 0.25rem;
}

.comparison-plan span {
    font-size: 0.9rem;
    color: #666;
}

.comparison-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Value Section */
.value {
    padding: 80px 0;
    background-color: #f7fafc;
}

.value-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.value-item {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.value-item--guardian {
    border: 2px solid #3182ce;
    position: relative;
    transform: scale(1.02);
}

.value-item h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.value-list {
    list-style: none;
    margin-bottom: 1.5rem;
}

.value-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f7fafc;
    color: #4a5568;
}

.value-list li:last-child {
    border-bottom: none;
    color: #1a365d;
    font-size: 1.1rem;
}

.value-savings {
    background-color: #e6fffa;
    color: #065f46;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
}

/* Premier Plan Specific Styles */
.premier-schedule {
    margin-top: 3rem;
}

.schedule-week {
    margin-bottom: 3rem;
    padding: 2rem;
    background-color: #f7fafc;
    border-radius: 12px;
    border-left: 4px solid #b45309;
}

.schedule-week h3 {
    color: #744210;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.week-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.week-item h4 {
    color: #1a365d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.week-item ul {
    list-style: none;
    margin: 0;
}

.week-item li {
    padding: 0.5rem 0;
    color: #4a5568;
    position: relative;
    padding-left: 1.5rem;
}

.week-item li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #b45309;
    font-weight: bold;
}

.quarterly-highlights {
    margin-top: 3rem;
    text-align: center;
}

.quarterly-highlights h3 {
    color: #1a365d;
    margin-bottom: 2rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.highlight-item {
    background-color: #fff7ed;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 3px solid #b45309;
    text-align: left;
}

.highlight-item strong {
    color: #744210;
    display: block;
    margin-bottom: 0.5rem;
}

/* Premier Benefits */
.premier-benefits {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
}

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

.benefit-premium {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.benefit-premium__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-premium h3 {
    color: #744210;
    margin-bottom: 1rem;
}

.benefit-premium p {
    color: #4a5568;
    line-height: 1.6;
}

/* ROI Section */
.roi {
    padding: 80px 0;
    background-color: white;
}

.roi-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.roi-column {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.roi-column--premier {
    background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
    border: 2px solid #b45309;
    transform: scale(1.02);
}

.roi-column h3 {
    color: #1a365d;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cost-total {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    margin-top: 1rem;
    border-top: 2px solid #b45309;
    font-size: 1.1rem;
}

.cost-total--savings {
    background-color: rgba(56, 161, 105, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border-top: none;
    margin-top: 1rem;
}

.roi-summary {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background-color: #e6fffa;
    border-radius: 12px;
    border-left: 4px solid #38a169;
}

.roi-summary p {
    font-size: 1.2rem;
    color: #065f46;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: white;
}

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

.contact-info h3 {
    color: #1a365d;
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    color: #2d3748;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    color: #666;
}

.contact-form {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3182ce;
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.1);
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Service Areas Section */
.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.area-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.area-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.area-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.area-item p {
    margin-bottom: 1.5rem;
    color: #4a5568;
    line-height: 1.6;
}

.area-services {
    list-style: none;
    margin: 0;
}

.area-services li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #4a5568;
}

.area-services li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #38a169;
    font-weight: bold;
}

.service-coverage {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.service-coverage h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.coverage-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.coverage-link:hover {
    text-decoration: underline;
}

/* Mobile Navigation Menu */
@media (max-width: 768px) {
    .nav__menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-md);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav__menu.nav__menu--open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav__menu li {
        margin-bottom: 15px;
    }
    
    .nav__menu .nav__link {
        display: block;
        padding: 12px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid var(--border-color);
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .nav__logo .logo {
        height: 60px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero__placeholder {
        width: 100%;
        max-width: 350px;
        height: 250px;
    }
    
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .plans__grid {
        grid-template-columns: 1fr;
    }
    
    .plan--popular {
        transform: none;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav__logo .logo {
        height: 50px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }
    
    .plan {
        padding: 1.5rem;
    }
    
    .plan__amount {
        font-size: 2.5rem;
    }

    .plan-hero__title {
        font-size: 2rem;
    }
    
    .plan-hero__amount {
        font-size: 3rem;
    }
    
    .plan-hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.9rem;
    }
    
    .comparison-header,
    .comparison-row {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .calculator-tagline {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .prevention-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-math {
        flex-direction: column;
        gap: 1rem;
    }
    
    .math-vs {
        transform: rotate(90deg);
    }
    
    .calculator-summary {
        padding: 2rem 1rem;
    }
    
    .calculator-result h3 {
        font-size: 1.5rem;
    }
    
    .prevention-cost {
        font-size: 1.8rem;
    }
    
    .prevention-item--priceless .prevention-cost {
        font-size: 2rem;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .area-item {
        padding: 1.5rem;
    }
    
    .service-coverage {
        padding: 1.5rem;
    }
}    .week-grid {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-comparison {
        grid-template-columns: 1fr;
    }
    
    .roi-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .roi-column--premier {
        transform: none;
    }
    
    .cost-item {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .cost-total {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .value-comparison {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .value-item--guardian {
        transform: none;
    }
    
    .calculator-tagline {
        font-size: 1.2rem;
        padding: 0 1rem;
    }
    
    .prevention-grid {
        grid-template-columns: 1fr;
    }
    
    .calculator-math {
        flex-direction: column;
        gap: 1rem;
    }
    
    .math-vs {
        transform: rotate(90deg);
    }
    
    .calculator-summary {
        padding: 2rem 1rem;
    }
    
    .calculator-result h3 {
        font-size: 1.5rem;
    }
    
    .prevention-cost {
        font-size: 1.8rem;
    }
    
    .prevention-item--priceless .prevention-cost {
        font-size: 2rem;
    }
}