/* Consolata — public site (design tokens in brand.css) */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--teal);
    text-decoration: none;
    transition: color var(--transition), opacity var(--transition);
}

a:hover { color: var(--teal-dark); }

.container {
    width: min(1200px, 92vw);
    margin-inline: auto;
}

.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    z-index: 9999;
    padding: 0.5rem 1rem;
    background: var(--teal);
    color: #fff;
    border-radius: 8px;
}

.skip-link:focus { top: 1rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}

.btn:hover { transform: translateY(-2px); }

.btn-gold {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}

.btn-gold:hover {
    background: var(--brand-dark);
    color: var(--white);
}

.btn-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover { background: var(--teal-dark); color: #fff; }

.btn-outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }

.btn svg { width: 18px; height: 18px; }

/* Topbar (inner pages) */
.topbar {
    background: var(--teal-deep);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    gap: 1rem;
    flex-wrap: wrap;
}

.topbar-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.topbar-contact a {
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.topbar-contact a:hover { color: var(--gold); }

.topbar-social {
    display: flex;
    gap: 0.65rem;
}

.topbar-social a {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.topbar-social a:hover {
    background: var(--gold);
    color: var(--teal-deep);
}

/* Header — solid bar on all pages so the logo stays readable */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

body.has-hero .site-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.header-wrap {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.site-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-end {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    color: var(--teal-deep);
    font-weight: 800;
    font-size: 1.35rem;
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    height: 48px;
    width: auto;
    max-width: min(240px, 52vw);
    object-fit: contain;
}

.brand-logo--footer {
    height: 56px;
    max-width: min(280px, 70vw);
}

.brand:has(.brand-logo) {
    gap: 0;
    font-size: inherit;
}

.brand:has(.brand-logo):hover {
    opacity: 0.92;
}

.brand:hover { color: var(--teal); opacity: 1; }

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 12px;
    font-size: 1.1rem;
}

.header-social {
    display: flex;
    gap: 0.5rem;
}

.header-social a {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    color: var(--teal);
    border-radius: 50%;
    background: var(--teal-light);
    font-size: 0.85rem;
}

.header-social a:hover {
    background: var(--brand);
    color: var(--white);
}

.nav-pill {
    display: flex;
    align-items: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    background: var(--surface);
    border-radius: 50px;
    border: 1px solid var(--border);
}

.nav-link {
    display: block;
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    border-radius: 50px;
}

.nav-link:hover,
.nav-link.is-active {
    color: #fff;
    background: var(--teal);
}

.header-cta {
    padding: 0.65rem 1.35rem;
    font-size: 0.85rem;
}

.header-cta { display: inline-flex; }

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: none;
    border-radius: 12px;
    background: var(--teal-light);
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin-inline: auto;
    background: var(--teal);
    border-radius: 2px;
}

/* Hero — full-viewport slider */
.hero-fertilys {
    margin: 0;
    position: relative;
}

.hero-slider-section {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    min-height: 100dvh;
}

.hero-slider {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.85s ease, visibility 0.85s ease;
    z-index: 0;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide.is-active .hero-bg-image {
    animation: heroKenBurns 12s ease-out forwards;
}

@keyframes heroKenBurns {
    from { transform: scale(1.05); }
    to { transform: scale(1.12); }
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        115deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(86, 85, 84, 0.72) 48%,
        rgba(0, 0, 0, 0.78) 100%
    );
}

.hero-body {
    position: relative;
    z-index: 2;
    padding: 4rem 0 8rem;
    max-width: 720px;
}

.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-rating .stars {
    color: var(--gold);
    letter-spacing: 2px;
    font-size: 0.8rem;
}

.hero-fertilys h1 {
    margin: 0 0 1.25rem;
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: #fff;
}

.hero-lead {
    margin: 0 0 2rem;
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.88);
    max-width: 560px;
}

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

.hero-info-bar {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-info-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.hero-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 1.25rem;
    color: #fff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-info-item:last-child { border-right: none; }

.hero-info-item > i {
    font-size: 1.25rem;
    color: var(--gold);
    margin-top: 0.2rem;
}

.hero-info-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.hero-info-item span,
.hero-info-item a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.75);
}

.hero-info-item a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-info-item a:hover { color: var(--gold); }

.hero-slider-ui {
    position: absolute;
    bottom: 8.5rem;
    left: 0;
    right: 0;
    z-index: 5;
    pointer-events: none;
}

