    :root {
    --color-bg: #F8FAF9;
    --color-primary: #2C5F3D;
    --color-secondary: #6B8E7A;
    --color-accent: #C97D3A;
    --color-accent-light: #E8A87C;
    --color-text: #1F2E24;
    --color-text-light: #5A6B5F;
    --color-white: #ffffff;
    --color-overlay: rgba(44, 95, 61, 0.85);
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
    --space-xs: 0.4rem;
    --space-sm: 0.8rem;
    --space-md: 1.2rem;
    --space-lg: 1.8rem;
    --space-xl: 2.5rem;
    --space-xxl: 3.5rem;
    --radius-sm: 0.3rem;
    --radius-md: 0.6rem;
    --radius-lg: 1.2rem;
    --shadow-sm: 0 1px 3px rgba(44, 95, 61, 0.08);
    --shadow-md: 0 3px 6px rgba(44, 95, 61, 0.12);
    --shadow-lg: 0 6px 12px rgba(44, 95, 61, 0.18);
    --transition: 0.25s ease;
    }

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

html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

    html {
    font-size: 16px;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    }

    body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-bg);
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    }

    body.menu-open {
    overflow: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: var(--space-md);
    }

    h1 {
    font-size: clamp(1.4rem, 3.2vw, 2rem);
    font-weight: 600;
    }

    h2 {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    font-weight: 600;
    }

    h3 {
    font-size: clamp(1.1rem, 2.4vw, 1.35rem);
    font-weight: 600;
    }

    h4 {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    font-weight: 600;
    }

    p {
    margin-bottom: var(--space-md);
    color: var(--color-text-light);
    font-size: clamp(0.9rem, 2vw, 1rem);
    }

    a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color var(--transition);
    }

    a:hover {
    color: var(--color-accent);
    }

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

    .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    box-sizing: border-box;
    }

    .section {
    padding: var(--space-xl) 0;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    }

    .section-title {
    text-align: center;
    margin-bottom: var(--space-lg);
    }

    .section-title h2 {
    margin-bottom: var(--space-sm);
    }

    .section-title p {
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    max-width: 600px;
    margin: 0 auto;
    }

    .header {
    background: linear-gradient(135deg, var(--color-white) 0%, #F5F8F6 100%);
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1000;
    padding: var(--space-xs) 0;
    border-bottom: 1px solid rgba(44, 95, 61, 0.08);
    }

    .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-xs) var(--space-md);
    min-height: 50px;
    }

    .logo {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 2.2vw, 1.3rem);
    font-weight: 600;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    letter-spacing: -0.02em;
    }

    .logo::before {
    content: "🌳";
    font-size: 1.2em;
    }

    .nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    align-items: center;
    }

    .nav-menu li a {
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    font-weight: 500;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    }

    .nav-menu li a:hover {
    background-color: rgba(201, 125, 58, 0.1);
    color: var(--color-accent);
    }

    .menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 1002;
    }

    body.menu-open .menu-toggle {
    display: none;
    }

    .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--color-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: transform var(--transition);
    z-index: 1001;
    padding: var(--space-xl) var(--space-md);
    overflow-y: auto;
    }

    .mobile-menu.active {
    transform: translateY(0);
    }

    .mobile-menu-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--color-primary);
    cursor: pointer;
    padding: var(--space-xs);
    }

    .mobile-nav {
    list-style: none;
    margin-top: var(--space-xl);
    }

    .mobile-nav li {
    margin-bottom: var(--space-md);
    }

    .mobile-nav li a {
    font-size: 1.1rem;
    font-weight: 500;
    display: block;
    padding: var(--space-sm) 0;
    }

    .hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: var(--space-xxl) var(--space-md);
    overflow: hidden;
    }

    .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--color-overlay) 0%, rgba(44, 95, 61, 0.75) 100%);
    z-index: 1;
    }

    .hero-overlay {
    display: none;
    }

    .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--color-white);
    max-width: 800px;
    margin: 0 auto;
    }

    .hero-content h1 {
    color: var(--color-white);
    margin-bottom: var(--space-md);
    font-size: clamp(1.6rem, 4.2vw, 2.4rem);
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    .hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    margin-bottom: var(--space-lg);
    }

    .hero-animation {
    position: absolute;
    bottom: 20%;
    right: 10%;
    width: 80px;
    height: 80px;
    z-index: 3;
    }

    .hero-animation::before {
    content: "🍃";
    font-size: 4rem;
    animation: float 3s ease-in-out infinite;
    display: block;
    }

    @keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    }

    .hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
    }

    .btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    text-align: center;
    border-radius: var(--radius-md);
    transition: all var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    margin-top: var(--space-md);
    }

    .btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: var(--color-white);
    border-color: var(--color-accent);
    box-shadow: 0 2px 8px rgba(201, 125, 58, 0.3);
    }

    .btn-primary:hover {
    background: linear-gradient(135deg, var(--color-primary) 0%, #3A7A4F 100%);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 4px 12px rgba(44, 95, 61, 0.4);
    transform: translateY(-2px);
    }

    .btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
    }

    .btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    }

    .card {
    background: linear-gradient(135deg, var(--color-white) 0%, #FBFCFB 100%);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    transition: all var(--transition);
    border: 1px solid rgba(44, 95, 61, 0.06);
    }

    .card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 125, 58, 0.2);
    }

    .card-title {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    margin-bottom: var(--space-sm);
    color: var(--color-primary);
    font-weight: 600;
    }

    .card-content {
    font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
    }

    .features {
    background-color: var(--color-white);
    padding: var(--space-xl) 0;
    }

    .feature-item {
    text-align: center;
    padding: var(--space-md);
    }

    .feature-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
    display: block;
    }

    .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    }

    .service-card {
    background: linear-gradient(135deg, var(--color-white) 0%, #F8FAF9 100%);
    border-left: 3px solid var(--color-accent);
    position: relative;
    overflow: hidden;
    }

    .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    transition: width var(--transition);
    pointer-events: none;
    z-index: 0;
    }

