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

:root {
    --primary: #1a365d;
    --accent: #1a365d;;
    --accent-old: #e53e3e;
    --gold: #d69e2e;
    --cream: #faf5f0;
    --charcoal: #2d3748;
    --sage: #68d391;
    --shadow: rgba(26, 54, 93, 0.15);
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --text-high-contrast: #1a202c;
    --bg-high-contrast: #ffffff;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--charcoal);
    background: var(--cream);
}

/* Floating Certification Badge */
.cert-float {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: white;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 4px solid var(--gold);
    animation: certFloat 4s ease-in-out infinite;
}

.cert-badge {
    width: 80px;
    height: auto;
    border-radius: 10px;
    margin-bottom: 8px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.cert-text {
    font-family: 'Space Mono', monospace;
    font-size: 10px;
    font-weight: 700;
    text-align: center;
    color: var(--primary);
    line-height: 1.2;
}

@keyframes certFloat {
    0%, 100% { transform: translateY(-50%) scale(1) rotate(0deg); }
    25% { transform: translateY(-55%) scale(1.05) rotate(2deg); }
    75% { transform: translateY(-45%) scale(1.05) rotate(-2deg); }
}

/* Navigation */
.nav-glass {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 245, 240, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--gold);
    z-index: 999;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.nav-glass.scrolled {
    background: rgba(26, 54, 93, 0.95);
    border-bottom-color: var(--accent);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

/* Mobile page indicator */
.nav-page-title {
    display: none;
    font-family: 'Crimson Text', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    flex: 1;
}

.nav-glass.scrolled .nav-page-title {
    color: var(--gold);
}

@media (max-width: 768px) {
    .nav-page-title {
        display: block;
    }
}

.nav-logo {
    display: flex;
    align-items: center;
    height: 70px;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: all 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.nav-logo img {
    height: 100%;
    width: auto;
    transition: opacity 0.3s ease;
}

.nav-logo .logo-default {
    display: block;
}

.nav-logo .logo-alt {
    display: none;
}

.nav-glass.scrolled .nav-logo .logo-default {
    display: none;
}

.nav-glass.scrolled .nav-logo .logo-alt {
    display: block;
}

.nav-text {
    font-family: 'Crimson Text', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* .nav-text::before {
    content: 'SaH: ';
} */

.nav-glass.scrolled .nav-text {
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-glass.scrolled .hamburger span {
    background: var(--gold);
}

.nav-menu {
    display: none;
}

.nav-menu a {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
    white-space: nowrap;
}

.nav-menu a:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
}

.nav-menu a.active {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

.nav-glass.scrolled .nav-menu a {
    color: white;
    border-color: white;
}

.nav-glass.scrolled .nav-menu a:hover {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.nav-glass.scrolled .nav-menu a.active {
    background: var(--gold);
    color: var(--primary);
    border-color: var(--gold);
}

.nav-contact-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: white !important;
    background: var(--gold);
    border: 2px solid var(--gold) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-contact-btn:hover {
    background: var(--primary) !important;
    color: var(--gold) !important;
    border-color: var(--primary) !important;
}

.nav-glass.scrolled .nav-contact-btn {
    background: var(--gold);
    color: var(--primary) !important;
}

.nav-glass.scrolled .nav-contact-btn:hover {
    background: white !important;
    color: var(--primary) !important;
    border-color: white !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 30px 60px;
    background: linear-gradient(135deg, var(--cream) 0%, #f7fafc 50%, #e6fffa 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(214, 158, 46, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 60%;
    right: 50%;
    width: 350px;
    height: 350px;
    background: url('images/logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.08;
    transform: translate(50%, -50%);
    pointer-events: none;
    z-index: 1;
}

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

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 70vh;
    position: relative;
    z-index: 3;
}

.hero-text {
    max-width: 550px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 600;
    line-height: 0.9;
    margin-bottom: 30px;
}

.title-main {
    display: block;
    color: var(--primary);
    white-space: nowrap;
}

.title-sub {
    display: block;
    color: var(--accent);
    font-style: italic;
    margin-left: 40px;
    animation: titleSlide 3s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

@keyframes titleSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.hero-tagline {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 20px;
    max-width: 500px;
    line-height: 1.4;
    font-weight: 600;
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.5;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
}

.hero-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 18px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: 3px solid var(--primary);
    background: white;
    box-shadow: 0 8px 25px var(--shadow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    width: 100%;
    display: block;
}

.hero-btn:hover {
    background: var(--gold);
    color: white;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(214, 158, 46, 0.4);
}

.hero-btn.active {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 25px var(--shadow);
    border: 2px solid var(--gold);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px) scale(1.05);
}

.stat-number {
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.device-showcase {
    position: relative;
    transform: rotate(-8deg);
    transition: all 0.6s ease;
}

.device-showcase:hover {
    transform: rotate(0deg) scale(1.1);
}

.hero-device {
    max-width: 400px;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 25px 80px var(--shadow);
    border: 6px solid var(--gold);
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.2));
}

.visual-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, var(--gold) 0%, rgba(214, 158, 46, 0.3) 70%, transparent 100%);
    border-radius: 50%;
    opacity: 0.6;
    z-index: -1;
    animation: accentPulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.2; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

@keyframes accentPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.2) rotate(180deg); }
}

/* About Section */
.about {
    padding: 80px 30px;
    background: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Info Sections */
.info-section {
    padding: 60px 30px;
    position: relative;
    overflow: hidden;
}

.info-section.who-we-are {
    background: white;
}

.info-section.what-we-do {
    background: linear-gradient(135deg, var(--cream) 0%, #f7fafc 100%);
}

.info-section.who-for {
    background: white;
}

.info-section.what-you-get {
    background: linear-gradient(135deg, var(--cream) 0%, #f7fafc 100%);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.info-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.15));
    animation: iconBounce 3s ease-in-out infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.info-section .section-title {
    color: var(--primary);
    font-size: 2.8rem;
    margin-bottom: 30px;
}

.info-section .section-title::after {
    background: var(--primary);
}

.info-text {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.info-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
}

.info-text p {
    font-size: 1.3rem;
    line-height: 1.9;
    color: var(--charcoal);
    margin: 0;
    font-weight: 500;
}

.savings-highlight {
    margin-top: 40px;
    padding: 40px;
    background: var(--primary);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.3);
    border: 4px solid var(--gold);
}

.savings-compare {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.savings-item {
    background: white;
    padding: 30px 40px;
    border-radius: 20px;
    min-width: 200px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.savings-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.savings-item.our-plan {
    border: 4px solid var(--sage);
}

.savings-item.assisted-living {
    border: 4px solid var(--accent);
    opacity: 0.8;
}

.savings-label {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.savings-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.savings-price span {
    font-size: 1.2rem;
    opacity: 0.7;
}

.savings-subtext {
    font-size: 0.9rem;
    color: var(--charcoal);
    opacity: 0.7;
}

.savings-vs {
    font-family: 'Space Mono', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.benefits-highlight {
    margin-top: 40px;
    padding: 40px;
    background: var(--primary);
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(26, 54, 93, 0.3);
    border: 4px solid var(--gold);
}

.benefits-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.benefit-compact {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    border: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.benefit-compact:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 15px 35px rgba(214, 158, 46, 0.4);
}

.benefit-compact-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.benefit-compact-text {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.pricing-callout {
    margin-top: 30px;
    text-align: center;
}

.pricing-badge {
    display: inline-block;
    background: white;
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    border: 4px solid var(--sage);
    transition: all 0.3s ease;
}

.pricing-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(104, 211, 145, 0.4);
}

.price-large {
    color: var(--sage);
    font-size: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.about {
    padding: 80px 30px;
    background: var(--primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><polygon points="30,5 50,20 50,40 30,55 10,40 10,20" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-text {
    font-size: 1.35rem;
    line-height: 1.8;
    margin-top: 30px;
}

/* Aging in Place */
.aging-place {
    padding: 80px 30px;
    background: white;
    position: relative;
}

.aging-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.aging-subtitle {
    font-size: 1.4rem;
    color: var(--accent);
    font-style: italic;
    margin-bottom: 40px;
    margin-top: 35px;
}

.aging-grid {
    margin-top: 40px;
}

.aging-text {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.aging-text p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.faq-question {
    font-size: 1.4rem !important;
    color: var(--primary);
    font-weight: 600;
    font-style: italic;
}

.aging-goal {
    background: var(--primary);
    color: var(--gold);
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    font-size: 1.4rem;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--gold);
    font-weight: 600;
    line-height: 1.6;
}

/* Certification Strip */
.cert-strip {
    background: var(--primary);
    color: white;
    padding: 50px 30px;
    margin: 80px 0;
    transform: rotate(-2deg);
    margin-left: -100px;
    margin-right: -100px;
    box-shadow: 0 15px 40px var(--shadow);
    width: calc(100% + 200px);
}

.cert-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    transform: rotate(2deg);
}

.strip-badge {
    width: 140px;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--gold);
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: badgeBounce 3s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cert-info h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cert-info p {
    font-size: 1.25rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--cream) 0%, #f0fff4 100%);
    position: relative;
}

.section-title {
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--gold);
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
    padding: 0 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 6px;
    background: var(--gold);
    border-radius: 3px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--charcoal);
    margin-bottom: 60px;
    margin-top: 35px;
    font-style: italic;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    opacity: 0.1;
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(214, 158, 46, 0.3);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.1));
}

.feature-card p {
    color: var(--charcoal);
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.7;
}

/* Benefits */
.benefits {
    padding: 80px 30px;
    background: var(--primary);
    color: white;
    position: relative;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="2" fill="white" opacity="0.05"/><circle cx="75" cy="75" r="1.5" fill="%23d69e2e" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.benefits .section-title {
    color: var(--gold);
}

.about .section-title {
    color: var(--gold);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    border: 3px solid var(--gold);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    color: var(--charcoal);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
    filter: drop-shadow(3px 3px 6px rgba(0,0,0,0.2));
}

.benefit-card h3 {
    color: var(--primary);
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.benefit-card p {
    line-height: 1.8;
    font-size: 1.15rem;
}

/* Consultation CTA Section */
.consultation-cta {
    padding: 100px 30px;
    background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
    position: relative;
    overflow: hidden;
}

.consultation-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.consultation-cta::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 5s ease-in-out infinite;
}

.consultation-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.consultation-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    display: block;
    filter: drop-shadow(4px 4px 10px rgba(0,0,0,0.3));
    animation: iconBounce 3s ease-in-out infinite;
}

.consultation-title {
    font-size: 4rem;
    color: white;
    margin-bottom: 25px;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.3);
    font-weight: 700;
}

.consultation-text {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 50px;
    line-height: 1.8;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.consultation-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: var(--primary);
    padding: 25px 50px;
    border-radius: 60px;
    font-family: 'Space Mono', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
    border: 4px solid white;
    position: relative;
    overflow: hidden;
}

.consultation-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: 0;
}

.consultation-button:hover::before {
    width: 500px;
    height: 500px;
}

.consultation-button:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    color: white;
}

.consultation-button .button-icon,
.consultation-button .button-text,
.consultation-button .button-arrow {
    position: relative;
    z-index: 1;
}

.button-icon {
    font-size: 1.5rem;
}

.button-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.consultation-button:hover .button-arrow {
    transform: translateX(10px);
}

.consultation-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0;
    background: transparent;
    border: none;
    transition: none;
}

.feature-item:hover {
    background: transparent;
    transform: none;
}

.feature-check {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
    background: var(--sage);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.feature-item span:last-child {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.consultation-phone {
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.phone-text {
    font-family: 'Space Mono', monospace;
    font-size: 1.2rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.phone-link {
    font-family: 'Space Mono', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.2);
    padding: 12px 25px;
    border-radius: 30px;
    border: 2px solid white;
    transition: all 0.3s ease;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.phone-link:hover {
    background: white;
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Solutions */
.solutions {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--cream) 0%, #f0f9ff 100%);
    position: relative;
}

.solution-category {
    margin: 60px auto;
    max-width: 1200px;
    padding: 40px;
    background: white;
    border-radius: 25px;
    box-shadow: 0 15px 40px var(--shadow);
    border: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.solution-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--primary);
}

.category-title {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 4px solid var(--accent);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.solution-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 6px solid var(--accent);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(20px, -20px);
}

.solution-card:hover {
    transform: translateX(10px) translateY(-5px);
    box-shadow: 0 15px 40px rgba(229, 62, 62, 0.2);
    border-left-color: var(--gold);
}

.solution-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.solution-card p {
    color: var(--charcoal);
    line-height: 1.8;
    font-size: 1.1rem;
}

.tech-support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.support-feature {
    background: white;
    color: var(--charcoal);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
    border: 3px solid var(--primary);
}

.support-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
}

.support-feature:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px var(--shadow);
    border-color: var(--gold);
}

.support-feature h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.support-feature p {
    line-height: 1.9;
    font-size: 1.15rem;
    font-weight: 500;
}

.solution-full {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 15px 40px var(--shadow);
}

.solution-full p {
    font-size: 1.25rem;
    line-height: 1.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

/* Founder */
.founder {
    background: var(--primary);
    color: white;
    padding: 80px 30px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.founder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><rect x="10" y="10" width="40" height="40" fill="none" stroke="%23d69e2e" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
}

.founder-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.founder-image {
    position: relative;
}

.founder-image img {
    width: 100%;
    border-radius: 25px;
    border: 6px solid var(--gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
    transition: transform 0.4s ease;
}

.founder-image:hover img {
    transform: scale(1.05);
}

.founder-badge {
    position: static;
    background: white;
    padding: 15px;
    border-radius: 20px;
    border: 4px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    animation: badgeFloat 3s ease-in-out infinite;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.founder-badge img {
    width: 70px;
    height: auto;
    border: none;
    border-radius: 10px;
}

.founder-text h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: var(--gold);
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
}

.founder-text h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: white;
}

.founder-title {
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.9;
    color: var(--gold);
}

.founder-text p {
    font-size: 1.25rem;
    margin-bottom: 25px;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    margin-top: 30px;
}

.contact-info span {
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid var(--gold);
    transition: all 0.3s ease;
}

.contact-info span:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateX(10px);
}

/* Pricing */
.pricing {
    padding: 80px 30px;
    background: linear-gradient(135deg, var(--cream) 0%, #fef7e0 100%);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.price-card {
    background: white;
    border: 3px solid var(--gold);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow);
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
}

.price-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 60px rgba(214, 158, 46, 0.3);
}

.price-card.featured {
    border-color: var(--accent);
    background: linear-gradient(180deg, white 0%, #fef2f2 100%);
    transform: scale(1.05);
}

.featured-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(229, 62, 62, 0.4);
}

.price-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.price {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.price span {
    font-size: 1.2rem;
    opacity: 0.7;
}

.price-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.price-card li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(26, 54, 93, 0.1);
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--sage);
    font-weight: bold;
    font-size: 1.2rem;
}

.price-button {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow);
}