.hero-slider-btn {
    pointer-events: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.hero-slider-btn:hover {
    background: var(--brand);
    color: var(--white);
}

.hero-slider-prev { left: max(1rem, calc((100vw - 1200px) / 2)); }
.hero-slider-next { right: max(1rem, calc((100vw - 1200px) / 2)); }

.hero-slider-dots {
    pointer-events: auto;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 1rem;
}

.hero-slider-dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-slider-dot.is-active {
    background: var(--gold);
    transform: scale(1.25);
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

/* WhatsApp float */
.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-lang {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    line-height: 1;
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.header-lang-flag {
    font-size: 1.35rem;
    line-height: 1;
}

.header-lang:hover {
    border-color: var(--brand);
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.blog-list {
    display: grid;
    gap: 1.25rem;
}

.blog-card h2 {
    margin: 0 0 0.5rem;
    font-size: 1.35rem;
}

.cms-body.prose,
.container-narrow.cms-body {
    line-height: 1.75;
}

.promo-banner {
    background: var(--brand);
    color: var(--white);
    text-align: center;
    padding: 0.55rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.promo-banner a { color: inherit; text-decoration: underline; }

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

.testimonial-card {
    margin: 0;
    padding: 1.5rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.testimonial-stars { color: var(--gold); margin-bottom: 0.75rem; }

.testimonial-card footer { margin-top: 1rem; font-size: 0.88rem; color: var(--text-muted); }

.footer-newsletter {
    background: var(--teal-deep);
    color: #fff;
    padding: 2rem 0;
}

.footer-newsletter-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.footer-newsletter-form input {
    padding: 0.6rem 0.85rem;
    border: none;
    border-radius: 8px;
    min-width: 220px;
}

.contact-map iframe {
    width: 100%;
    height: 280px;
    border: 0;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.catalog-filters {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.catalog-filters .form-group { margin-bottom: 0.75rem; }

.checkbox-inline { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; font-size: 0.9rem; }

.search-page-form { max-width: 520px; margin-bottom: 2rem; }

.legal-disclaimer { color: var(--text-muted); margin: 1rem 0; }

.header-account {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--teal-deep);
    background: var(--teal-light);
    transition: background 0.2s, color 0.2s;
}

.header-account:hover {
    background: var(--brand);
    color: var(--white);
}

.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 998;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--teal-deep);
    color: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}

.cookie-consent a { color: var(--gold); }
.cookie-consent p { margin: 0; font-size: 0.9rem; }

.account-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
}

.account-dl dt {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

.account-dl dd { margin: 0.15rem 0 0; }

@media (max-width: 768px) {
    .account-layout { grid-template-columns: 1fr; }
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Sections */
.section {
    padding: 5.5rem 0;
}

.section-tag {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
}

.section-title-row {
    max-width: 620px;
    margin-bottom: 3rem;
}

.section-title-row.centered {
    margin-inline: auto;
    text-align: center;
}

.section-title-row h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--teal-deep);
}

.section-title-row p {
    margin: 0;
    color: var(--text-muted);
}

.section-services { background: var(--surface); }

.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(202, 89, 27, 0.14);
    border-color: rgba(202, 89, 27, 0.25);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin-bottom: 1.25rem;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 16px;
}

.service-card-icon svg { width: 30px; height: 30px; }

.service-card h3 {
    margin: 0 0 0.75rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--teal-deep);
}

.service-card p {
    margin: 0 0 1.25rem;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-card-link {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--teal);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.service-card-link:hover { color: var(--gold-dark); }

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-media img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    aspect-ratio: 4/5;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    right: -1rem;
    background: var(--brand);
    color: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    text-align: center;
}

.about-badge strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
}

.about-badge span {
    font-size: 0.8rem;
    font-weight: 600;
}

.about-content h2 {
    margin: 0 0 1rem;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--teal-deep);
}

.about-content p {
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.check-list {
    list-style: none;
    margin: 0 0 1.75rem;
    padding: 0;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text);
}

.check-list i { color: var(--teal); }

/* Stats */
.section-stats {
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.stat-box strong {
    display: block;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.35rem;
}

.stat-box span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* Vision cards */
.section-vision { background: var(--surface); }

.vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.vision-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 2rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.vision-card-head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.vision-card-head i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 12px;
    font-size: 1.1rem;
}

.vision-card h3 {
    margin: 0;
    font-size: 1.2rem;
    color: var(--teal-deep);
}

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

.vision-card > a {
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

/* CTA panel */
.cta-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    padding: 3rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--brand-dark) 100%);
    border-radius: var(--radius-xl);
    color: #fff;
}

.cta-panel h2 {
    margin: 0 0 0.5rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
}

.cta-panel p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    max-width: 480px;
}

/* Inner page banner */
.page-hero {
    margin: 0.75rem 0.75rem 0;
    padding: 5rem 0 4rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--gray) 55%, var(--brand-dark) 100%);
    border-radius: var(--radius-xl);
    color: #fff;
    text-align: center;
}

.page-hero .section-label,
.page-hero .section-tag {
    color: var(--brand);
}

.page-hero h1 {
    margin: 0 0 0.75rem;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
}

.page-hero p {
    margin: 0 auto;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
}

.section-label {
    display: inline-block;
    margin-bottom: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--teal);
}

.section-alt { background: var(--surface); }

.section-header {
    max-width: 640px;
    margin-bottom: 3rem;
}

.section-header.centered {
    margin-inline: auto;
    text-align: center;
}

.section-header h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    font-weight: 800;
    color: var(--teal-deep);
}

.section-header p {
    margin: 0;
    color: var(--text-muted);
}

/* Legacy cards / split — inner pages */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform var(--transition);
}

.card:hover { transform: translateY(-4px); }

.card-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 14px;
}

.card-icon svg { width: 28px; height: 28px; }

