/* ============================================
   TamAgro — Anadolu Harvest design system
   ============================================ */
:root {
    --forest: #05582a;
    --forest-mid: #0a6e36;
    --forest-deep: #033d1d;
    --wheat: #fdb813;
    --wheat-dark: #e0a00c;
    --cream: #fff8e8;
    --paper: #ffffff;
    --ink: #1a1612;
    --muted: #5c564c;
    --line: rgba(5, 88, 42, 0.12);
    --white: #ffffff;
    --whatsapp: #25d366;
    --shadow: 0 18px 50px rgba(3, 61, 29, 0.1);
    --shadow-hover: 0 24px 60px rgba(3, 61, 29, 0.16);
    --transition: 0.28s ease;
    --radius: 4px;
    --header-h: 84px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--ink);
    background: var(--paper);
    line-height: 1.65;
    overflow-x: hidden;
}

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

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

.icon-sprite {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.icon {
    width: 22px;
    height: 22px;
    display: block;
    flex-shrink: 0;
    fill: currentColor;
}

.icon-sm {
    width: 16px;
    height: 16px;
    display: inline-block;
    vertical-align: -3px;
    margin-right: 6px;
}

a {
    color: inherit;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--ink);
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    font-weight: 500;
    color: var(--wheat-dark);
}

.highlight {
    color: var(--wheat-dark);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--wheat);
    color: var(--forest-deep);
    border-color: var(--wheat);
}

.btn-primary:hover {
    background: var(--wheat-dark);
    border-color: var(--wheat-dark);
    color: var(--white);
}

.btn-outline {
    border-color: var(--forest);
    color: var(--forest);
    background: transparent;
}

.btn-outline:hover {
    background: var(--forest);
    color: var(--cream);
}

.btn-outline-light {
    border-color: rgba(244, 239, 228, 0.55);
    color: var(--cream);
    background: transparent;
}

.btn-outline-light:hover {
    background: var(--cream);
    color: var(--forest);
    border-color: var(--cream);
}

.btn-ghost {
    background: transparent;
    color: var(--forest);
    border-color: var(--line);
}

.btn-ghost:hover {
    border-color: var(--forest);
}

.btn-lg {
    padding: 16px 32px;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Logo
   ============================================ */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 58px;
    width: auto;
    max-width: 320px;
    object-fit: contain;
    object-position: left center;
}

.logo-img--preloader {
    height: 72px;
    max-width: 340px;
}

.logo--footer {
    display: inline-flex;
    background: transparent;
    padding: 0;
    margin-bottom: 18px;
}

.logo--footer .logo-img {
    height: 52px;
    max-width: 280px;
}

/* ============================================
   Header
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.header.scrolled {
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px rgba(18, 38, 30, 0.06);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--forest);
    text-decoration: none;
    font-weight: 450;
    font-size: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 1px;
    background: var(--wheat-dark);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: 0;
    padding: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--forest);
    transition: var(--transition);
}

.mobile-menu {
    position: fixed;
    inset: 0;
    background: var(--forest-deep);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
    padding: 24px;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav ul li {
    margin-bottom: 22px;
}

.mobile-nav ul li a {
    color: var(--cream);
    font-family: 'Fraunces', serif;
    font-size: 32px;
    text-decoration: none;
}

.mobile-nav ul li a:hover {
    color: var(--wheat);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
}

.mobile-actions .btn-ghost {
    color: var(--cream);
    border-color: rgba(244, 239, 228, 0.3);
}

/* ============================================
   Hero
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--forest);
}

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

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(18, 38, 30, 0.92) 0%, rgba(18, 38, 30, 0.72) 42%, rgba(18, 38, 30, 0.28) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
    padding: 140px 64px 100px;
    color: var(--cream);
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wheat);
    margin-bottom: 22px;
}

.hero-title {
    font-size: clamp(42px, 5.4vw, 72px);
    color: var(--cream);
    margin-bottom: 24px;
    font-weight: 500;
}

.hero-title em {
    color: var(--wheat);
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(244, 239, 228, 0.78);
    max-width: 480px;
    margin-bottom: 36px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.scroll-indicator {
    position: absolute;
    left: 64px;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(244, 239, 228, 0.7);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    z-index: 2;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.scroll-indicator.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes drift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   Stats band
   ============================================ */