.price-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow);
}

/* CTA */
.cta {
    background: var(--primary);
    color: white;
    text-align: center;
    padding: 100px 30px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></svg>') repeat;
    pointer-events: none;
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    position: relative;
    z-index: 2;
}

.cta p {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.cta-button {
    background: var(--gold);
    color: var(--primary);
    border: none;
    padding: 25px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Space Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 10px 30px rgba(214, 158, 46, 0.4);
    position: relative;
    z-index: 2;
    margin-bottom: 40px;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 50px rgba(214, 158, 46, 0.6);
}

a.cta-button {
    display: inline-block;
    text-decoration: none;
    pointer-events: auto;
    cursor: pointer;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    font-family: 'Space Mono', monospace;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

.cta-contact span {
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 25px;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.cta-contact span:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
}

/* Footer */
footer {
    background: var(--charcoal);
    color: white;
    text-align: center;
    padding: 50px 30px;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    height: 100px;
    width: auto;
    opacity: 0.9;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.facebook-icon {
    width: 24px;
    height: 24px;
    fill: #1877F2;
    flex-shrink: 0;
}

/* Enhanced Accessibility Features */
.high-contrast-text {
    color: var(--text-high-contrast) !important;
    font-weight: 600;
    text-shadow: none;
}

.senior-friendly {
    font-size: 1.2rem;
    line-height: 1.8;
    font-weight: 500;
}

/* Focus indicators for keyboard navigation */
*:focus {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}

button:focus,
a:focus {
    outline: 4px solid var(--gold);
    outline-offset: 3px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw;
    }
    
    * {
        max-width: 100%;
    }
    
    section {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        box-sizing: border-box;
    }
    
    section.cert-strip {
        padding-left: 0;
        padding-right: 0;
    }
    
    .hero, .about, .aging-place, .why-choose, .benefits, .solutions, .founder, .pricing, .cta {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .cert-strip {
        margin: 40px 0 !important;
        padding: 40px 15px !important;
        transform: rotate(0deg) !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    
    .cert-content {
        transform: rotate(0deg);
        padding: 0;
    }
    
    .cert-float {
        display: none;
    }
    
    .hamburger {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        background: rgba(26, 54, 93, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        border-radius: 20px 0 0 20px;
        box-shadow: -5px 5px 30px var(--shadow);
        transition: right 0.4s ease;
        gap: 15px;
        min-width: 250px;
        z-index: 1000;
        display: flex !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: white !important;
        width: 100%;
        text-align: center;
        padding: 15px 20px;
        font-size: 1rem;
        border-color: white !important;
    }
    
    .nav-menu .nav-contact-btn {
        background: var(--gold) !important;
        color: var(--primary) !important;
        border-color: var(--gold) !important;
    }
    
    .nav-menu .nav-contact-btn:hover {
        background: white !important;
        color: var(--primary) !important;
        border-color: white !important;
    }
    
    .nav-menu a.active {
        background: var(--gold) !important;
        color: var(--primary) !important;
        border-color: var(--gold) !important;
    }
    
    /* Ensure minimum touch targets for mobile */
    button,
    .nav-cert,
    .price-button,
    .cta-button {
        min-height: 44px;
        min-width: 44px;
    }
    
    .cert-badge {
        width: 60px;
    }
    
    .cert-text {
        font-size: 8px;
    }
    
    .nav-content {
        padding: 10px 20px;
    }
    
    .nav-logo {
        height: 35px;
    }
    
    .nav-text {
        font-size: 1rem;
    }
    
    .nav-text::before {
        content: '';
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-cert {
        height: 60px;
    }
    
    .hero {
        padding: 100px 15px 40px;
        min-height: auto;
        width: 100%;
    }
    
    .hero::after {
        width: 250px;
        height: 250px;
        left: 5%;
        opacity: 0.05;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        min-height: auto;
    }
    
    .title-main {
        white-space: normal;
    }
    
    .hero-text {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-device {
        max-width: 280px;
    }
    
    .device-showcase {
        transform: rotate(0deg);
    }
    
    .title-sub {
        margin-left: 0;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .hero-buttons {
        max-width: 100%;
        gap: 12px;
    }
    
    .hero-btn {
        font-size: 0.8rem;
        padding: 15px 20px;
        width: 100%;
    }
    
    .stat {
        padding: 15px;
        min-width: 120px;
    }
    
    .cert-strip {
        margin-left: -20px;
        margin-right: -20px;
        padding: 40px 20px;
        transform: rotate(0deg);
    }
    
    .cert-content {
        flex-direction: column;
        text-align: center;
        transform: rotate(0deg);
        gap: 20px;
        align-items: center;
    }
    
    .strip-badge {
        width: 100px;
        margin: 0 auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-support-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .founder-image {
        max-width: 250px;
        margin: 0 auto;
    }
    
    .founder-badge {
        margin-top: 15px;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.featured {
        transform: none;
    }
    
    .cta-contact {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
        padding: 0 15px;
        word-break: break-word;
        line-height: 1.3;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .info-section {
        padding: 40px 15px;
    }
    
    .info-icon-large {
        font-size: 3.5rem;
        margin-bottom: 15px;
    }
    
    .info-text {
        padding: 25px;
    }
    
    .info-text p {
        font-size: 1.1rem;
    }
    
    .savings-highlight {
        padding: 25px;
        margin-top: 30px;
    }
    
    .savings-compare {
        gap: 20px;
    }
    
    .savings-item {
        padding: 20px 25px;
        min-width: 150px;
    }
    
    .savings-price {
        font-size: 2.2rem;
    }
    
    .savings-vs {
        font-size: 1.5rem;
    }
    
    .benefits-highlight {
        padding: 25px;
        margin-top: 30px;
    }
    
    .benefits-grid-compact {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }
    
    .benefit-compact {
        padding: 20px 15px;
    }
    
    .benefit-compact-icon {
        font-size: 2rem;
    }
    
    .benefit-compact-text {
        font-size: 0.75rem;
    }
    
    .pricing-callout {
        margin-top: 20px;
    }
    
    .pricing-badge {
        padding: 15px 25px;
        font-size: 1rem;
    }
    
    .price-large {
        font-size: 1.5rem;
    }
    
    .consultation-cta {
        padding: 60px 15px;
    }
    
    .consultation-icon {
        font-size: 3.5rem;
    }
    
    .consultation-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .consultation-text {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }
    
    .consultation-button {
        padding: 20px 30px;
        font-size: 1rem;
        gap: 10px;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    
    .button-icon,
    .button-arrow {
        font-size: 1.2rem;
    }
    
    .consultation-features {
        gap: 15px;
        margin-top: 30px;
    }
    
    .feature-item {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .feature-check {
        width: 25px;
        height: 25px;
        font-size: 1.2rem;
    }
    
    .consultation-phone {
        margin-top: 25px;
        flex-direction: column;
        gap: 15px;
    }
    
    .phone-text {
        font-size: 1rem;
    }
    
    .phone-link {
        font-size: 1.2rem;
        padding: 15px 30px;
    }
}


/* ============================================
   HERO V2 - FLOATING FOCUS DESIGN
   ============================================ */

.hero-v2 {
    min-height: 100vh;
    padding: 140px 30px 80px;
    background: radial-gradient(ellipse at top right, #e6fffa 0%, var(--cream) 40%, #fef7e0 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated grain texture overlay */
.hero-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>');
    pointer-events: none;
    opacity: 0.5;
    animation: grainMove 8s steps(10) infinite;
}

@keyframes grainMove {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-15%, 5%); }
    60% { transform: translate(15%, -5%); }
    70% { transform: translate(5%, 10%); }
    80% { transform: translate(-10%, 0%); }
    90% { transform: translate(10%, -15%); }
}

/* Floating decorative circles */
.hero-v2::after {
    content: '';
    position: absolute;
    top: 15%;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(214, 158, 46, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatSlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatSlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Floating Image */
.hero-floating-image {
    position: absolute;
    top: 35%;
    left: 8%;
    transform: translateY(-50%);
    width: 320px;
    height: 320px;
    z-index: 10;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-floating-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid var(--gold);
    box-shadow: 
        0 30px 80px rgba(26, 54, 93, 0.3),
        0 0 0 20px rgba(214, 158, 46, 0.1),
        inset 0 0 0 2px rgba(255, 255, 255, 0.5);
    transition: all 0.6s ease;
}

.hero-floating-image:hover img {
    transform: scale(1.05) rotate(-5deg);
    box-shadow: 
        0 40px 100px rgba(26, 54, 93, 0.4),
        0 0 0 25px rgba(214, 158, 46, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.8);
}

/* Main Content Container */
.hero-v2-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 5;
    animation: fadeInUp 1s ease-out;
}

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

/* Title */
.hero-v2-title {
    font-family: 'Crimson Text', serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-v2-title-line {
    display: block;
    color: var(--primary);
    animation: titleReveal 1s ease-out backwards;
}

.hero-v2-title-line:first-child {
    animation-delay: 0.2s;
}

.hero-v2-title-line.accent {
    color: var(--gold);
    font-style: italic;
    animation-delay: 0.4s;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Tagline */
.hero-v2-tagline {
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    color: var(--primary);
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

/* Subtitle */
.hero-v2-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    color: var(--charcoal);
    line-height: 1.7;
    margin-bottom: 50px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

/* Navigation Buttons */
.hero-v2-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease-out 1s backwards;
}

.hero-v2-nav-btn {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 30px;
    border: 3px solid var(--primary);
    background: white;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(26, 54, 93, 0.1);
}

.hero-v2-nav-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(214, 158, 46, 0.3);
}

.hero-v2-nav-btn.active {
    background: var(--primary);
    color: var(--gold);
    border-color: var(--primary);
}

/* Primary CTAs */
.hero-v2-ctas {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.2s backwards;
}

.hero-v2-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 22px 40px;
    border-radius: 50px;
    font-family: 'Space Mono', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-v2-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.hero-v2-cta:hover::before {
    width: 400px;
    height: 400px;
}

.hero-v2-cta.primary {
    background: var(--gold);
    color: var(--primary);
    border: 3px solid var(--gold);
}

.hero-v2-cta.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(214, 158, 46, 0.4);
}

.hero-v2-cta.secondary {
    background: white;
    color: var(--primary);
    border: 3px solid var(--primary);
}

.hero-v2-cta.secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(26, 54, 93, 0.3);
}

.cta-icon {
    font-size: 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-text {
    position: relative;
    z-index: 1;
}

.cta-arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.hero-v2-cta:hover .cta-arrow {
    transform: translateX(8px);
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hero-v2 {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    /* Hide floating image on mobile */
    .hero-floating-image {
        display: none;
    }
    
    .hero-v2-content {
        max-width: 100%;
    }
    
    .hero-v2-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 30px;
    }
    
    .hero-v2-tagline {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero-v2-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }
    
    .hero-v2-nav {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 30px;
    }
    
    .hero-v2-nav-btn {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        font-size: 0.85rem;
        padding: 16px 24px;
    }
    
    .hero-v2-ctas {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-v2-cta {
        width: 100%;
        max-width: 400px;
        justify-content: center;
        padding: 20px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-v2-title {
        font-size: 2.2rem;
    }
    
    .hero-v2-tagline {
        font-size: 1.1rem;
    }
    
    .hero-v2-subtitle {
        font-size: 1rem;
    }
}


/* ============================================
   NAVBAR DROPDOWN & MOBILE MENU UPDATES
   ============================================ */

.nav-text-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-text-dropdown:hover {
    background: rgba(214, 158, 46, 0.1);
}

.nav-dropdown-arrow {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
    color: var(--primary);
}

.nav-glass.scrolled .nav-dropdown-arrow {
    color: var(--gold);
}

.nav-text-dropdown:hover .nav-dropdown-arrow {
    transform: translateY(2px);
}

.nav-page-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 8px;
}

.nav-page-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-page-dropdown a {
    display: block;
    padding: 12px 20px;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-page-dropdown a:hover {
    background: var(--cream);
    border-left-color: var(--gold);
    padding-left: 25px;
}

/* Mobile menu links */
.nav-menu-link {
    font-family: 'Space Mono', monospace;
    font-size: 0.9rem;
    font-weight: 600;
    color: white !important;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    display: block;
}

.nav-menu-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--gold);
}

/* Hide dropdown on mobile */
@media (max-width: 768px) {
    .nav-text-dropdown {
        pointer-events: none;
    }
    
    .nav-dropdown-arrow {
        display: none;
    }
    
    .nav-page-dropdown {
        display: none;
    }
}

/* Desktop Contact Button */
.nav-button {
    display: none;
}

@media (min-width: 769px) {
    .nav-button {
        display: inline-block;
        font-family: 'Space Mono', monospace;
        font-size: 0.9rem;
        font-weight: 700;
        text-decoration: none;
        padding: 10px 25px;
        border-radius: 25px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }
    
    .nav-button-primary {
        color: white;
        background: var(--gold);
        border: 2px solid var(--gold);
        text-transform: uppercase;
        letter-spacing: 1px;
    }
    
    .nav-button-primary:hover {
        background: var(--primary);
        color: var(--gold);
        border-color: var(--primary);
    }
    
    .nav-glass.scrolled .nav-button-primary {
        background: var(--gold);
        color: var(--primary);
    }
    
    .nav-glass.scrolled .nav-button-primary:hover {
        background: white;
        color: var(--primary);
        border-color: white;
    }
    
    .nav-content {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
    
    .nav-buttons {
        justify-self: center;
    }
}

/* Navigation Page Buttons */
.nav-buttons {
    display: none;
}

@media (min-width: 769px) {
    .nav-buttons {
        display: flex;
        gap: 15px;
        align-items: center;
    }
    
    .nav-page-btn {
        font-family: 'Space Mono', monospace;
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
        border: 2px solid var(--primary);
        white-space: nowrap;
        background: transparent;
    }
    
    .nav-page-btn:hover {
        background: var(--gold);
        color: white;
        border-color: var(--gold);
    }
    
    .nav-page-btn.active {
        background: var(--primary);
        color: white;
        border-color: var(--primary);
    }
    
    /* Scrolled state (dark background) */
    .nav-glass.scrolled .nav-page-btn {
        color: white;
        border-color: white;
    }
    
    .nav-glass.scrolled .nav-page-btn:hover {
        background: var(--gold);
        color: var(--primary);
        border-color: var(--gold);
    }
    
    .nav-glass.scrolled .nav-page-btn.active {
        background: var(--gold);
        color: var(--primary);
        border-color: var(--gold);
    }
}
