/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --green-light: #9AD872;
    --green-dark: #283F24;
    --green-darker: #1c2d19;
    --green-bg: #f4faf0;
    --green-bg-alt: #eaf5e3;
    --white: #ffffff;
    --gray-50: #f8faf7;
    --gray-100: #f1f5ee;
    --gray-200: #e4e8e1;
    --gray-400: #9ca396;
    --gray-600: #5a6155;
    --gray-800: #1D1E1E;
    --radius: 12px;
    --radius-lg: 16px;
    --shadow-sm: 0 1px 3px rgba(40, 63, 36, 0.06);
    --shadow-md: 0 4px 12px rgba(40, 63, 36, 0.08);
    --shadow-lg: 0 8px 30px rgba(40, 63, 36, 0.12);
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

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

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    display: flex;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1.2;
}

.logo-sub {
    font-size: 12px;
    font-weight: 500;
    color: var(--gray-400);
    line-height: 1.2;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition);
    letter-spacing: -0.2px;
}

.nav a:hover {
    color: var(--green-dark);
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-bg);
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.header-phone:hover {
    background: var(--green-bg-alt);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--green-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
    flex-direction: column;
    gap: 4px;
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    font-size: 16px;
    font-weight: 500;
    color: var(--gray-600);
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.mobile-nav-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--green-dark) !important;
    font-weight: 600 !important;
    border-bottom: none !important;
    margin-top: 8px;
}

/* ===== Hero ===== */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(170deg, var(--white) 0%, var(--green-bg) 50%, var(--green-bg-alt) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(154, 216, 114, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 63, 36, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 54px;
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.3px;
    color: var(--gray-800);
    margin-bottom: 16px;
}

.hero-light {
    font-weight: 400;
}

.hero h1 strong {
    font-weight: 700;
    color: var(--green-dark);
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.2px;
    margin-bottom: 8px;
}

.hero-location {
    font-size: 16px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: -0.2px;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--green-darker);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--green-dark);
    border: 2px solid var(--gray-200);
}

.btn-secondary:hover {
    border-color: var(--green-dark);
    transform: translateY(-1px);
}