.stats-band {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    padding: 0;
}

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

.stat {
    padding: 36px 16px;
    text-align: center;
    border-right: 1px solid var(--line);
}

.stat:last-child {
    border-right: 0;
}

.stat-number {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 110px 0;
}

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

.products .section-header,
.services .section-header,
.testimonials .section-header {
    text-align: left;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--wheat-dark);
    margin-bottom: 14px;
    padding: 0;
    background: none;
}

.section-title {
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 500;
    margin-bottom: 14px;
}

.section-subtitle {
    color: var(--muted);
    font-size: 16px;
}

/* ============================================
   About
   ============================================ */
.about {
    background: var(--paper);
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 64px;
    align-items: center;
}

.about-media {
    position: relative;
}

.about-photo {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: center;
}

.experience-badge {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 104px;
    height: 104px;
    background: var(--forest);
    color: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--wheat);
    z-index: 1;
}

.experience-badge .years {
    font-family: 'Fraunces', serif;
    font-size: 36px;
    font-weight: 600;
    line-height: 1;
    color: var(--wheat);
}

.experience-badge .text {
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: center;
    margin-top: 4px;
}

.about-text {
    color: var(--muted);
    margin-bottom: 18px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
    margin: 28px 0 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    border: 1px solid var(--wheat);
    color: var(--forest);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.feature-icon .icon {
    width: 14px;
    height: 14px;
}

/* ============================================
   Products
   ============================================ */
.products {
    background: var(--cream);
}

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

.product-card {
    background: var(--paper);
    border: 1px solid var(--line);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.product-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #ece4d4;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.06);
}

.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: var(--forest);
    color: var(--cream);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.product-content {
    padding: 24px;
}

.product-content h3 {
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-content p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.product-details span {
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
}

.product-details .icon {
    color: var(--wheat-dark);
}

/* ============================================
   Services
   ============================================ */
.services {
    background: var(--forest);
    color: var(--cream);
}

.services .section-title,
.services .section-tag {
    color: var(--cream);
}

.services .section-title em {
    color: var(--wheat);
}

.services .section-subtitle {
    color: rgba(244, 239, 228, 0.7);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(244, 239, 228, 0.12);
    border: 1px solid rgba(244, 239, 228, 0.12);
}

.service-card {
    padding: 36px 28px;
    background: var(--forest);
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    background: var(--forest-mid);
}

.service-index {
    position: absolute;
    top: 20px;
    right: 22px;
    font-family: 'Fraunces', serif;
    font-size: 13px;
    color: var(--wheat);
    letter-spacing: 0.08em;
}

.service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(196, 161, 90, 0.45);
    display: grid;
    place-items: center;
    margin-bottom: 22px;
    color: var(--wheat);
}

.service-icon .icon {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-size: 22px;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 10px;
}

.service-card p {
    color: rgba(244, 239, 228, 0.7);
    font-size: 14px;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials {
    background: var(--paper);
}

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

.testimonial-card {
    background: var(--cream);
    padding: 32px;
    border-top: 3px solid var(--wheat);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
}

.testimonial-content .icon-quote {
    color: var(--wheat);
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
}

.testimonial-content p {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.45;
    color: var(--ink);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    background: var(--forest);
    color: var(--cream);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    flex-shrink: 0;
}

.author-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 13px;
    color: var(--muted);
}

/* ============================================
   Contact
   ============================================ */
.contact {
    background: var(--cream);
}

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

.contact-text {
    color: var(--muted);
    margin: 16px 0 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--forest);
    flex-shrink: 0;
    background: var(--paper);
}

.contact-icon .icon {
    width: 20px;
    height: 20px;
}

.contact-item h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.contact-item p,
.contact-item a {
    color: var(--ink);
    text-decoration: none;
    font-size: 15px;
}

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

