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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(2px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #2563eb;
    transition: color 0.3s ease;
}

.nav-logo-link:hover {
    color: #1d4ed8;
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: none;
    cursor: pointer;
    padding: 0.75rem 1rem;
    background: #1e293b;
    transition: background 0.2s ease;
    border-radius: 4px;
    z-index: 99999;
}

.hamburger:hover {
    background: #334155;
}

.hamburger.open {
    background: #334155;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 3px;
    background: #ffffff;
    transition: transform 0.3s ease, opacity 0.3s ease;
    transform-origin: center;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #2563eb;
}

/* Dropdown styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav-dropdown-toggle:hover {
    color: #2563eb;
}

.nav-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown.active .nav-dropdown-toggle i {
    transform: rotate(180deg);
}

/*
 * Nav + blog dropdown: switch to drawer menu below this width so top links
 * don’t stack on tablet / iPad (incl. many landscape widths above 768px).
 */
@media (max-width: 1200px) {
    .nav-dropdown-toggle i {
        display: none;
    }

    .nav-dropdown-menu::before,
    .nav-dropdown-menu::after {
        display: none;
    }
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    min-width: 280px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    border: 1px solid #e5e7eb;
    margin-top: 0.5rem;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid white;
    z-index: 1002;
}

.nav-dropdown-menu::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #e5e7eb;
    z-index: 1001;
}

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

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f1f5f9;
}

.nav-dropdown-item:last-child {
    border-bottom: none;
}

.nav-dropdown-item:hover {
    background: #f8fafc;
    color: #2563eb;
}

.nav-dropdown-item i {
    margin-right: 0.5rem;
    width: 16px;
    text-align: center;
}





/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #1f2937 100%);
    color: white;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.hero-container--single .hero-content {
    max-width: 48rem;
}