.btn-lg {
    font-size: 18px;
    padding: 16px 36px;
    border-radius: 12px;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.hero-feature span {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.2px;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 600;
    line-height: 1.22;
    letter-spacing: -0.6px;
    color: var(--gray-800);
    margin-bottom: 12px;
}

.section-header p {
    font-size: 16px;
    color: var(--gray-400);
}

/* ===== Products ===== */
.products {
    padding: 80px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    transition: all 0.25s ease;
    cursor: pointer;
}

.product-card:hover {
    border-color: var(--green-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.product-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.product-icon svg {
    width: 100%;
    height: 100%;
}

.product-name {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    letter-spacing: -0.3px;
    margin-bottom: 8px;
}

.product-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    transition: var(--transition);
}

.product-card:hover .product-cta {
    color: var(--green-light);
}

/* Extra products - hidden by default */
.products-extra {
    display: none;
    margin-top: 20px;
}

.products-extra.show {
    display: grid;
}

.show-all-btn {
    display: block;
    margin: 32px auto 0;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    padding: 12px 24px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.show-all-btn:hover {
    background: var(--green-bg);
}

.show-all-btn.active {
    color: var(--gray-400);
}

/* ===== Why Us ===== */
.why-us {
    padding: 80px 0;
    background: var(--green-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s ease;
}

.why-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.why-icon {
    width: 64px;
    height: 64px;
    background: var(--green-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
    letter-spacing: -0.2px;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-400);
}

/* ===== Partners ===== */
.partners {
    padding: 80px 0;
    background: #eef0ec;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.partner-logo {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.partner-logo img {
    height: 32px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
}

/* ===== CTA ===== */
.cta {
    padding: 80px 0;
    background: var(--white);
}

.cta-inner {
    background: linear-gradient(135deg, var(--green-dark) 0%, #1c2d19 100%);
    border-radius: 24px;
    padding: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(154, 216, 114, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

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

.cta-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.cta-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.cta .btn-primary {
    background: var(--green-light);
    color: var(--green-dark);
    position: relative;
    z-index: 1;
    white-space: nowrap;
}

.cta .btn-primary:hover {
    background: #8ccf5f;
    transform: translateY(-1px);
}

/* ===== Footer ===== */
.footer {
    background: var(--green-dark);
    padding: 64px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 0.8fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo span {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    max-width: 320px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--green-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== SEO Content ===== */
.seo-content {
    padding: 48px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-200);
}

.seo-content h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.seo-content p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--gray-400);
    margin-bottom: 12px;
    max-width: 900px;
}

.seo-content strong {
    color: var(--gray-600);
    font-weight: 500;
}

/* ===== Contact + Map ===== */
.contact-section {
    padding: 80px 0;
    background: var(--green-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-info h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.contact-desc {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 32px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 15px;
    color: var(--gray-600);
}

.contact-item a:hover {
    color: var(--green-dark);
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
    box-shadow: var(--shadow-md);
}

.contact-map iframe {
    display: block;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq .section-header h2 {
    max-width: 600px;
    margin: 0 auto 12px;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.faq-item.active {
    border-color: var(--green-light);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
    text-align: left;
    cursor: pointer;
    letter-spacing: -0.2px;
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--green-dark);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* ===== About Page ===== */
.about-hero {
    padding: 120px 0 48px;
    background: linear-gradient(170deg, var(--white) 0%, var(--green-bg) 100%);
}

.about-badge {
    font-size: 14px;
    font-weight: 600;
    color: var(--green-dark);
    background: var(--green-bg-alt);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--gray-800);
}

.about-content {
    padding: 64px 0 80px;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 56px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-lead {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-800);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-600);
}

.about-text strong {
    color: var(--gray-800);
    font-weight: 600;
}

.about-photo {
    grid-column: 1 / -1;
    margin-bottom: 8px;
}

.about-photo img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.about-photo-caption {
    display: flex;
    flex-direction: column;
    padding: 16px 4px 0;
}

.about-photo-caption strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--gray-800);
}

.about-photo-caption span {
    font-size: 13px;
    color: var(--gray-400);
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.stat-card {
    background: var(--green-bg);
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: -0.5px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-400);
}

.about-values {
    padding: 80px 0;
    background: var(--green-bg);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: var(--green-bg);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--gray-400);
}

.nav-active {
    color: var(--green-dark) !important;
}

/* ===== Contact Page ===== */
.contact-page {
    padding: 64px 0 80px;
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.contact-page-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-page-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--green-bg);
    border-radius: 14px;
    padding: 24px;
    transition: all 0.2s ease;
}

a.contact-page-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.contact-page-icon {
    width: 52px;
    height: 52px;
    background: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page-icon--whatsapp {
    background: #e8fce8;
}

.contact-page-card h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 3px;
}

.contact-page-card span {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

.contact-page-map {
    border-radius: 16px;
    overflow: hidden;
    min-height: 420px;
    box-shadow: var(--shadow-md);
}

.contact-page-map iframe {
    display: block;
}

/* ===== Product Page ===== */
.product-hero {
    padding: 120px 0 48px;
    background: linear-gradient(170deg, var(--white) 0%, var(--green-bg) 100%);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-400);
    margin-bottom: 24px;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--green-dark);
}

.product-hero-location {
    font-size: 14px;
    font-weight: 500;
    color: var(--green-dark);
    background: var(--green-bg-alt);
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.product-hero h1 {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--gray-800);
    margin-bottom: 8px;
}

.product-hero-desc {
    font-size: 17px;
    color: var(--gray-600);
    max-width: 600px;
}

/* Form Section */
.product-form-section {
    padding: 64px 0 80px;
    background: var(--white);
}

.product-form-section > .container {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 48px;
    align-items: start;
}

.form-wrapper {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 40px;
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: -0.3px;
    margin-bottom: 6px;
}

.form-header p {
    font-size: 15px;
    color: var(--gray-400);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: var(--gray-800);
    background: var(--gray-50);
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-group input:focus {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(154, 216, 114, 0.15);
}

.form-group.error input {
    border-color: #e53935;
    background: #fff5f5;
    box-shadow: 0 0 0 3px rgba(229, 57, 53, 0.1);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.form-check label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.5;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--green-dark);
    cursor: pointer;
}

.form-check strong {
    color: var(--gray-800);
}

.btn-submit {
    margin-top: 8px;
    background: var(--green-dark);
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 16px 32px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background: var(--green-darker);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

/* Form Success */
.form-success {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 0;
    gap: 12px;
}

.form-success h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--gray-800);
}

.form-success p {
    font-size: 15px;
    color: var(--gray-400);
    margin-bottom: 12px;
}

/* Sidebar */
.form-sidebar {
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: sticky;
    top: 96px;
}

.sidebar-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--green-bg);
    border-radius: 14px;
    padding: 20px;
}