.service-card:hover::before {
  width: 100%;
  opacity: 0.03;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-md) var(--radius-md) 0 0;
  margin: 0 0 var(--space-md) 0;
  display: block;
  transition: transform var(--transition);
}

.service-card:hover .service-card-image {
  transform: scale(1.05);
}

    .pricing-table {
    overflow-x: auto;
    margin: var(--space-lg) 0;
    }

    .pricing-table-wrapper {
    overflow: auto;
    border-radius: var(--radius-md);
    }

    .pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--color-white);
    min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
    }

    .pricing-table th {
    background-color: var(--color-primary);
    color: var(--color-white);
    font-weight: 600;
    }

    .pricing-table tr:hover {
    background-color: #f5f5f5;
    }

    .price {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    font-weight: 700;
    color: var(--color-accent);
    }

    .contact-section {
    background-color: var(--color-white);
    padding: var(--space-xl) 0;
    }

    .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    }

    .contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    }

    .form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    }

    .form-group label {
    font-weight: 600;
    color: var(--color-primary);
    font-size: clamp(0.9rem, 2vw, 1rem);
    }

    .form-group input,
    .form-group textarea {
    padding: var(--space-sm);
    border: 2px solid #e0e0e0;
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: border-color var(--transition);
    }

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

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

    .checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs);
    }

    .checkbox-group input[type="checkbox"] {
    margin-top: 0.25rem;
    }

    .checkbox-group label {
    font-weight: 400;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    }

    .map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 400px;
    }

    .map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    }

    .footer {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-xl) 0 var(--space-md);
    margin-top: var(--space-xxl);
    }

    .footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
    }

    .footer-section h4 {
    color: var(--color-white);
    margin-bottom: var(--space-sm);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    }

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

    .footer-section ul li {
    margin-bottom: var(--space-xs);
    }

    .footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    transition: color var(--transition);
    }

    .footer-section ul li a:hover {
    color: var(--color-accent);
    }

    .footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    }

    .legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-xl) var(--space-md);
    }

    .legal-page h1 {
    margin-bottom: var(--space-md);
    font-size: clamp(1.4rem, 3.2vw, 1.8rem);
    font-weight: 600;
    }

    .legal-page h2 {
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
    font-size: clamp(1.2rem, 2.8vw, 1.5rem);
    font-weight: 600;
    }

    .legal-page p {
    margin-bottom: var(--space-md);
    }

    .legal-page ul,
    .legal-page ol {
    margin-left: var(--space-lg);
    margin-bottom: var(--space-md);
    }

    .legal-page li {
    margin-bottom: var(--space-xs);
    }

    .home-button {
    display: inline-block;
    margin-top: var(--space-lg);
    padding: var(--space-sm) var(--space-lg);
    background-color: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-md);
    transition: all var(--transition);
    }

    .home-button:hover {
    background-color: var(--color-accent);
    color: var(--color-white);
    }

    .thank-you-page,
    .error-page {
    text-align: center;
    padding: var(--space-xxl) var(--space-md);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    }

    .thank-you-page h1,
    .error-page h1 {
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    margin-bottom: var(--space-md);
    font-weight: 600;
    }

    .thank-you-page p,
    .error-page p {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    max-width: none;
    margin-bottom: var(--space-md);
    }

    .privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: var(--space-md);
    box-shadow: var(--shadow-lg);
    z-index: 2000;
    transform: translateY(100%);
    transition: transform var(--transition);
    }

    .privacy-popup.active {
    transform: translateY(0);
    }

    .privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    flex-wrap: wrap;
    }

    .privacy-popup-text {
    flex: 1;
    min-width: 250px;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    }

    .privacy-popup-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    }

    .privacy-popup-btn {
    padding: var(--space-xs) var(--space-md);
    border: 2px solid var(--color-white);
    border-radius: var(--radius-md);
    background-color: transparent;
    color: var(--color-white);
    cursor: pointer;
    font-size: clamp(0.85rem, 1.8vw, 0.95rem);
    transition: all var(--transition);
    }

    .privacy-popup-btn:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    }

    .privacy-popup-btn.accept {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    }

    .privacy-popup-btn.accept:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    }

    .seasonal-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    background-color: var(--color-accent);
    color: var(--color-white);
    border-radius: var(--radius-sm);
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    font-weight: 600;
    margin-bottom: var(--space-md);
    }

    .trust-badges {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--space-lg);
    }

    .trust-badge {
    text-align: center;
    padding: var(--space-sm);
    }

    .trust-badge-icon {
    font-size: 2rem;
    margin-bottom: var(--space-xs);
    display: block;
    }

    .trust-badge-text {
    font-size: clamp(0.8rem, 1.6vw, 0.9rem);
    color: rgba(255, 255, 255, 0.9);
    }

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

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 50vh;
    }

    .hero-animation {
        width: 60px;
        height: 60px;
        bottom: 15%;
        right: 5%;
    }

    .hero-animation::before {
        font-size: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-card-image {
        height: 180px;
        width: 100%;
    }

    .privacy-popup-content {
        flex-direction: column;
        text-align: center;
    }

    .privacy-popup-buttons {
        width: 100%;
        justify-content: center;
    }
    }

    @media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .section {
        padding: var(--space-lg) 0;
    }

    .hero {
        min-height: 40vh;
        padding: var(--space-lg) var(--space-sm);
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        overflow: hidden;
    }

    .service-card-image {
        height: 160px;
        width: 100%;
    }
}

