/* ===== CSS VARIABLES ===== */
:root {
    --navy: #0a1628;
    --deep-blue: #0d2044;
    --ocean: #1a3a6b;
    --teal: #00b4d8;
    --gold: #c9a84c;
    --gold-light: #f0c96e;
    --cream: #f8f4ed;
    --white: #ffffff;
    --gray-light: #f0f4f8;
    --gray: #8899aa;
    --text: #1a2535;
    --font-display: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
    --shadow: 0 8px 40px rgba(10,22,40,0.15);
    --shadow-gold: 0 4px 24px rgba(201,168,76,0.3);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== PARTICLES ===== */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(0,180,216,0.15);
    animation: float linear infinite;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition);
    background: rgba(10,22,40,0.96);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
}
.navbar.scrolled {
    /* Background now always applied */
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-icon { width: 30px; height: 30px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-main {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1.1;
}
.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    color: var(--teal);
    text-transform: uppercase;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}
.nav-link {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: var(--transition);
    letter-spacing: 0.02em;
    position: relative;
}
.nav-link:hover, .nav-link.active {
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 50%;
    transform: translateX(-50%);
    width: 20px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Dropdown */
.dropdown { position: relative; }
.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px); right: 0;
    background: var(--deep-blue);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--radius);
    padding: 0.5rem;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    border-radius: 6px;
    transition: var(--transition);
}
.dropdown-menu li a:hover { color: var(--gold); background: rgba(201,168,76,0.08); }
.dropdown-cta {
    color: var(--teal) !important;
    font-weight: 600 !important;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 0.25rem;
    padding-top: 0.75rem !important;
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px; height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== MENU OVERLAY ===== */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* ===== MAIN CONTENT ===== */
.main-content { position: relative; z-index: 1; }

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        url('../images/plan.avif') center/cover no-repeat,
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0,180,216,0.12) 0%, transparent 100%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(201,168,76,0.08) 0%, transparent 89%),
        linear-gradient(135deg, var(--navy) 0%, #061020 100%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0,180,216,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,180,216,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1.2rem;
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInDown 0.6s ease;
}
.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title .accent { color: var(--gold); }
.hero-title .teal { color: var(--teal); }
.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 0.7s ease 0.2s both;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-stats {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    animation: fadeInUp 0.7s ease 0.4s both;
    flex-wrap: wrap;
}
.stat-item { text-align: center; }
.stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}
.stat-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.02em;
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(201,168,76,0.5);
}
.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: var(--white);
}
.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(0,180,216,0.06);
}
.btn-teal {
    background: linear-gradient(135deg, var(--teal), #0090b4);
    color: var(--white);
}
.btn-teal:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,180,216,0.4); }

/* ===== SECTIONS ===== */
.section {
    padding: 5rem 2rem;
    position: relative;
}
.section-dark { background: rgba(0,0,0,0.2); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 0.75rem;
    font-weight: 600;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
}
.section-title .gold { color: var(--gold); }
.section-subtitle {
    margin-top: 1rem;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ===== CARDS ===== */
.card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}
.card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(201,168,76,0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}
.card-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--white);
}
.card-text { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* ===== GRID LAYOUTS ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; align-items: center; }

/* ===== 4 SECTOR CARDS construction-cuisine-etc.. ===== */
.sector-card {
    background: rgba(255,255,255,0.04);
    border: 0px solid rgba(255,255,255,0.08);
    padding: 0.75rem;
    transition: var(--transition);
}
.sector-card:hover {
    border-color: var(--teal);
    background: rgba(0,180,216,0.06);
    transform: translateY(-3px);
}
.sector-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.sector-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.sector-list { padding-left: 0; }
.sector-list li {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}
.sector-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 700;
}

/* ===== FORM STYLES ===== */
.form-section {
    padding: 6rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.form-container {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}
.form-wrapper {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 20px;
    padding: 3rem;
    backdrop-filter: blur(20px);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.4rem;
    letter-spacing: 0.03em;
}
.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    background: rgba(255,255,255,0.06);
    border: 1.5px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--teal);
    background: rgba(0,180,216,0.06);
}
.form-input::placeholder, .form-textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-select option { background: var(--deep-blue); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
    width: 100%;
    padding: 1rem;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* ===== FAQ ===== */
.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,0.3); }
.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(255,255,255,0.04);
    border: none;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.07); }
.faq-icon { color: var(--gold); font-size: 1.2rem; transition: var(--transition); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.9rem;
    line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 1.5rem 1.25rem; }

