    :root {
      --bg-primary: #fafbfa;
      --bg-secondary: #ffffff;
      --bg-accent: linear-gradient(135deg, #2f4f3f 0%, #3d6550 100%);
      --primary: #2f4f3f;
      --accent-green: #afca1d;
      --accent-green-dark: #8fa815;
      --primary-dark: #1f3329;
      --accent: #afca1d;
      --accent-light: #d4e57a;
      --text-main: #1a1a1a;
      --text-muted: #5a5a5a;
      --text-light: #888888;
      --border-light: rgba(0, 0, 0, 0.08);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 20px;
      --radius-xl: 28px;
      --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
      --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
      --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      background: var(--bg-primary);
      color: var(--text-main);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

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

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

    .page {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 24px 80px;
    }

    .container {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 28px;
    }

    /* STICKY HEADER */
    header {
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 251, 250, 0.96) 100%);
      backdrop-filter: blur(16px) saturate(180%);
      box-shadow: 0 2px 16px rgba(47, 79, 63, 0.08), 0 1px 0 rgba(209, 160, 103, 0.1);
      border-bottom: 1px solid rgba(47, 79, 63, 0.05);
      margin-bottom: 48px;
    }

    header .header-inner {
      max-width: 1320px;
      margin: 0 auto;
      padding: 18px 28px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .logo img {
      max-height: 56px;
      height: auto;
      transition: transform 0.3s ease;
    }

    .logo:hover img {
      transform: scale(1.05);
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 32px;
      padding: 0;
      margin: 0;
      font-size: 14px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    nav a {
      color: var(--text-main);
      position: relative;
      padding: 8px 0;
      transition: color 0.2s ease;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }

    nav a:hover {
      color: var(--primary);
    }

    /* DROPDOWN MENU */
    .has-dropdown {
      position: relative;
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      background: #fff;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-lg);
      padding: 20px;
      margin-top: 12px;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
      pointer-events: none;
      min-width: 600px;
      border: 1px solid var(--border-light);
    }

    .has-dropdown:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: all;
      margin-top: 8px;
    }

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

    .dropdown-column {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .dropdown-item {
      padding: 10px 14px;
      color: var(--text-main);
      font-size: 13px;
      font-weight: 500;
      text-transform: none;
      letter-spacing: 0;
      border-radius: var(--radius-sm);
      transition: all 0.2s ease;
    }

    .dropdown-item:hover {
      background: var(--bg-primary);
      color: var(--primary);
      transform: translateX(4px);
    }

    /* MOBILE SUBMENU */
    .has-submenu {
      display: flex;
      flex-direction: column;
    }

    .submenu-toggle {
      background: transparent;
      border: none;
      color: #fff;
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      cursor: pointer;
      padding: 12px 24px;
      position: relative;
      transition: all 0.3s ease;
      text-align: center;
      width: 100%;
    }

    .submenu-toggle::after {
      content: '▼';
      margin-left: 8px;
      font-size: 11px;
      transition: transform 0.3s ease;
      opacity: 0.8;
    }
    
    .submenu-toggle:hover {
      color: var(--accent-green);
    }

    .submenu-toggle.active {
      color: var(--accent-green);
    }

    .submenu-toggle.active::after {
      transform: rotate(180deg);
    }

    .submenu {
      list-style: none;
      padding: 0;
      margin: 0;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background: rgba(255, 255, 255, 0.05);
      border-radius: 8px;
    }

    .submenu.active {
      max-height: 60vh; overflow-y: auto; -webkit-overflow-scrolling: touch;
      padding: 8px 0;
    }

    .submenu li {
      margin: 0;
    }

    .submenu a {
      display: block;
      padding: 12px 20px;
      color: rgba(255, 255, 255, 0.85);
      font-size: 15px;
      font-weight: 500;
      text-transform: none;
      border-left: 3px solid transparent;
      transition: all 0.2s ease;
    }

    .submenu a:hover,
    .submenu a:focus {
      color: #fff;
      background: rgba(255, 255, 255, 0.08);
      border-left-color: var(--accent-green);
      padding-left: 24px;
    }

    /* HAMBURGER MENU TOGGLE */
    .mobile-menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: space-between;
      width: 28px;
      height: 22px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 1001;
      transition: transform 0.3s ease;
    }

    .mobile-menu-toggle span {
      display: block;
      width: 100%;
      height: 3px;
      background: var(--primary);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: translateY(9.5px) rotate(45deg);
    }

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

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: translateY(-9.5px) rotate(-45deg);
    }

    /* MOBILE MENU OVERLAY */
    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: linear-gradient(135deg, rgba(47, 79, 63, 0.98) 0%, rgba(31, 51, 41, 0.98) 100%);
      backdrop-filter: blur(20px);
      z-index: 1000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }

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

    .mobile-menu nav {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 24px;
    }

    .mobile-menu nav ul {
      flex-direction: column;
      align-items: center;
      gap: 20px;
    }

    .mobile-menu nav a {
      color: #ffffff;
      font-size: 24px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      padding: 12px 24px;
      transition: all 0.3s ease;
      position: relative;
    }

    .mobile-menu nav a::after {
      background: var(--accent);
      height: 3px;
    }

    .mobile-menu nav a:hover {
      color: var(--accent);
      transform: translateX(8px);
    }

    .mobile-menu .lang-switcher {
      margin-top: 32px;
    }

    .mobile-menu .lang-current {
      font-size: 16px;
      padding: 14px 24px;
    }

    /* LANGUAGE SWITCHER - DROPDOWN */
    .lang-switcher {
      position: relative;
    }

    .lang-current {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
      color: #fff;
      border-radius: 8px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: var(--shadow-sm);
      border: none;
      max-width: 120px;
      min-width: 80px;
      overflow: hidden;
    }
    
    .lang-current img {
      max-width: 20px !important;
      max-height: 15px !important;
      width: 20px !important;
      height: 15px !important;
      flex-shrink: 0 !important;
      object-fit: cover !important;
    }

    .lang-current:hover {
      background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    .lang-flag {
      font-size: 18px;
      line-height: 1;
    }

    .lang-arrow {
      font-size: 10px;
      transition: transform 0.3s ease;
      margin-left: 4px;
    }

    .lang-switcher.open .lang-arrow {
      transform: rotate(180deg);
    }

    .lang-dropdown {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-10px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      min-width: 180px;
      z-index: 1000;
      border: 1px solid var(--border-light);
    }

    .lang-switcher.open .lang-dropdown {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .lang-option {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      cursor: pointer;
      transition: all 0.2s ease;
      font-size: 14px;
      color: var(--text-main);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .lang-option:last-child {
      border-bottom: none;
    }

    .lang-option:hover {
      background: rgba(47, 79, 63, 0.05);
      padding-left: 20px;
    }

    .lang-option.active {
      background: linear-gradient(90deg, rgba(47, 79, 63, 0.08) 0%, rgba(47, 79, 63, 0.03) 100%);
      color: var(--primary);
      font-weight: 600;
    }

    .lang-option .lang-flag {
      font-size: 20px;
    }

    .lang-option .lang-label {
      flex: 1;
    }

    .lang-option .lang-code {
      font-size: 12px;
      color: var(--text-light);
      text-transform: uppercase;
      font-weight: 500;
      cursor: default;
    }

    .lang-coming-soon {
      font-size: 11px;
      color: var(--accent);
      font-style: italic;
      font-weight: 400;
    }

    /* HERO */
    .hero {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 64px;
      padding: 40px 0 64px;
      align-items: start;
    }

    .hero-content {
      max-width: 1320px;
      margin: 0 auto;
      padding: 0 28px;
      width: 100%;
    }

    .hero-text {
      max-width: 100%;
    }

    .hero h1 {
      font-size: clamp(32px, 5vw, 48px);
      line-height: 1.2;
      margin: 0 0 20px;
      color: var(--primary);
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .hero-lead {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 28px;
      line-height: 1.7;
    }

    .hero-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 32px;
    }

    .tag {
      font-size: 11px;
      padding: 8px 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(209, 160, 103, 0.15), rgba(209, 160, 103, 0.08));
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-weight: 600;
      border: 1px solid rgba(209, 160, 103, 0.2);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 20px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 28px;
      border-radius: 999px;
      border: none;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      white-space: nowrap;
      position: relative;
      overflow: hidden;
    }

    .btn::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 0;
      height: 0;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      transform: translate(-50%, -50%);
      transition: width 0.6s, height 0.6s;
    }

    .btn:hover::before {
      width: 300px;
      height: 300px;
    }

    .btn-primary {
      background: linear-gradient(135deg, #2f4f3f 0%, #afca1d 100%);
      color: #fff;
      box-shadow: var(--shadow-md);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, #afca1d 0%, #8fa815 100%);
      color: #fff;
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .btn-secondary {
      background: var(--bg-secondary);
      border: 2px solid var(--primary);
      color: var(--primary);
      box-shadow: var(--shadow-sm);
    }

    .btn-secondary:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      padding: 10px 20px;
      font-weight: 600;
      font-size: 13px;
    }

    .btn-outline:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: #fff;
      transform: translateY(-2px);
    }

    .btn-sm {
      padding: 10px 20px;
      font-size: 13px;
      font-weight: 600;
    }

    .hero-meta {
      font-size: 14px;
      color: var(--text-light);
      line-height: 1.6;
    }

    .hero-visual {
      position: relative;
      width: 100%;
    }

    .hero-contact-card {
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, #ffffff 0%, #f5f8f6 100%);
      box-shadow: var(--shadow-lg);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 24px;
      border: 1px solid var(--border-light);
      width: 100%;
    }

    .hero-contact-card h2 {
      font-size: 22px;
      color: var(--primary);
      margin: 0 0 8px;
      font-weight: 700;
      line-height: 1.3;
    }

    .hero-contact-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0 0 8px;
      line-height: 1.6;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-form input,
    .contact-form textarea {
      padding: 13px 16px;
      border: 2px solid var(--border-light);
      border-radius: var(--radius-md);
      font-size: 14px;
      font-family: inherit;
      transition: all 0.2s ease;
      background: #fff;
      width: 100%;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(47, 79, 63, 0.1);
    }

    .contact-form textarea {
      resize: vertical;
      min-height: 100px;
      line-height: 1.5;
    }

    .contact-form button {
      margin-top: 4px;
    }

    .contact-info {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding-top: 20px;
      border-top: 1px solid var(--border-light);
      font-size: 13px;
    }

    .contact-info a {
      color: var(--primary);
      font-weight: 600;
    }

    @media (min-width: 768px) {
      .contact-info {
        flex-direction: row;
        gap: 32px;
        justify-content: center;
      }
    }

    /* PRODUCT GRID */
    .section {
      margin-top: 64px;
      padding: 0;
    }

    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title {
      font-size: clamp(32px, 4vw, 40px);
      margin: 0 0 16px;
      color: var(--primary);
      font-weight: 700;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 680px;
      margin: 0 auto;
      line-height: 1.6;
    }

    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 28px;
    }

    .product-card {
      background: var(--bg-secondary);
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-sm);
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid var(--border-light);
      position: relative;
      overflow: hidden;
    }

    .product-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--bg-accent);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .product-card:hover::before {
      transform: scaleX(1);
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
      border-color: rgba(47, 79, 63, 0.15);
    }

    .product-image {
      border-radius: var(--radius-md);
      overflow: hidden;
      background: linear-gradient(135deg, #f0f3f1, #e8ecea);
      aspect-ratio: 4 / 3;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s ease;
    }

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

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

    .product-title {
      font-size: 18px;
      font-weight: 700;
      margin: 8px 0 0;
      color: var(--primary);
      line-height: 1.3;
    }

    .product-text {
      font-size: 14px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.6;
      flex-grow: 1;
    }

    .product-link {
      margin-top: auto;
      padding-top: 8px;
      font-size: 13px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 700;
      color: var(--accent);
      transition: gap 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .product-link::after {
      content: '→';
      transition: transform 0.3s ease;
    }

    .product-link:hover::after {
      transform: translateX(4px);
    }
    
    .product-actions {
      margin-top: auto;
      padding-top: 8px;
      display: flex;
      gap: 8px;
      align-items: stretch;
      flex-wrap: nowrap;
    }
    
    .product-actions .btn {
      flex: 1;
      white-space: nowrap;
      text-align: center;
      justify-content: center;
    }

    /* WHY US */
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 28px;
    }

    .feature-card {
      background: var(--bg-secondary);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-md);
      font-size: 14px;
      line-height: 1.6;
      transition: all 0.3s ease;
      border: 1px solid var(--border-light);
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .feature-card h3 {
      font-size: 18px;
      margin: 0 0 12px;
      color: var(--primary);
      font-weight: 700;
      line-height: 1.3;
    }

    .feature-card p {
      margin: 0;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* ABOUT */
    .about {
      background: linear-gradient(135deg, #ffffff 0%, #f5f8f6 100%);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
      padding: 48px;
      font-size: 15px;
      border: 1px solid var(--border-light);
    }

    .about h2 {
      margin: 0 0 20px;
      font-size: clamp(24px, 3vw, 30px);
      color: var(--primary);
      font-weight: 700;
      line-height: 1.3;
    }

    .about p {
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0 0 16px;
    }

    .contact-box-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
      margin-top: 20px;
    }

    @media (min-width: 768px) {
      .contact-box-grid {
        grid-template-columns: 2fr 1fr;
        gap: 32px;
        align-items: center;
      }
    }

    .contact-info-box {
      padding: 24px;
      background: rgba(255, 255, 255, 0.7);
      border-radius: 12px;
      border: 1px solid var(--border-light);
      line-height: 1.8;
    }

    .contact-visual {
      border-radius: 12px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-light);
      position: relative;
      min-height: 300px;
      background: #f5f8f6;
    }

    @media (max-width: 767px) {
      .contact-visual {
        min-height: 250px;
      }
    }

    .faq {
      margin-top: 48px;
    }

    .faq-title {
      font-size: 28px;
      margin: 0 0 28px;
      color: var(--primary);
      font-weight: 700;
      text-align: center;
      position: relative;
      padding-bottom: 16px;
    }

    .faq-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
      border-radius: 2px;
    }

    .faq-item {
      margin-bottom: 16px;
      background: #ffffff;
      border-radius: 12px;
      border: 1px solid var(--border-light);
      overflow: hidden;
      transition: all 0.3s ease;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    }

    .faq-item:hover {
      box-shadow: 0 4px 16px rgba(47, 79, 63, 0.08);
      border-color: rgba(47, 79, 63, 0.15);
    }

    .faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 20px 24px;
      cursor: pointer;
      user-select: none;
      background: linear-gradient(90deg, rgba(47, 79, 63, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
      transition: all 0.3s ease;
    }

    .faq-question:hover {
      background: linear-gradient(90deg, rgba(47, 79, 63, 0.05) 0%, rgba(209, 160, 103, 0.03) 100%);
    }

    .faq-item.active .faq-question {
      background: linear-gradient(90deg, rgba(47, 79, 63, 0.08) 0%, rgba(209, 160, 103, 0.05) 100%);
      border-bottom: 1px solid var(--border-light);
    }

    .faq-question h3 {
      font-size: 16px;
      margin: 0;
      color: var(--primary);
      font-weight: 600;
      line-height: 1.5;
      flex: 1;
    }

    .faq-icon {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary) 0%, #3d6550 100%);
      color: #fff;
      border-radius: 50%;
      font-size: 14px;
      font-weight: 700;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
      transform: rotate(45deg);
      background: linear-gradient(135deg, var(--accent-green) 0%, var(--accent-green-dark) 100%);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
      padding: 0 24px;
    }

    .faq-item.active .faq-answer {
      max-height: 500px;
      padding: 20px 24px 24px;
    }

    .faq-answer p {
      font-size: 15px;
      margin: 0;
      color: var(--text-muted);
      line-height: 1.7;
    }

    /* TRUST SIGNALS */
    .trust-signals {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 28px;
      margin-top: 56px;
      padding: 40px;
      background: linear-gradient(135deg, rgba(47, 79, 63, 0.03), rgba(209, 160, 103, 0.03));
      border-radius: var(--radius-xl);
      border: 1px solid var(--border-light);
    }

    .trust-item {
      text-align: center;
      padding: 16px;
    }

    .trust-item-icon {
      margin-bottom: 20px;
      line-height: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
    }

    .trust-item-icon img,
    .trust-item-icon svg {
      width: 64px;
      height: 64px;
      object-fit: contain;
      filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.12));
    }

    .trust-item h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--primary);
      margin: 0 0 8px;
      line-height: 1.3;
    }

    .trust-item p {
      font-size: 13px;
      color: var(--text-muted);
      margin: 0;
      line-height: 1.5;
    }

    /* VOODRILAUAD PAGE */
    .section-intro {
      font-size: 17px;
      line-height: 1.7;
      color: var(--text-muted);
      margin: 0 0 40px;
      max-width: 800px;
    }

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

    .spec-card {
      background: var(--bg-secondary);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

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

    .spec-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin: 0 0 16px;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--accent);
    }

    .spec-intro {
      font-size: 15px;
      color: var(--text-muted);
      margin: 0 0 16px;
      line-height: 1.6;
    }

    .spec-subtitle {
      font-size: 15px;
      font-weight: 600;
      color: var(--primary);
      margin: 16px 0 12px;
    }

    .spec-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .spec-list li {
      padding: 8px 0;
      border-bottom: 1px solid var(--border-light);
      font-size: 15px;
      color: var(--text);
    }

    .spec-list li:last-child {
      border-bottom: none;
    }

    .spec-note {
      font-size: 13px;
      color: #666;
      margin: 16px 0 0;
      font-style: italic;
      line-height: 1.5;
    }

    .cta-section {
      background: linear-gradient(135deg, var(--primary) 0%, #2a4537 100%);
      padding: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.05)"/></svg>');
      opacity: 0.4;
    }

    .cta-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .cta-text h2 {
      font-size: clamp(32px, 4.5vw, 44px);
      color: #fff;
      margin: 0 0 16px;
      font-weight: 700;
      line-height: 1.2;
    }

    .cta-lead {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.9);
      line-height: 1.6;
      margin: 0 0 32px;
    }

    .cta-benefits {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .cta-benefit {
      display: flex;
      align-items: center;
      gap: 12px;
      color: rgba(255, 255, 255, 0.95);
      font-size: 16px;
      line-height: 1.4;
    }

    .cta-benefit svg {
      flex-shrink: 0;
      color: var(--accent);
    }

    .cta-card {
      background: #fff;
      border-radius: 20px;
      padding: 40px 32px;
      text-align: center;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cta-card-header {
      width: 80px;
      height: 80px;
      margin: 0 auto 24px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .cta-card h3 {
      font-size: 24px;
      color: var(--primary);
      margin: 0 0 12px;
      font-weight: 700;
    }

    .cta-card p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.6;
      margin: 0 0 24px;
      opacity: 0.8;
    }

    .cta-card .btn {
      width: 100%;
      margin-bottom: 16px;
    }

    .cta-card-note {
      font-size: 14px;
      color: var(--text);
      margin: 0;
      opacity: 0.7;
    }

    .cta-card-note strong {
      color: var(--primary);
      font-weight: 600;
    }

    .btn-large {
      padding: 18px 40px;
      font-size: 17px;
      font-weight: 600;
    }

    .cta-box {
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .cta-box h2 {
      font-size: clamp(32px, 4vw, 40px);
      color: #fff;
      margin: 0 0 16px;
      font-weight: 700;
    }

    .cta-box p {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.9);
      margin: 0 0 32px;
      line-height: 1.7;
    }

    .cta-box .btn:not(.btn-primary):not(.btn-secondary):not(.btn-outline) {
      background: var(--accent);
      color: var(--primary);
      padding: 16px 40px;
      font-size: 17px;
      font-weight: 700;
      border-radius: var(--radius-md);
      text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    .cta-box .btn:not(.btn-primary):not(.btn-secondary):not(.btn-outline):hover {
      background: var(--accent-green-dark);
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    }

    /* BLOG STYLES */
    .blog-hero {
      background: linear-gradient(135deg, var(--primary) 0%, var(--accent-green) 100%);
      padding: 48px 0 40px;
    }

    .blog-hero .hero-text h1 {
      color: #fff;
    }

    .blog-hero .hero-subtitle {
      color: rgba(255, 255, 255, 0.95);
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
      gap: 32px;
    }

    .blog-card {
      background: #fff;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      border: 1px solid var(--border-light);
    }

    .blog-card:hover {
      box-shadow: var(--shadow-hover);
      transform: translateY(-4px);
    }

    .blog-card-image {
      position: relative;
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .blog-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

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

    .blog-category {
      position: absolute;
      top: 16px;
      left: 16px;
      background: var(--accent);
      color: var(--primary);
      padding: 6px 12px;
      border-radius: 20px;
      font-size: 13px;
      font-weight: 600;
    }

    .blog-card-content {
      padding: 24px;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--text);
      opacity: 0.7;
      margin-bottom: 12px;
    }

    .blog-card-title {
      margin: 0 0 12px;
      font-size: 22px;
      line-height: 1.3;
    }

    .blog-card-title a {
      color: var(--primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .blog-card-title a:hover {
      color: var(--accent);
    }

    .blog-card-excerpt {
      font-size: 15px;
      line-height: 1.6;
      color: var(--text);
      opacity: 0.8;
      margin: 0 0 16px;
    }

    .blog-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .blog-tag {
      display: inline-block;
      padding: 4px 10px;
      background: rgba(47, 79, 63, 0.08);
      border-radius: 12px;
      font-size: 13px;
      color: var(--primary);
      font-weight: 500;
    }

    .blog-read-more {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      font-size: 15px;
      transition: gap 0.3s ease;
    }

    .blog-read-more:hover {
      gap: 8px;
      color: var(--accent);
    }

    /* SINGLE BLOG POST */
    .blog-post-header {
      background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg) 100%);
      padding-bottom: 40px;
    }

    .blog-post-image {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto 40px;
      height: 500px;
      overflow: hidden;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
      position: relative;
    }

    .blog-post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }
    
    .blog-post-image:hover img {
      transform: scale(1.02);
    }

    .breadcrumbs {
      font-size: 14px;
      color: var(--text);
      opacity: 0.7;
      margin-bottom: 16px;
    }

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

    .breadcrumbs a:hover {
      color: var(--primary);
    }

    .breadcrumbs span {
      margin: 0 8px;
    }

    .blog-post-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 16px;
    }

    .blog-category-badge {
      display: inline-block;
      padding: 6px 16px;
      background: var(--accent);
      color: var(--primary);
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
    }

    .blog-post-title {
      font-size: clamp(32px, 5vw, 48px);
      line-height: 1.2;
      color: var(--primary);
      margin: 0 0 16px;
      font-weight: 700;
    }

    .blog-post-details {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 15px;
      color: var(--text);
      opacity: 0.7;
      margin-bottom: 32px;
    }

    .blog-post-content {
      max-width: 800px;
      margin: 0 auto 48px;
      padding: 48px 32px;
      font-size: 18px;
      line-height: 1.9;
      color: var(--text);
      background: #fff;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
    }

    .blog-post-content h3 {
      font-size: 28px;
      color: var(--primary);
      margin: 40px 0 20px;
      font-weight: 700;
      padding-bottom: 12px;
      border-bottom: 2px solid var(--bg-secondary);
    }
    
    .blog-post-content h3:first-child {
      margin-top: 0;
    }

    .blog-post-content h4 {
      font-size: 22px;
      color: var(--primary);
      margin: 32px 0 16px;
      font-weight: 600;
    }

    .blog-post-content p {
      margin: 0 0 24px;
      text-align: justify;
    }

    .blog-post-content ul,
    .blog-post-content ol {
      margin: 0 0 24px;
      padding-left: 32px;
    }

    .blog-post-content li {
      margin-bottom: 12px;
      line-height: 1.8;
    }

    .blog-post-content strong {
      color: var(--primary);
      font-weight: 700;
    }

    .blog-post-tags {
      max-width: 800px;
      margin: 0 auto 32px;
      padding: 28px 32px;
      background: linear-gradient(135deg, #f5f8f6 0%, #ffffff 100%);
      border-radius: var(--radius-lg);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .blog-post-tags h4 {
      font-size: 16px;
      color: var(--primary);
      margin: 0 0 12px;
      font-weight: 600;
    }

    .blog-tags-list {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .blog-post-footer {
      max-width: 800px;
      margin: 0 auto;
      padding: 32px 0;
      border-top: 1px solid var(--border-light);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .btn-back {
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: gap 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .btn-back:hover {
      gap: 8px;
      color: var(--accent);
    }

    .no-posts {
      text-align: center;
      padding: 64px 20px;
      color: var(--text);
      opacity: 0.7;
    }

    footer {
      margin-top: 64px;
      width: 100%;
      background: linear-gradient(135deg, #2f4f3f 0%, #1f3329 100%);
      position: relative;
      overflow: hidden;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--primary) 50%, var(--accent) 100%);
    }

    .footer-content {
      max-width: 1320px;
      margin: 0 auto;
      padding: 32px 32px 28px;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 32px;
      color: rgba(255, 255, 255, 0.9);
    }

    .footer-section h3 {
      color: var(--accent);
      font-size: 16px;
      margin: 0;
      padding-top: 24px;
      margin-bottom: 16px;
      font-weight: 700;
      letter-spacing: 0.03em;
    }
    
    .footer-section:first-child h3 {
      padding-top: 0;
    }

    .footer-section p {
      font-size: 13px;
      line-height: 1.6;
      color: rgba(255, 255, 255, 0.75);
      margin: 0 0 12px;
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: 12px;
    }

    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13px;
    }

    .footer-contact-icon {
      width: 32px;
      height: 32px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(209, 160, 103, 0.15);
      border-radius: 6px;
      font-size: 15px;
      flex-shrink: 0;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.75);
      font-size: 13px;
      transition: all 0.3s ease;
      display: inline-block;
      position: relative;
      padding-left: 14px;
    }

    .footer-links a::before {
      content: '→';
      position: absolute;
      left: 0;
      opacity: 0;
      transition: all 0.3s ease;
    }

    .footer-links a:hover {
      color: var(--accent);
      padding-left: 18px;
    }

    .footer-links a:hover::before {
      opacity: 1;
      left: 0;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 32px;
      text-align: center;
      font-size: 12px;
      color: rgba(255, 255, 255, 0.6);
      max-width: 1320px;
      margin: 0 auto;
    }

    .footer-logo {
      font-size: 20px;
      font-weight: 700;
      color: var(--accent);
      margin-bottom: 12px;
      display: block;
    }

    /* RESPONSIVE */
    @media (max-width: 1024px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px 24px;
        padding: 28px 28px 24px;
      }

      .footer-section:first-child {
        grid-column: 1 / -1;
      }
      
      .footer-section h3 {
        padding-top: 0;
        margin-bottom: 12px;
      }

      .footer-bottom {
        padding: 16px 28px;
      }

      .hero {
        grid-template-columns: 1fr;
        gap: 48px;
      }

      .hero-visual {
        order: 2;
      }

      .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 24px;
      }

      .features {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
      }

      .about {
        padding: 36px;
      }

      .trust-signals {
        grid-template-columns: repeat(2, 1fr);
        padding: 32px;
      }

      .specs-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 24px;
      }

      .spec-card {
        padding: 24px;
      }
    }

    @media (max-width: 768px) {
      .container {
        padding: 0 20px;
      }

      header .header-inner {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 18px 20px;
      }

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

      .desktop-nav,
      .desktop-lang {
        display: none !important;
      }

      .hero h1 {
        font-size: 32px;
        line-height: 1.2;
      }

      .section-title {
        font-size: 28px;
        line-height: 1.3;
      }

      .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .product-card {
        padding: 20px;
      }

      .features {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .feature-card {
        padding: 24px;
      }

      .trust-signals {
        grid-template-columns: 1fr;
        padding: 28px;
        gap: 20px;
      }

      .about {
        padding: 28px;
      }

      .hero-contact-card {
        padding: 24px;
      }

      .contact-form input,
      .contact-form textarea {
        font-size: 16px;
      }

      .specs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }

      .cta-section {
        padding: 56px 0;
      }

      .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .cta-card {
        padding: 36px 28px;
      }

      .cta-box .btn {
        width: 100%;
        padding: 16px 32px;
      }
      
      .blog-post-image {
        height: 300px;
        border-radius: var(--radius-lg);
      }
      
      .blog-post-content {
        padding: 32px 24px;
        font-size: 17px;
      }
      
      .blog-post-content h3 {
        font-size: 24px;
        margin: 32px 0 16px;
      }
      
      .blog-post-content h4 {
        font-size: 20px;
      }
      
      .blog-post-tags {
        padding: 24px;
      }
      
      .blog-post-footer {
        flex-direction: column;
        align-items: stretch;
      }
      
      .blog-post-footer .btn {
        width: 100%;
      }
    }

    @media (max-width: 480px) {
      .container {
        padding: 0 16px;
      }

      .page {
        padding: 0 16px 48px;
      }

      header .header-inner {
        padding: 12px 16px;
      }

      .hero {
        padding: 24px 0 48px;
        gap: 32px;
      }

      .hero h1 {
        font-size: 28px;
        line-height: 1.25;
        margin: 0 0 16px;
      }

      .hero p {
        font-size: 15px;
        line-height: 1.6;
      }

      .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
      }

      .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 15px;
      }

      nav ul {
        font-size: 13px;
        gap: 14px;
      }

      .section-title {
        font-size: 24px;
        margin: 0 0 20px;
      }

      .hero-contact-card {
        padding: 20px;
      }

      .hero-contact-card h2 {
        font-size: 20px;
      }

      .about {
        padding: 20px;
      }

      .product-card {
        padding: 20px;
      }

      .product-card h3 {
        font-size: 18px;
      }

      .feature-card {
        padding: 20px;
      }

      .trust-signals {
        padding: 24px;
        gap: 16px;
      }

      .trust-signal {
        gap: 12px;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px 16px 16px;
      }

      .footer-bottom {
        padding: 16px;
      }

      .spec-card {
        padding: 20px;
      }

      .spec-card h3 {
        font-size: 18px;
      }

      .cta-section {
        padding: 48px 0;
      }

      .cta-content {
        gap: 32px;
      }

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

      .cta-lead {
        font-size: 16px;
      }

      .cta-benefit {
        font-size: 15px;
      }

      .cta-card {
        padding: 32px 24px;
      }

      .cta-card-header {
        width: 64px;
        height: 64px;
        margin-bottom: 20px;
      }

      .cta-card-header svg {
        width: 32px;
        height: 32px;
      }

      .cta-card h3 {
        font-size: 20px;
      }

      .btn-large {
        padding: 16px 32px;
        font-size: 16px;
      }

      .cta-box {
        padding: 32px 20px;
      }

      .cta-box h2 {
        font-size: 24px;
      }

      .cta-box .btn {
        padding: 14px 28px;
        font-size: 15px;
      }

      .contact-form input,
      .contact-form textarea,
      .contact-form select {
        font-size: 16px;
        padding: 12px 16px;
      }
    }

      .footer-section:first-child {
        grid-column: 1;
      }

      .footer-bottom {
        padding: 16px 20px;
      }
    }