.phone-line {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.phone-line a:not(.whatsapp-btn) {
    color: var(--ink);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    color: var(--whatsapp);
    flex-shrink: 0;
}

.whatsapp-btn .icon {
    width: 18px;
    height: 18px;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
}

.contact-form-wrapper {
    background: var(--forest);
    padding: 40px;
    color: var(--cream);
}

.contact-form {
    position: relative;
}

.contact-form h3 {
    font-size: 28px;
    color: var(--cream);
    font-weight: 500;
    margin-bottom: 24px;
}

.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(244, 239, 228, 0.65);
}

.modal .form-group label {
    color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid rgba(244, 239, 228, 0.18);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 15px;
    background: rgba(18, 38, 30, 0.35);
    color: var(--cream);
    transition: var(--transition);
}

.modal .form-group input {
    background: var(--paper);
    color: var(--ink);
    border-color: var(--line);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--wheat);
}

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

.form-group option {
    color: var(--ink);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--forest-deep);
    padding: 72px 0 0;
    color: var(--cream);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-col .logo {
    margin-bottom: 18px;
}

.footer-col p {
    color: rgba(244, 239, 228, 0.65);
    font-size: 14px;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(244, 239, 228, 0.16);
    display: grid;
    place-items: center;
    color: var(--cream);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a .icon {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    border-color: var(--wheat);
    color: var(--wheat);
}

.footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--wheat);
    margin-bottom: 18px;
    font-weight: 500;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(244, 239, 228, 0.7);
    text-decoration: none;
    font-size: 14px;
}

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

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid rgba(244, 239, 228, 0.16);
    background: transparent;
    color: var(--cream);
    font-family: inherit;
    font-size: 14px;
}

.newsletter-form input::placeholder {
    color: rgba(244, 239, 228, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(244, 239, 228, 0.1);
    padding: 22px 0;
}

.footer-bottom p {
    color: rgba(244, 239, 228, 0.45);
    font-size: 13px;
    margin: 0;
}

/* ============================================
   Preloader / Modal / Float
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--paper);
    display: grid;
    place-items: center;
    z-index: 10001;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    color: var(--forest);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-content .logo-img {
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.75; }
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 38, 30, 0.78);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--paper);
    padding: 40px;
    max-width: 440px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 28px;
    color: var(--muted);
    text-decoration: none;
}

.modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.modal-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.modal-logo .logo-img {
    height: 52px;
}

.modal-header h2 {
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 8px;
}

.modal-header p {
    color: var(--muted);
    font-size: 14px;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 46px;
    height: 46px;
    background: var(--forest);
    color: var(--cream);
    border: 1px solid var(--wheat);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: var(--transition);
    z-index: 999;
    display: grid;
    place-items: center;
    padding: 0;
}

.scroll-top-btn .icon {
    width: 18px;
    height: 18px;
}

.scroll-top-btn.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.floating-whatsapp {
    position: fixed;
    bottom: 92px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.35);
    z-index: 999;
    text-decoration: none;
    transition: var(--transition);
}

.floating-whatsapp .icon-whatsapp {
    width: 30px;
    height: 30px;
    display: block;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 14px 18px;
    background: var(--forest);
    color: var(--cream);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 400px;
    box-shadow: var(--shadow);
}

.notification.success { background: var(--forest); }
.notification.error { background: #7a2e24; }

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification-close {
    background: none;
    border: none;
    color: inherit;
    cursor: pointer;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .hero-content {
        padding: 120px 32px 80px;
    }

    .scroll-indicator {
        left: 32px;
    }
}

@media (max-width: 992px) {
    .navbar {
        padding: 14px 20px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 40px;
    }

    .about-grid,
    .contact-grid,
    .products-grid,
    .services-grid,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

    .stat {
        border-bottom: 1px solid var(--line);
    }

    .stat:nth-child(2n) {
        border-right: 0;
    }

    .about-media {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 72px 0;
    }

    .products-grid,
    .services-grid,
    .testimonials-grid,
    .about-grid,
    .contact-grid,
    .footer-grid,
    .stats-row {
        grid-template-columns: 1fr;
    }

    .stat {
        border-right: 0;
    }

    .experience-badge {
        left: 12px;
        bottom: 12px;
        top: auto;
        width: 88px;
        height: 88px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .newsletter-form {
        flex-direction: column;
    }
}
