/* =========================================
   Base & Variables
   ========================================= */
:root {
    --primary: #1c7a35;
    /* Logo Green */
    --primary-light: #34a853;
    --primary-dark: #16632a;
    --accent: #FF0000;
    /* Logo Red */

    --text-main: #333333;
    --text-muted: #666666;
    --text-light: #f8f9fa;

    --bg-main: #ffffff;
    --bg-alt: #f0f4f8;
    --bg-dark: #0a192f;
    --bg-darker: #060d1a;

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-bg-dark: rgba(10, 25, 47, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-border-dark: rgba(255, 255, 255, 0.1);

    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(31, 138, 59, 0.22);

    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 999px;

    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    color: var(--text-main);
    margin-top: 0;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
    outline: 3px solid var(--primary-dark);
    outline-offset: 3px;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section-padding {
    padding: 100px 0;
}

.text-center {
    text-align: center;
}

.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;
}

/* Typography Utilities */
.text-primary {
    color: var(--primary-dark);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header {
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn:disabled,
.btn[aria-disabled="true"] {
    background: #cfd8dc;
    border-color: #cfd8dc;
    color: #334155;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    color: white;
    box-shadow: 0 4px 15px rgba(31, 138, 59, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(31, 138, 59, 0.45);
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
}

.btn-secondary {
    background: var(--bg-alt);
    color: var(--primary);
}

.btn-secondary:hover {
    background: #e8eef3;
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
    color: white;
    background: transparent;
}

.btn-outline-light:hover {
    background: white;
    color: var(--bg-dark);
}

.w-100 {
    width: 100%;
    box-sizing: border-box;
}

/* =========================================
   Glassmorphism Utilities
   ========================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.glass-panel-dark {
    background: var(--glass-bg-dark);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border-dark);
    border-radius: var(--radius-lg);
    color: white;
}

/* =========================================
   Navbar
   ========================================= */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

#navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 35px;
    width: auto;
    max-width: 100%;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-dark);
}

.nav-mobile-cta {
    display: none;
}

.nav-links .nav-mobile-cta,
.nav-links .nav-mobile-cta:hover,
.nav-links .nav-mobile-cta.active {
    color: white;
}

.nav-links .nav-mobile-cta::after {
    display: none;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    border: 0;
    background: transparent;
    padding: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

/* =========================================
   Hero Section
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Space for navbar */
    overflow: hidden;
    background-color: var(--bg-alt);
}

.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-light);
    top: -100px;
    right: -100px;
    animation: float 10s ease-in-out infinite;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: rgba(0, 230, 118, 0.2);
    bottom: -200px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(0, 136, 255, 0.3);
    top: 40%;
    left: 40%;
    animation: float 12s ease-in-out infinite 2s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(51, 204, 51, 0.15);
    /* Slightly darker green tint */
    color: var(--primary-dark);
    /* Darker green for text */
    border: 1px solid rgba(51, 204, 51, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 15px;
}

.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-orb {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.5);
    animation: pulseOrb 6s ease-in-out infinite;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.floating-card .icon {
    font-size: 1.5rem;
    background: var(--bg-alt);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.card-title {
    font-weight: 700;
    color: var(--text-main);
}

.card-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.card-1 {
    top: 20%;
    right: 10%;
    animation: floatCard 4s ease-in-out infinite;
}

.card-2 {
    bottom: 20%;
    left: 5%;
    animation: floatCard 5s ease-in-out infinite reverse;
}

/* =========================================
   Features
   ========================================= */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: linear-gradient(165deg, #ffffff 0%, #f7fbf8 100%);
    border: 1px solid rgba(22, 99, 42, 0.28);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(22, 99, 42, 0.5);
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
}

.feature-card:nth-child(1) {
    background: linear-gradient(165deg, #ffffff 0%, #eef9f2 100%);
}

.feature-card:nth-child(1)::before {
    background: linear-gradient(90deg, #16632a, #34a853);
}

.feature-card:nth-child(2) {
    background: linear-gradient(165deg, #ffffff 0%, #edf9ef 100%);
}

.feature-card:nth-child(2)::before {
    background: linear-gradient(90deg, #1c7a35, #4caf66);
}

.feature-card:nth-child(1):hover,
.feature-card:nth-child(2):hover {
    box-shadow: 0 20px 38px rgba(22, 99, 42, 0.22);
}

.feature-card:nth-child(3) {
    background: linear-gradient(165deg, #ffffff 0%, #fff1f1 100%);
}

.feature-card:nth-child(3)::before {
    background: linear-gradient(90deg, #b71c1c, #ef5350);
}

.feature-card:nth-child(4) {
    background: linear-gradient(165deg, #ffffff 0%, #fff4f1 100%);
}

.feature-card:nth-child(4)::before {
    background: linear-gradient(90deg, #c62828, #f44336);
}

.feature-card:nth-child(3):hover,
.feature-card:nth-child(4):hover {
    box-shadow: 0 20px 38px rgba(198, 40, 40, 0.22);
    border-color: rgba(198, 40, 40, 0.5);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
    background: rgba(28, 122, 53, 0.1);
    border: 1px solid rgba(22, 99, 42, 0.2);
    width: 78px;
    height: 78px;
    line-height: 78px;
    border-radius: 50%;
}

.feature-card:nth-child(1) .feature-icon {
    background: rgba(22, 99, 42, 0.12);
    border-color: rgba(22, 99, 42, 0.28);
}

.feature-card:nth-child(2) .feature-icon {
    background: rgba(28, 122, 53, 0.1);
    border-color: rgba(28, 122, 53, 0.24);
}

.feature-card:nth-child(3) .feature-icon {
    background: rgba(239, 83, 80, 0.12);
    border-color: rgba(198, 40, 40, 0.3);
}

.feature-card:nth-child(4) .feature-icon {
    background: rgba(244, 67, 54, 0.12);
    border-color: rgba(198, 40, 40, 0.32);
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

/* =========================================
   Partnership Page
   ========================================= */
.partner-hero {
    padding: 160px 0 90px;
    background: linear-gradient(180deg, #f5fbf6 0%, #ffffff 100%);
}

.partner-hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 34px;
    align-items: start;
}

.partner-eyebrow {
    display: inline-block;
    background: rgba(28, 122, 53, 0.12);
    border: 1px solid rgba(22, 99, 42, 0.22);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    padding: 6px 12px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.partner-hero h1 {
    font-size: 3rem;
    line-height: 1.12;
    margin-bottom: 16px;
}

.partner-hero p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.partner-highlight {
    padding: 28px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.95), rgba(240, 250, 243, 0.95));
}

.partner-highlight h3 {
    margin-bottom: 14px;
}

.partner-highlight ul {
    display: grid;
    gap: 10px;
    padding-left: 18px;
    list-style: disc;
}

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

.partner-card {
    background: linear-gradient(170deg, #ffffff 0%, #f4faf5 100%);
    border: 1px solid rgba(22, 99, 42, 0.2);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    padding: 26px;
}

.partner-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.partner-card p {
    margin: 0;
    color: var(--text-muted);
}

.scheme-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.scheme-card {
    padding: 30px;
}

.scheme-card h3 {
    margin-bottom: 10px;
}

.scheme-card p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 14px;
}

.scheme-card ul {
    list-style: disc;
    padding-left: 18px;
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.86);
}

.requirements-wrap {
    display: grid;
    gap: 22px;
    padding: 34px;
}

.requirements-list {
    list-style: disc;
    padding-left: 18px;
    display: grid;
    gap: 8px;
}

/* =========================================
   Pricing 
   ========================================= */
.dark-bg {
    background-color: var(--bg-dark);
    color: white;
}

.dark-bg h2,
.dark-bg h3 {
    color: white;
}

.dark-bg .section-header p {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.pricing-card {
    padding: 40px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    background: linear-gradient(to bottom, var(--bg-darker), var(--bg-dark));
    border: 2px solid var(--primary);
    transform: scale(1.05);
    /* slightly larger */
    z-index: 2;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 136, 255, 0.2);
}

.pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 136, 255, 0.4);
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
    color: var(--primary-light);
}

.price span:first-child {
    font-size: 1rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
}

.speed {
    font-size: 1.1rem;
}

.speed strong {
    color: white;
    text-shadow: 0 0 10px rgba(51, 204, 51, 0.4);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
}

.plan-features {
    margin-bottom: 30px;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.plan-features .check {
    color: var(--primary-light);
    margin-right: 10px;
    font-weight: bold;
}

/* =========================================
   Coverage Form
   ========================================= */
.coverage-content {
    padding: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 244, 248, 0.9));
}

.coverage-text h2 {
    margin-bottom: 20px;
}

.coverage-text p {
    color: var(--text-muted);
}

.input-group {
    display: flex;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    overflow: hidden;
    background: white;
}

.input-group input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    font-size: 1rem;
    font-family: inherit;
}

.input-group input:focus-visible {
    outline-offset: -3px;
}

.input-group button {
    border-radius: 0;
    padding: 15px 30px;
    min-width: 160px;
}

.p-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

.spinner {
    display: none;
    /* hidden by default */
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn.loading .btn-text {
    visibility: hidden;
}

.btn.loading .spinner {
    display: block;
}

.result-message {
    margin-top: 15px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
}

.result-message.success {
    background: rgba(0, 230, 118, 0.1);
    color: #0d7a43;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.result-message.error {
    background: rgba(255, 61, 0, 0.1);
    color: #c62828;
    border: 1px solid rgba(255, 61, 0, 0.2);
}

.result-message.info {
    background: rgba(51, 204, 51, 0.1);
    color: #1e7a1e;
    border: 1px solid rgba(51, 204, 51, 0.25);
}

.hidden {
    display: none;
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background-color: var(--bg-darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 20px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 20px;
}

.footer .logo {
    color: white;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* =========================================
   Animations
   ========================================= */
@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

@keyframes pulseOrb {
    0% {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.5);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 30px 60px rgba(0, 136, 255, 0.2), inset 0 0 30px rgba(255, 255, 255, 0.8);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1), inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Scroll Reveal Classes */
.hidden-scroll {
    opacity: 0;
}

.fade-in {
    animation: fadeIn 0.8s forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}


/* =========================================
   Responsive
   ========================================= */
@media (max-width: 992px) {
    .partner-hero-content {
        grid-template-columns: 1fr;
    }

    .partner-hero h1 {
        font-size: 2.4rem;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text {
        margin: 0 auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image {
        display: none;
        /* Simplify on smaller screens */
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .coverage-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    .partner-hero {
        padding: 130px 0 70px;
    }

    .partner-hero h1 {
        font-size: 2rem;
    }

    .partner-highlight,
    .requirements-wrap,
    .scheme-card {
        padding: 22px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        /* Hidden */
        transition: clip-path 0.4s ease-in-out;
    }

    .nav-links.active {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .nav-links a {
        padding: 15px 20px;
        border-bottom: 1px solid #eee;
    }

    .nav-links .nav-mobile-cta {
        display: inline-flex;
        justify-content: center;
        margin: 14px 20px 18px;
        border-bottom: none;
        padding: 12px 18px;
    }

    .btn-outline {
        display: none;
    }

    /* Hide CTA in nav on mobile */
    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
    }

    .input-group {
        flex-direction: column;
        border-radius: var(--radius-md);
    }

    .input-group input {
        border-radius: var(--radius-md) var(--radius-md) 0 0;
    }

    .input-group button {
        border-radius: 0 0 var(--radius-md) var(--radius-md);
    }
}