.hero-title {
    position: relative;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-title__display {
    display: block;
}

.hero-title__sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hero-rotator {
    display: inline-block;
    min-width: min(32ch, 100%);
    text-align: left;
    vertical-align: bottom;
}

.hero-rotator__text {
    display: inline-block;
    /* One duration for opacity + transform avoids mobile “desync” jank */
    transition: opacity 0.42s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.hero-rotator.hero-rotator--leave .hero-rotator__text,
.hero-rotator.hero-rotator--enter .hero-rotator__text {
    will-change: transform, opacity;
}

.hero-rotator.hero-rotator--leave .hero-rotator__text {
    opacity: 0;
    transform: translate3d(0, -0.32em, 0);
}

/* transition must not run during keyframe enter or it fights the animation */
.hero-rotator.hero-rotator--enter .hero-rotator__text {
    transition: none;
    animation: heroRotatorEnter 0.42s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes heroRotatorEnter {
    from {
        opacity: 0;
        transform: translate3d(0, 0.38em, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (max-width: 768px) {
    .hero-rotator__text {
        transition-duration: 0.36s, 0.36s;
    }

    .hero-rotator.hero-rotator--enter .hero-rotator__text {
        animation-duration: 0.36s;
    }

    .hero-rotator.hero-rotator--leave .hero-rotator__text {
        transform: translate3d(0, -0.26em, 0);
    }

    @keyframes heroRotatorEnter {
        from {
            opacity: 0;
            transform: translate3d(0, 0.3em, 0);
        }
        to {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-rotator__text {
        transition: none;
    }

    .hero-rotator.hero-rotator--enter .hero-rotator__text {
        animation: none;
    }

    .hero-rotator.hero-rotator--leave .hero-rotator__text,
    .hero-rotator.hero-rotator--enter .hero-rotator__text {
        will-change: auto;
    }
}

.highlight {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

/* Icon + label: consistent gap (replaces per-variant icon margins) */
.btn:has(> i) {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #fbbf24;
    color: #1f2937;
    border: 2px solid #fbbf24;
}

.btn-primary:hover {
    background: #f59e0b;
    border: 2px solid #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1f2937;
    transform: translateY(-2px);
}

.btn-preview {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: 2px solid #10b981;
    position: relative;
    overflow: hidden;
}

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

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

.btn-preview:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: 2px solid #059669;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

.btn-preview i {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

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

/* SLA / Policy (two-column hero): tablet — copy stays top-aligned; card column stretches and centers the card */
@media (min-width: 769px) and (max-width: 1200px) {
    .hero-container:not(.hero-container--single) {
        align-items: start;
        gap: 1.75rem;
        padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
        padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
    }

    .hero-container:not(.hero-container--single) .hero-image {
        align-self: stretch;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-container:not(.hero-container--single) .hero-title {
        font-size: clamp(1.55rem, 1.4vw + 1rem, 2.35rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-container:not(.hero-container--single) .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 1.35rem;
    }

    .hero-container:not(.hero-container--single) .hero-card {
        padding: 1.35rem 1.1rem;
    }

    .hero-container:not(.hero-container--single) .hero-card i {
        font-size: 2.35rem;
        margin-bottom: 0.65rem;
    }

    .hero-container:not(.hero-container--single) .hero-card h3 {
        font-size: 1.2rem;
    }

    .hero-container:not(.hero-container--single) .hero-card p {
        font-size: 0.9rem;
        line-height: 1.45;
        margin: 0;
        opacity: 0.92;
    }
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card i {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #1f2937;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1f2937 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.feature-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Inline text links (homepage: SLA and related) */
.feature-card p a,
.pricing-features li a,
.about-member-bio a,
.trust-pillar-text a {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.feature-card p a:hover,
.pricing-features li a:hover,
.about-member-bio a:hover,
.trust-pillar-text a:hover {
    color: #1d4ed8;
    border-bottom-color: rgba(29, 78, 216, 0.55);
}

.feature-card p a:focus-visible,
.pricing-features li a:focus-visible,
.about-member-bio a:focus-visible,
.trust-pillar-text a:focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Rural Water Billing Section */
.rural-billing {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.rural-billing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.rural-billing-text h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.rural-billing-text h3:first-child {
    margin-top: 0;
}

.rural-billing-text p {
    color: #475569;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.rural-billing-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.rural-billing-text ul li {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.rural-billing-text ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

.rural-billing-text ul li strong {
    color: #1e293b;
    font-weight: 600;
}

.learn-more-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.learn-more-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.rural-billing-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.rural-billing-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rural-billing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.rural-billing-card i {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.rural-billing-card h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rural-billing-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.5;
}

/* Article Page Styles */
.article-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #3b82f6 0%, #1f2937 100%);
    color: white;
}

.breadcrumb {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #93c5fd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: #cbd5e1;
}

.article-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.article-content {
    padding: 60px 0;
    background: #f8fafc;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.main-content {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.main-content h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    padding-top: 1rem;
    border-top: 2px solid #e2e8f0;
}

.main-content h2:first-child {
    border-top: none;
    padding-top: 0;
}

.main-content h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.main-content p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.main-content ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.main-content ul li {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
}

.main-content ul li strong {
    color: #1e293b;
    font-weight: 600;
}

.intro {
    background: #f1f5f9;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    border-left: 4px solid #2563eb;
}

.intro p {
    margin-bottom: 1rem;
}

.intro p:last-child {
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, #3b82f6 0%, #1f2937 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 3rem 0;
    text-align: center;
}

.cta-section h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #cbd5e1;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.conclusion {
    background: #f0f9ff;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    border-left: 4px solid #0ea5e9;
}

.conclusion h2 {
    color: #0c4a6e;
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.conclusion p {
    color: #0c4a6e;
}

/* Blog / article pages: less padded “card” chrome on tablet & iPad (still 2-col layout above 768px) */
@media (min-width: 769px) and (max-width: 1200px) {
    .article-header {
        padding: 92px 0 48px;
    }

    .article-content {
        padding: 40px 0;
    }

    .content-wrapper {
        gap: 2rem;
    }

    .main-content {
        padding: 1.5rem 1.25rem;
    }

    .sidebar-widget {
        padding: 1.35rem 1.15rem;
    }

    .intro {
        padding: 1.35rem;
    }

    .cta-section {
        padding: 1.35rem;
        margin: 2rem 0;
    }

    .conclusion {
        padding: 1.35rem;
        margin-top: 2rem;
    }
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.sidebar-widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-widget ul li {
    margin-bottom: 0.8rem;
}

.sidebar-widget ul li a {
    color: #475569;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
}

.sidebar-widget ul li a:hover {
    color: #2563eb;
}

.sidebar-widget ul li a.active {
    color: #2563eb;
    font-weight: 600;
    background: #eff6ff;
    padding: 0.5rem 0.75rem;
    margin: 0 -0.75rem;
    border-radius: 6px;
    border-left: 3px solid #2563eb;
}

.sidebar-widget p {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: #f8fafc;
}

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

.pricing-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    transform: scale(1.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price .amount {
    font-size: 3rem;
    font-weight: 700;
    color: #2563eb;
}

.price .amount.amount-text {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.35;
    max-width: 22rem;
    text-align: center;
}

.price .period {
    font-size: 1rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #6b7280;
}

.pricing-features i {
    color: #10b981;
    font-size: 1.1rem;
}

.pricing-note {
    text-align: center;
    background: #1f2937;
    padding: 2rem;
    border-radius: 15px;
    color: white;
    margin-top: 2rem;
}

.pricing-note p {
    color: #d1d5db;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.pricing-note p.pricing-note-lead {
    margin-bottom: 0.75rem;
}

.pricing-note strong {
    color: #fbbf24;
}

.pricing-note-cta {
    margin-top: 1.25rem;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    text-align: center;
}

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

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #fbbf24;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    color: #1f2937;
    font-size: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.benefit-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Benefits: tablet / iPad — avoid 4 skinny columns + large card padding (section gets very tall) */
@media (max-width: 1200px) {
    .benefits {
        padding: 56px 0;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .benefit-card {
        padding: 1.25rem 1.15rem;
    }

    .benefit-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 1rem;
    }

    .benefit-icon i {
        font-size: 1.35rem;
    }

    .benefit-card h3 {
        font-size: 1.15rem;
        margin-bottom: 0.65rem;
    }

    .benefit-card p {
        font-size: 0.9375rem;
        line-height: 1.5;
    }
}

/* Meter Reading Section */
.meter-reading {
    padding: 88px 0;
    background: linear-gradient(165deg, #eff6ff 0%, #f0f9ff 40%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.meter-reading::before {
    content: '';
    position: absolute;
    top: -35%;
    right: -15%;
    width: min(60vw, 720px);
    height: min(85vw, 900px);
    background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.12) 0%, transparent 68%);
    pointer-events: none;
}

.meter-reading::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: min(50vw, 480px);
    height: min(60vw, 500px);
    background: radial-gradient(ellipse at center, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.meter-reading .container {
    position: relative;
    z-index: 1;
}

.meter-reading-content {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr);
    gap: clamp(1.5rem, 2.5vw, 2.5rem);
    align-items: start;
}

.meter-reading-lead {
    margin-bottom: 2rem;
    padding: 1.75rem 1.75rem 1.75rem 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    border-left: 4px solid #2563eb;
}

.meter-reading-lead h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.meter-reading-lead p {
    color: #64748b;
    line-height: 1.65;
    margin: 0;
    font-size: 1.05rem;
}

.meter-features-carousel {
    position: relative;
}

.meter-carousel-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;
}

.meter-carousel-viewport {
    overflow: hidden;
    border-radius: 16px;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.06);
    background: rgba(248, 250, 252, 0.85);
    min-height: 19rem;
    display: flex;
    flex-direction: column;
}

.meter-carousel-viewport:focus-visible {
    box-shadow: inset 0 0 0 2px rgba(37, 99, 235, 0.35);
}

.meter-carousel-track {
    flex: 1 1 auto;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    min-height: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .meter-carousel-track {
        transition: none;
    }
}

.meter-carousel-slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 0;
    min-height: 100%;
    box-sizing: border-box;
    padding: 0.35rem;
    display: flex;
    align-items: stretch;
}

.meter-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.meter-carousel-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.25);
    background: #ffffff;
    color: #2563eb;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.06);
}

.meter-carousel-btn:hover:not(:disabled) {
    background: #eff6ff;
    border-color: #2563eb;
}

.meter-carousel-btn:active:not(:disabled) {
    transform: scale(0.96);
}

.meter-carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.meter-carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
}

.meter-carousel-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.meter-carousel-dot:hover,
.meter-carousel-dot:focus-visible {
    background: #94a3b8;
    outline: none;
}

.meter-carousel-dot[aria-current="true"] {
    background: #2563eb;
    transform: scale(1.15);
}

.meter-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem;
    flex: 1;
    align-self: stretch;
    width: 100%;
    min-height: 100%;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.meter-carousel-slide:hover .meter-feature {
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.35);
}

.meter-feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(145deg, #1d4ed8 0%, #2563eb 45%, #3b82f6 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
}

.meter-feature:hover .meter-feature-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.meter-feature-icon i {
    color: white;
    font-size: 1.15rem;
    transition: transform 0.25s ease;
}

.meter-feature:hover .meter-feature-icon i {
    transform: scale(1.05);
}

.meter-feature-text {
    flex: 1;
    min-width: 0;
}

.meter-feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.4rem;
}

.meter-feature-text p {
    color: #64748b;
    line-height: 1.55;
    font-size: 0.95rem;
    margin: 0;
}

.meter-reading-visual {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    position: sticky;
    top: 100px;
    min-width: 0;
}

/* Keep mockup beside the text column instead of centered in a wide half-column */
.meter-reading-visual .meter-demo {
    margin-left: 0;
    margin-right: auto;
}

.meter-reading-info {
    min-width: 0;
}

.meter-demo {
    width: 100%;
    max-width: min(100%, 330px);
    margin-left: auto;
    margin-right: auto;
}

.meter-demo--mockup {
    display: flex;
    flex-direction: column;
    width: 100%;
    aspect-ratio: 9 / 16;
    background: #ffffff;
    padding: 0;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow:
        0 25px 50px -12px rgba(15, 23, 42, 0.2),
        0 0 0 1px rgba(15, 23, 42, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.meter-demo-notch {
    flex-shrink: 0;
    height: 28px;
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.meter-demo-notch::after {
    content: '';
    width: 52px;
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
}

.meter-reading-visual .meter-demo--mockup .demo-header {
    flex-shrink: 0;
    text-align: center;
    margin: 0;
    padding: 1.75rem 1.5rem 1.5rem;
    border-bottom: none;
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 48%, #3b82f6 100%);
}

.meter-reading-visual .meter-demo--mockup .demo-header h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.35rem;
}

.meter-reading-visual .meter-demo--mockup .demo-header p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.9rem;
    margin: 0;
}

.meter-reading-visual .meter-demo--mockup .demo-features {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.65rem;
    padding: 1.35rem 1.25rem 1.5rem;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    overflow-y: auto;
}

.meter-reading-visual .meter-demo--mockup .demo-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.meter-reading-visual .meter-demo--mockup .demo-feature:hover {
    background: #ffffff;
    border-color: #2563eb;
    transform: translateX(4px);
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.12);
}

.meter-reading-visual .meter-demo--mockup .demo-feature i {
    color: #2563eb;
    font-size: 1.05rem;
    width: 22px;
    text-align: center;
}

.meter-reading-visual .meter-demo--mockup .demo-feature span {
    font-weight: 500;
    color: #334155;
    font-size: 0.88rem;
}

/* About Section */
.about {
    padding: 60px 0;
    background: #f8fafc;
}

/* Terms Section Styling */
.terms-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.terms-text {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    max-width: 100%;
}

.terms-text:last-child {
    border-bottom: none;
}

.terms-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #f1f5f9;
}

.terms-group h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.terms-group h3 i {
    color: #2563eb;
    font-size: 1.3rem;
}

.terms-group p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.terms-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-group ul li {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
}

.terms-group ul li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.terms-group ul li:last-child {
    margin-bottom: 0;
}

.terms-group ul li strong {
    color: #1f2937;
    font-weight: 600;
}

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

.terms-footer p {
    color: #9ca3af;
    font-size: 0.9rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.terms-footer i {
    color: #6b7280;
    font-size: 0.8rem;
}

.about-team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: stretch;
}

.about-member {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Keeps photo scale + card lift on one stable layer (reduces edge flashing) */
    transform: translateZ(0);
}

.about-member:hover {
    transform: translateY(-4px) translateZ(0);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.about-member-visual {
    height: 240px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    position: relative;
    overflow: hidden;
    /* Match card top corners so scaled ::before clips smoothly (avoids sharp-corner flashes) */
    border-radius: 20px 20px 0 0;
    isolation: isolate;
}

/* Photos: background on ::before so we can scale slightly on card hover without overlapping bio text */
.about-member-visual--photo::before,
.about-member-visual--photo-brie::before,
.about-member-visual--photo-steven::before {
    content: '';
    position: absolute;
    /* 1px bleed past the clip hides subpixel hairlines during scale (common with overflow + border-radius) */
    inset: -1px;
    border-radius: inherit;
    background-repeat: no-repeat;
    background-size: cover;
    transition: transform 0.45s ease;
    transform-origin: center center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Stable compositor layer — reduces flicker when parent .about-member also uses transform */
    transform: translateZ(0);
}

.about-member-visual--photo::before {
    background-image: url('../images/ZackAndrews.jpg');
    background-position: center center;
}

.about-member-visual--photo-brie::before {
    background-image: url('../images/BrieCampbell.png');
    background-position: center 20%;
}

.about-member-visual--photo-steven::before {
    background-image: url('../images/StevenSparks.png');
    background-position: center center;
}

.about-member:hover .about-member-visual--photo::before,
.about-member:hover .about-member-visual--photo-brie::before,
.about-member:hover .about-member-visual--photo-steven::before {
    transform: translateZ(0) scale(1.025);
}

@media (prefers-reduced-motion: reduce) {
    .about-member-visual--photo::before,
    .about-member-visual--photo-brie::before,
    .about-member-visual--photo-steven::before {
        transition: none;
    }

    .about-member:hover .about-member-visual--photo::before,
    .about-member:hover .about-member-visual--photo-brie::before,
    .about-member:hover .about-member-visual--photo-steven::before {
        transform: translateZ(0);
    }
}

.about-member-visual--cx {
    background: linear-gradient(145deg, #0f766e 0%, #0d9488 50%, #14b8a6 100%);
}

.about-member-body {
    padding: 1.5rem 1.5rem 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.about-member-body h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 0 0.35rem;
}

.about-member-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2563eb;
    margin: 0 0 0.2rem;
}

.about-member-bio {
    color: #6b7280;
    line-height: 1.65;
    font-size: 0.95rem;
    margin: 0;
    flex: 1;
}

.about-member-bio + .about-member-bio {
    margin-top: 0.85rem;
}

.about-member-email {
    margin: 0 0 0.85rem;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
}

.about-member-email a {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #64748b;
    font-weight: 400;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.about-member-email a .fa-envelope {
    font-size: 0.9em;
    opacity: 0.85;
}

.about-member-email a:hover {
    color: #2563eb;
    border-bottom-color: rgba(37, 99, 235, 0.35);
}

.about-member-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.about-member-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: #4b5563;
    background: #f1f5f9;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
}

.about-member-tag i {
    color: #2563eb;
    font-size: 0.75rem;
}

.about-text {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.about-text h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.about-text p {
    color: #6b7280;
    line-height: 1.65;
    margin: 0;
    font-size: 1.05rem;
}

/* Trust: heading → full-bleed map → full-bleed copy band */
/* Use 100% width here, not 100vw, so edges align with the viewport when a vertical scrollbar is present. */
.trust-section {
    width: 100%;
    max-width: 100%;
    padding: 60px 0 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.trust-section-head {
    margin-bottom: 1.5rem;
}

.trust-pillars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    max-width: 1100px;
    margin: 2rem auto 1.75rem;
    padding: 0;
    list-style: none;
}

/*
 * Tablet / iPad: auto-fit + 240px min often becomes 2–3 columns for four cards.
 * Lock to one row of four so “Built On Trust” reads as a balanced band (not a tall stack).
 */
@media (min-width: 768px) and (max-width: 1200px) {
    .trust-pillars {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.75rem;
        max-width: none;
    }

    .trust-pillar {
        padding: 1rem 0.65rem;
    }

    .trust-pillar-icon {
        width: 2.2rem;
        height: 2.2rem;
        margin-bottom: 0.55rem;
        font-size: 0.95rem;
    }

    .trust-pillar-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .trust-pillar-text {
        font-size: 0.75rem;
        line-height: 1.45;
    }
}

.trust-pillar {
    margin: 0;
    padding: 1.35rem 1.25rem;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.trust-pillar:hover {
    border-color: #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.trust-pillar-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    border-radius: 10px;
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    color: #2563eb;
    font-size: 1.1rem;
}

.trust-pillar-title {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.35;
}

.trust-pillar-text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #64748b;
}

.trust-example-callout {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 1100px;
    margin: 1.75rem auto 0;
    padding: 1.75rem 1.5rem;
    text-align: left;
    background: #1f2937;
    border-radius: 15px;
}

.trust-example-callout .trust-pillar-icon {
    margin-bottom: 0;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #1f2937;
}

.trust-example-callout .trust-example-icon {
    margin-bottom: 0;
}

.trust-example-body {
    min-width: 0;
    flex: 1;
}

.trust-example-eyebrow {
    margin: 0 0 0.35rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fbbf24;
}

.trust-example-title {
    margin: 0 0 0.5rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: #f9fafb;
    line-height: 1.35;
}

.trust-intro {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
    color: #64748b;
    line-height: 1.55;
    font-size: 1.02rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trust-intro-line {
    display: block;
}

.trust-deer-note {
    margin: 0;
    text-align: center;
    color: #64748b;
    line-height: 1.6;
    font-size: 1.02rem;
}

.trust-example-callout .trust-deer-note {
    max-width: none;
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #d1d5db;
}

.trust-deer-note a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.trust-deer-note a:hover {
    color: #1d4ed8;
}

.trust-example-callout .trust-deer-note a {
    color: #fbbf24;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.trust-example-callout .trust-deer-note a:hover {
    color: #fcd34d;
}

.trust-map-fullbleed {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
}

.trust-map {
    width: 100%;
    height: min(440px, 60vh);
    min-height: 280px;
    border-radius: 0;
    overflow: hidden;
    border: none;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: none;
    background: #f1f5f9;
}

.trust-copy-band {
    width: 100%;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    padding: 2.75rem 0 3.25rem;
    background: linear-gradient(180deg, #f8fafc 0%, #eff6ff 45%, #f1f5f9 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.trust-copy-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.trust-lead {
    margin: 0 0 0.85rem;
    text-align: center;
    color: #475569;
    line-height: 1.5;
    font-size: 1rem;
}

.trust-lead time {
    font-weight: 600;
    color: #1e293b;
}

.trust-map .leaflet-control-attribution {
    font-size: 0.65rem;
    background: rgba(255, 255, 255, 0.85);
}

.trust-map-status {
    max-width: 1200px;
    margin: 0.85rem auto 0;
    padding: 0 20px;
    text-align: center;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.highlight-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.highlight-item span {
    color: #1f2937;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

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

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 1px solid #e5e7eb;
}

.testimonial-content p {
    font-style: italic;
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author-info h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: #6b7280;
    font-size: 0.9rem;
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #6b7280;
}

.contact-item i {
    color: #2563eb;
    font-size: 1.2rem;
    width: 20px;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
}

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

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

.contact-method-group {
    margin-bottom: 1rem;
}

.contact-method-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: #374151;
    margin-bottom: 0.5rem;
}

/* Segmented control: radios stay in the DOM for a11y but are not shown (no duplicate “selected” UI). */
.contact-method-toggle {
    display: flex;
    gap: 0;
    padding: 3px;
    border-radius: 10px;
    background: #e2e8f0;
    border: 1px solid #cbd5e1;
}

.contact-method-option {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 2.625rem;
    padding: 0.45rem 0.75rem;
    margin: 0;
    cursor: pointer;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.2;
    color: #64748b;
    background: transparent;
    border: none;
    border-radius: 8px;
    transition:
        background-color 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease;
}

.contact-method-option input[type="radio"] {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.contact-method-option span {
    pointer-events: none;
}

.contact-method-option:hover:not(:has(input:checked)) {
    color: #334155;
}

.contact-method-option:has(input:checked) {
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(37, 99, 235, 0.35);
}

.contact-method-option:has(input:focus-visible) {
    outline: none;
    box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #1d4ed8;
    z-index: 1;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
    color: #111827;
}

/* Make input/textarea placeholder color consistent with select placeholder */
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280; /* slate-500 - darker placeholder */
    opacity: 1; /* ensure consistent appearance across browsers */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Improve native select appearance to match inputs */
.form-group select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    padding-right: 2.5rem; /* room for arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M5.5 7.5L10 12l4.5-4.5' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 16px;
}

/* Hide default arrow in IE */
.form-group select::-ms-expand {
    display: none;
}

/* Placeholder/invalid styling for the "Select State" option */
.form-group select:required:invalid {
    color: #6b7280; /* slate-500 - darker placeholder */
}
.form-group select option {
    color: #111827; /* slate-900 */
}
.form-group select option[value=""] {
    color: #6b7280; /* slate-500 */
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Make community + state inline on desktop and stack on mobile */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* Honeypot field styling - ensure it's completely hidden */
.honeypot-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.honeypot-field input {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* Preview Portal Section */
.preview-portal {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    text-align: center;
}

.preview-content {
    max-width: 800px;
    margin: 0 auto;
}

.preview-content .section-title {
    color: white;
    margin-bottom: 1.5rem;
}

.preview-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.preview-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preview-note {
    font-size: 0.9rem;
    opacity: 0.7;
    font-style: italic;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

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

/* Grid: row 1 = icon + title; row 2 = tagline spanning both columns (same width as icon + title) */
.footer-logo {
    display: grid;
    grid-template-columns: auto minmax(0, max-content);
    grid-template-rows: auto auto;
    align-items: center;
    column-gap: 0.5rem;
    row-gap: 0.4rem;
    width: max-content;
    max-width: 100%;
    min-width: 0;
    margin-bottom: 1rem;
}

.footer-logo > i {
    grid-column: 1;
    grid-row: 1;
    color: #60a5fa;
    font-size: 1.4rem;
    line-height: 1;
    justify-self: start;
}

.footer-logo-title {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    min-width: 0;
}

.footer-logo-tagline {
    grid-column: 1 / -1;
    grid-row: 2;
    margin: 0;
    width: 100%;
    min-width: 0;
    font-size: clamp(0.5rem, 0.28rem + 1.05vw, 0.68rem);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #3b82f6;
    line-height: 1.3;
    /* Stretch characters across the full width of the row (icon + title) */
    text-align: justify;
    text-align-last: center;
}
.footer-logo-tagline::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 0;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #93c5fd;
    text-decoration: none;
    border-bottom: 1px solid rgba(147, 197, 253, 0.45);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
    border-bottom-color: rgba(255, 255, 255, 0.55);
}

.footer-section ul li a:focus-visible {
    outline: 2px solid #93c5fd;
    outline-offset: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.footer-security {
    padding: 2rem 0;
    margin: 2rem 0;
}

.security-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 25px;
    color: #60a5fa;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}

.security-badge:link,
.security-badge:visited,
.security-badge:active {
    color: #60a5fa;
    text-decoration: none;
}

.security-badge:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.3);
    transform: translateY(-2px);
    color: #3b82f6;
}

.security-badge i {
    font-size: 1rem;
}

/* Policy Page Styles */
.policy-content {
    padding: 120px 0 80px;
    background: white;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 1rem;
}

.policy-header p {
    font-size: 1.2rem;
    color: #6b7280;
    max-width: 600px;
    margin: 0 auto;
}

.policy-sections {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-section h2 i {
    color: #2563eb;
}

.policy-section p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.policy-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.policy-section ul {
    list-style: none;
    padding-left: 0;
}

.policy-section ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: #6b7280;
    line-height: 1.5;
}

.policy-section ul li:before {
    content: "•";
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.policy-section ul li strong {
    color: #1f2937;
}

.policy-section a:not([class]) {
    color: #2563eb;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(37, 99, 235, 0.35);
    transition: color 0.2s ease, border-color 0.2s ease;
}

.policy-section a:not([class]):hover {
    color: #1d4ed8;
    border-bottom-color: rgba(29, 78, 216, 0.55);
}

.policy-section a:not([class]):focus-visible {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6b7280;
}

.contact-item i {
    color: #2563eb;
    width: 20px;
}

.policy-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Responsive Design for Policy Page */
@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.3rem;
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

/* Tablet / iPad: slide-out nav (shared with pages that use styles.css) */
@media (max-width: 1200px) {
    .navbar .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #1e293b;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 4rem 2rem 2rem;
        transition: left 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
        overflow-x: hidden;
        gap: 0;
    }

    .navbar .nav-menu.open {
        left: 0;
    }

    .hamburger {
        display: flex;
        margin-left: auto;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: #ffffff !important;
        text-decoration: none;
    }

    .nav-menu .nav-link:last-child {
        border-bottom: none;
    }

    .nav-menu .nav-dropdown {
        width: 100%;
    }

    .nav-menu .nav-dropdown-toggle {
        font-size: 1.1rem;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: #ffffff !important;
        text-decoration: none;
    }

    .nav-menu .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        margin-top: 0.5rem;
        margin-left: 1rem;
        min-width: auto;
    }

    .nav-menu .nav-dropdown-item {
        padding: 0.5rem 0;
        border-bottom: none;
        color: #ffffff !important;
        opacity: 0.8;
        text-decoration: none;
    }

    .nav-menu .nav-dropdown-item:hover {
        background: transparent;
        color: #ffffff !important;
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .terms-text {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .terms-group h3 {
        font-size: 1.3rem;
    }
    
    .terms-group {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title__display {
        text-align: center;
    }

    .hero-rotator {
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-team {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .about-text {
        text-align: center;
    }
    
    .meter-reading-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .meter-reading-visual {
        position: static;
        top: auto;
        justify-content: center;
    }

    .meter-reading-visual .meter-demo {
        margin-left: auto;
        margin-right: auto;
    }

    .meter-demo--mockup {
        margin-left: auto;
        margin-right: auto;
    }
    
    .rural-billing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar {
        position: static;
        order: -1;
    }
    
    .sidebar-widget {
        padding: 1rem 1.25rem;
        margin-bottom: 0.75rem;
    }

    .sidebar-widget h3 {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 0;
        padding-bottom: 0;
        border-bottom: none;
        font-size: 0.95rem;
    }

    .sidebar-widget h3::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.7rem;
        color: #94a3b8;
        transition: transform 0.25s ease;
    }

    .sidebar-widget.expanded h3 {
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e2e8f0;
    }

    .sidebar-widget.expanded h3::after {
        transform: rotate(180deg);
    }

    .sidebar-widget ul,
    .sidebar-widget > p,
    .sidebar-widget > .btn {
        display: none;
    }

    .sidebar-widget.expanded ul,
    .sidebar-widget.expanded > p,
    .sidebar-widget.expanded > .btn {
        display: block;
    }

    .sidebar-widget ul li {
        margin-bottom: 0.4rem;
    }

    .sidebar-widget ul li a {
        padding: 0.35rem 0;
    }
    
    .main-content {
        padding: 2rem;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Footer mobile fixes */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        padding: 1rem 0;
        border-bottom: 1px solid #374151;
    }
    
    .footer-section:last-child {
        border-bottom: none;
    }
    
    .footer-section:first-child {
        text-align: center;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    /* Justified + ::after spreads words on narrow widths; center reads better on mobile */
    .footer-logo-tagline {
        text-align: center;
        text-align-last: center;
        letter-spacing: 0.06em;
        font-size: clamp(0.58rem, 0.34rem + 2.1vw, 0.68rem);
    }

    .footer-logo-tagline::after {
        display: none;
    }
    
    .security-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .security-badge {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .security-content {
        gap: 1rem;
    }
    
    .security-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
    
    /* Blog post pages - prevent text from being squished on narrow screens */
    .article-header {
        padding: 100px 0 40px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-content {
        padding: 30px 0;
    }

    .main-content {
        padding: 1.25rem;
    }

    .intro {
        padding: 1.25rem;
    }

    .cta-section {
        padding: 1.25rem;
        margin: 2rem 0;
    }

    .main-content h2 {
        font-size: 1.4rem;
    }

    .main-content h3 {
        font-size: 1.15rem;
    }

    .main-content p {
        font-size: 1rem;
    }

    .main-content ul {
        padding-left: 1.25rem;
    }

    .main-content ul li {
        font-size: 1rem;
    }
    
    /* Additional footer fixes for very small screens */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        padding: 0.8rem 0;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .footer-section ul li {
        font-size: 0.9rem;
    }
    
    .footer-logo-title {
        font-size: 1.3rem;
    }

    .footer-logo-tagline {
        font-size: clamp(0.56rem, 0.32rem + 2.4vw, 0.66rem);
        letter-spacing: 0.05em;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px; /* Account for fixed navbar */
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        transform: translateY(12px);
    }
    to {
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1);
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
} 

.made-with {
    font-size: 0.8rem;
    color: #9ca3af;
    margin: 2rem 0;
    text-align: center;
}

.made-with i {
    color: red;
    animation: heartThrob 2s ease-in-out infinite;
}

@keyframes heartThrob {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Toast Notification Styles */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transform: translateX(100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 400px;
    min-width: 300px;
    border: none;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.notification-content span {
    flex: 1;
    font-weight: 500;
    line-height: 1.4;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.notification-close:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

/* Notification Types */
.notification-success {
    background: #10b981;
    color: white;
}

.notification-error {
    background: #ef4444;
    color: white;
}

.notification-info {
    background: #3b82f6;
    color: white;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top:active {
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .back-to-top {
        bottom: 1.5rem;
        right: 1.5rem;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        min-width: auto;
        transform: translateY(-100%);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}