/* Language flag PNG images (replaces emoji flags) */
.lang-flag {
  width: 20px;
  height: 15px;
  max-width: 20px;
  max-height: 15px;
  min-width: 20px;
  min-height: 15px;
  border-radius: 2px;
  object-fit: cover;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.lang-option .lang-flag {
  width: 24px;
  height: 18px;
  max-width: 24px;
  max-height: 18px;
  min-width: 24px;
  min-height: 18px;
  flex-shrink: 0;
}
  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    animation: fadeIn 0.3s ease;
  }
  
  .modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
  }
  
  .modal-content {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.3s ease;
    padding: 0;
  }
  
  .modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
  }
  
  .modal-close:hover {
    background: #f0f0f0;
    color: #1a1a1a;
    transform: rotate(90deg);
  }
  
  .modal-header {
    padding: 40px 40px 24px;
    border-bottom: 2px solid #f0f0f0;
  }
  
  .modal-header h2 {
    margin: 0 0 8px 0;
    color: #2f4f3f;
    font-size: 28px;
  }
  
  .modal-header p {
    margin: 0;
    color: #666;
    font-size: 15px;
  }
  
  .quote-form {
    padding: 32px 40px 40px;
  }
  
  .form-section {
    margin-bottom: 32px;
  }
  
  .form-section h3 {
    margin: 0 0 16px 0;
    color: #2f4f3f;
    font-size: 18px;
    font-weight: 600;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  
  .quote-form input[type="text"],
  .quote-form input[type="email"],
  .quote-form input[type="tel"],
  .quote-form input[type="number"],
  .quote-form select,
  .quote-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s ease;
  }
  
  .quote-form input:focus,
  .quote-form select:focus,
  .quote-form textarea:focus {
    outline: none;
    border-color: #2f4f3f;
    box-shadow: 0 0 0 3px rgba(47, 79, 63, 0.1);
  }
  
  .quote-form textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .quote-form select {
    cursor: pointer;
    background: white;
  }
  
  .file-upload-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #1a1a1a;
    font-size: 15px;
  }
  
  .file-upload-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  
  .btn-large {
    width: 100%;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .modal-content {
      width: 95%;
      max-height: 95vh;
      border-radius: 16px;
    }
    
    .modal-header {
      padding: 32px 24px 20px;
    }
    
    .modal-header h2 {
      font-size: 24px;
    }
    
    .quote-form {
      padding: 24px;
    }
    
    .form-row {
      grid-template-columns: 1fr;
    }
    
    .modal-close {
      top: 16px;
      right: 16px;
    }
  }
.hidden { display: none; }