.card h3 {
    margin: 0 0 0.65rem;
    font-size: 1.1rem;
    color: var(--teal-deep);
}

.card p { margin: 0; color: var(--text-muted); font-size: 0.95rem; }

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.split-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--teal-deep);
    margin: 0 0 1rem;
}

.split-content p { color: var(--text-muted); }

.quote-block,
.team-highlight {
    padding: 2rem;
    background: var(--teal-light);
    border-radius: var(--radius);
    border-left: 4px solid var(--teal);
}

.quote-block p,
.team-highlight p {
    margin: 0;
    font-size: 1.1rem;
    color: var(--teal-dark);
    font-weight: 500;
}

.service-block {
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: calc(var(--header-h) + 1rem);
}

.service-block h2 {
    margin: 0 0 1.5rem;
    font-size: 1.4rem;
    color: var(--teal-deep);
}

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

.service-columns h3 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin: 0 0 1rem;
}

.service-columns ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-columns li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text-muted);
}

.service-columns li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

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

.cert-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.cert-card h3 {
    margin: 0 0 0.75rem;
    color: var(--teal);
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--teal), var(--gold));
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -2rem;
    top: 0.4rem;
    width: 14px;
    height: 14px;
    margin-left: -5.5px;
    background: var(--white);
    border: 3px solid var(--teal);
    border-radius: 50%;
}

.timeline-item h3 {
    margin: 0 0 0.75rem;
    color: var(--teal-deep);
}

.timeline-item li {
    color: var(--text-muted);
    margin-bottom: 0.45rem;
}

.market-list { display: grid; gap: 1rem; }

.market-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.check-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: var(--teal);
}

.cta-banner {
    padding: 3rem;
    text-align: center;
    background: linear-gradient(135deg, var(--black) 0%, var(--brand-dark) 100%);
    border-radius: var(--radius-xl);
    color: #fff;
}

.cta-banner h2 {
    margin: 0 0 0.75rem;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
}

.cta-banner p {
    margin: 0 auto 1.5rem;
    max-width: 520px;
    color: rgba(255, 255, 255, 0.88);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    align-items: start;
}

.contact-info-card,
.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
}

.contact-info-card h2,
.contact-form h2 {
    margin: 0 0 1.5rem;
    color: var(--teal-deep);
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.contact-item .icon,
.contact-item > i:first-child {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--teal-light);
    color: var(--teal);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.35rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: inherit;
    font-size: 1rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--surface);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(202, 89, 27, 0.15);
}

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

.alert {
    padding: 1rem 1.15rem;
    margin-bottom: 1.25rem;
    border-radius: 10px;
    font-size: 0.95rem;
}

.alert-success {
    background: #e8f8f0;
    color: #1b6b42;
    border: 1px solid #a8e6c4;
}

.alert-error {
    background: #fdecea;
    color: #b42318;
    border: 1px solid #f5c4c0;
}

/* Footer */
.site-footer {
    margin-top: 4rem;
    background: var(--teal-deep);
    color: rgba(255, 255, 255, 0.8);
}

.footer-top { padding: 4rem 0 3rem; }

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
}

.footer-brand p {
    margin: 1rem 0;
    font-size: 0.95rem;
    max-width: 280px;
}

.brand-footer { color: #fff; }

.brand-footer .brand-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--gold);
}

.footer-social {
    display: flex;
    gap: 0.5rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.footer-social a:hover {
    background: var(--brand);
    color: var(--white);
}

.footer-col h3 {
    margin: 0 0 1rem;
    font-size: 1rem;
    color: #fff;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-col a,
.footer-col span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
}

.footer-col a:hover { color: var(--gold); }

.footer-contact li {
    display: flex;
    gap: 0.65rem;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem 0;
}

.footer-bottom-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p { margin: 0; }

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .header-wrap { flex-wrap: wrap; }

    .header-social { display: none; }

    .nav-toggle { display: flex; margin-left: auto; }

    .site-nav {
        display: none;
        flex: 1 1 100%;
        order: 5;
        padding-top: 0.5rem;
    }

    .site-nav.is-open { display: flex; }

    .nav-pill {
        flex-direction: column;
        border-radius: var(--radius);
        width: 100%;
    }

    .nav-link { text-align: center; }

    .header-end .header-cta { display: none; }

    .about-grid,
    .split,
    .vision-grid,
    .contact-grid,
    .service-columns,
    .footer-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-info-inner { grid-template-columns: 1fr; }

    .hero-info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero-info-item:last-child { border-bottom: none; }

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

@media (max-width: 640px) {
    .hero-fertilys,
    .page-hero { margin: 0; border-radius: 0; }

    .hero-slider-section {
        min-height: 100svh;
    }

    .hero-body { padding: 3rem 0 4.5rem; }

    .hero-slider-ui { bottom: 7rem; }

    .hero-slider-prev,
    .hero-slider-next {
        width: 40px;
        height: 40px;
        left: 0.75rem;
        right: auto;
    }

    .hero-slider-next {
        left: auto;
        right: 0.75rem;
    }

    .cta-panel { flex-direction: column; text-align: center; }
}