.sidebar-icon {
    width: 44px;
    height: 44px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-card h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 2px;
}

.sidebar-card a,
.sidebar-card span {
    font-size: 14px;
    color: var(--gray-600);
}

.sidebar-card a:hover {
    color: var(--green-dark);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 42px;
    }

    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

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

    .header-phone {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .header-inner {
        height: 64px;
    }

    .mobile-nav {
        top: 64px;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
        margin-top: 48px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        padding: 24px;
    }

    .product-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 16px;
    }

    .product-name {
        font-size: 15px;
    }

    .section-header h2 {
        font-size: 26px;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .partner-logo {
        padding: 20px 12px;
        min-height: 64px;
    }

    .partner-logo img {
        height: 24px;
    }

    .partner-logo img {
        height: 28px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
    }

    .cta-text h2 {
        font-size: 26px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .products,
    .why-us,
    .cta {
        padding: 60px 0;
    }

    .about-hero h1 {
        font-size: 30px;
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-page-map {
        min-height: 280px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-stats {
        position: static;
        order: -1;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-map {
        min-height: 280px;
    }

    /* Product page responsive */
    .product-hero {
        padding: 100px 0 36px;
    }

    .product-hero h1 {
        font-size: 30px;
    }

    .product-hero-desc {
        font-size: 15px;
    }

    .product-form-section > .container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .form-wrapper {
        padding: 28px 20px;
    }

    .form-header h2 {
        font-size: 24px;
    }

    .form-sidebar {
        position: static;
    }

    .btn-submit {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        padding: 20px 16px;
    }

    .product-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .product-name {
        font-size: 14px;
    }

    .product-cta {
        font-size: 13px;
    }
}

/* ===== WhatsApp Widget ===== */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999;
}

.whatsapp-float {
    width: 56px;
    height: 56px;
    background: var(--green-dark);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(40, 63, 36, 0.4);
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(40, 63, 36, 0.5);
}

.whatsapp-float .wa-icon-close {
    display: none;
}

.whatsapp-float.active .wa-icon-chat {
    display: none;
}

.whatsapp-float.active .wa-icon-close {
    display: block;
}

/* Popup */
.wa-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    opacity: 0;
    transform: translateY(16px) scale(0.95);
    pointer-events: none;
    transition: all 0.3s ease;
}

.wa-popup.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.wa-popup-header {
    background: var(--green-dark);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.wa-popup-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wa-popup-header strong {
    font-size: 15px;
    display: block;
    line-height: 1.3;
}

.wa-popup-header span {
    font-size: 12px;
    opacity: 0.7;
}

.wa-popup-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0.6;
    padding: 0 4px;
    line-height: 1;
    transition: opacity 0.2s;
}

.wa-popup-close:hover {
    opacity: 1;
}

.wa-popup-body {
    padding: 20px;
    background: #e8efe5;
}

.wa-bubble {
    background: #fff;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    font-size: 14px;
    line-height: 1.5;
    color: var(--gray-800);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
    display: inline-block;
    max-width: 85%;
}

.wa-popup-input {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border-top: 1px solid var(--gray-200);
    text-decoration: none;
    transition: background 0.2s;
}

.wa-popup-input:hover {
    background: var(--gray-50);
}

.wa-popup-input span {
    font-size: 14px;
    color: var(--gray-400);
}

@media (max-width: 480px) {
    .wa-popup {
        width: calc(100vw - 48px);
        right: 0;
    }
}