.unique-section {
  position: relative;
  overflow: hidden;
}

.unique-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(201, 125, 58, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.accent-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-sm);
}

.asymmetric-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--space-xl);
  align-items: center;
}

.asymmetric-layout.reverse {
  grid-template-columns: 1.2fr 1fr;
}

.asymmetric-layout > div:first-child {
  padding-right: var(--space-lg);
}

.asymmetric-layout.reverse > div:first-child {
  padding-right: 0;
  padding-left: var(--space-lg);
  order: 2;
}

.asymmetric-layout.reverse > div:last-child {
  order: 1;
}

.decorative-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.shape-1 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(201, 125, 58, 0.08) 0%, transparent 100%);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  top: 10%;
  left: -5%;
  animation: float-shape 8s ease-in-out infinite;
}

.shape-2 {
  width: 80px;
  height: 80px;
  background: linear-gradient(225deg, rgba(44, 95, 61, 0.06) 0%, transparent 100%);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 15%;
  right: -3%;
  animation: float-shape 10s ease-in-out infinite reverse;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(20px, -20px) rotate(120deg);
  }
  66% {
    transform: translate(-15px, 15px) rotate(240deg);
  }
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: stretch;
}

.split-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-xl);
}

.split-section-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  min-height: 300px;
}

.staggered-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.staggered-grid > *:nth-child(odd) {
  margin-top: var(--space-lg);
}

.staggered-grid > *:nth-child(even) {
  margin-top: 0;
}

.zigzag-section {
  position: relative;
}

.zigzag-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--color-bg);
  clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  z-index: 1;
}

.zigzag-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--color-bg);
  clip-path: polygon(5% 0, 95% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.feature-card-unique {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
  border: 2px solid transparent;
  transition: all var(--transition);
  overflow: hidden;
}

.feature-card-unique::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  transition: width var(--transition);
}

.feature-card-unique:hover {
  border-color: var(--color-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card-unique:hover::before {
  width: 100%;
  opacity: 0.05;
}

.number-badge {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto var(--space-md);
  box-shadow: 0 4px 12px rgba(201, 125, 58, 0.3);
  position: relative;
}

.number-badge::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  opacity: 0.2;
  z-index: -1;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.1;
  }
}

.overlay-pattern {
  position: relative;
}

.overlay-pattern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(44, 95, 61, 0.02) 10px, rgba(44, 95, 61, 0.02) 20px);
  pointer-events: none;
  z-index: 0;
}

.overlay-pattern > * {
  position: relative;
  z-index: 1;
}

.text-highlight {
  position: relative;
  display: inline-block;
}

.text-highlight::after {
  content: '';
  position: absolute;
  bottom: 0.2em;
  left: 0;
  right: 0;
  height: 0.3em;
  background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
  opacity: 0.3;
  z-index: -1;
  border-radius: var(--radius-sm);
}

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

  .asymmetric-layout > div:first-child,
  .asymmetric-layout.reverse > div:first-child {
    padding: 0;
    order: 1;
  }

  .asymmetric-layout.reverse > div:last-child {
    order: 2;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .staggered-grid > *:nth-child(odd),
  .staggered-grid > *:nth-child(even) {
    margin-top: 0;
  }
}

    @media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .header-content {
        padding: var(--space-xs) var(--space-sm);
    }

    .mobile-menu {
        max-width: 100%;
    }
    }