/* ===== TEAM CARDS ===== */
.team-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.team-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 1rem;
    border: 2px solid rgba(201,168,76,0.3);
}
.team-name {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.team-role {
    font-size: 0.82rem;
    color: var(--teal);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ===== TESTIMONIALS ===== */
.testimonial-card {
    padding: 2rem;
    position: relative;
}
.testimonial-card::before {
    content: '"';
    font-family: var(--font-display);
    font-size: 5rem;
    color: rgba(201,168,76,0.15);
    position: absolute;
    top: 0; left: 1.5rem;
    line-height: 1;
}
.testimonial-text {
    color: rgba(255,255,255,0.75);
    font-size: 0.9rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.25rem;
    position: relative;
}
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; }
.testimonial-title { font-size: 0.78rem; color: rgba(255,255,255,0.5); }

/* ===== PAGE HEADER ===== */
.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, transparent 100%);
}
.page-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    margin-bottom: 1rem;
}
.page-hero-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}
.page-divider {
    width: 60px; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    margin: 1.5rem auto;
    border-radius: 2px;
}

/* ===== CONTACT ===== */
.contact-info-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    margin-bottom: 1rem;
    align-items: flex-start;
    transition: var(--transition);
}
.contact-info-item:hover { border-color: rgba(0,180,216,0.3); }
.contact-icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-info-text h4 { font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-info-text p { font-size: 0.85rem; color: rgba(255,255,255,0.55); }

/* ===== MISSION PAGE ===== */
.mission-highlight {
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
}
.mission-highlight p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}
.offer-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.offer-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    height: 2px; width: 0;
    background: linear-gradient(90deg, var(--gold), var(--teal));
    transition: width 0.4s ease;
}
.offer-card:hover::after { width: 100%; }
.offer-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(201,168,76,0.1);
    position: absolute;
    top: 0.5rem; right: 1rem;
}

/* ===== PARTNERSHIP ===== */
.partnership-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}
@media (max-width: 992px) {
    .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .process-steps { grid-template-columns: 1fr; }
}
.benefit-item {
    display: flex;
    gap: 0.75rem;
    padding: 1rem;
    background: rgba(255,255,255,0.04);
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    align-items: flex-start;
    transition: var(--transition);
}
.benefit-item:hover { border-color: rgba(201,168,76,0.2); }
.benefit-check { color: var(--teal); font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.benefit-text p:first-child { font-size: 0.9rem; font-weight: 600; margin-bottom: 0.15rem; }
.benefit-text p:last-child { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

/* ===== ALERTS ===== */
.alert {
    padding: 1rem 1.25rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    display: none;
}
.alert-success { background: rgba(0,200,100,0.1); border: 1px solid rgba(0,200,100,0.3); color: #4ade80; }
.alert-error { background: rgba(255,80,80,0.1); border: 1px solid rgba(255,80,80,0.3); color: #f87171; }

/* ===== FOOTER ===== */
.footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid rgba(201,168,76,0.15);
    padding: 3rem 2rem 1.5rem;
    position: relative;
    z-index: 1;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-btn {
    padding: 0.4rem 1rem;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.social-btn:hover { border-color: var(--teal); color: var(--teal); }
.footer-links h4, .footer-contact h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--gold);
    margin-bottom: 1rem;
}
.footer-links ul li { margin-bottom: 0.5rem; }
.footer-links ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links ul li a:hover { color: var(--teal); }
.footer-contact p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.5rem; }
.footer-cta {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.6rem 1.25rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--navy);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
}
.footer-cta:hover { transform: translateY(-2px); }
.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.3);
}

/* ===== SCROLL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-container { padding: 0 1rem; }
    .nav-links {
        position: fixed;
        top: 0; right: -100%;
        height: 100vh; width: 240px;
        background: var(--deep-blue);
        flex-direction: column;
        align-items: flex-start;
        padding: 4rem 2rem 2rem;
        transition: right 0.35s ease;
        z-index: 999;
        gap: 0.5rem;
        box-shadow: -4px 0 30px rgba(0,0,0,0.5);
    }
    .nav-links.open { right: 0; }
    .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; margin-top: 0.5rem; background: rgba(255,255,255,0.04); }
    .grid-3, .grid-2 { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .partnership-benefits { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    /* .hero-stats { gap: 1.5rem; flex-direction: column; align-items: center; } */
}
@media (max-width: 480px) {
    .section { padding: 3.5rem 1.25rem; }
    .form-wrapper { padding: 2rem 1.25rem; }
    .hero-actions { flex-direction: column; align-items: center; }
}
