:root {
      --primary: #F79319;
      --primary-dark: #d47a0a;
      --primary-light: #ffaa44;
      --secondary: #197836;
      --secondary-dark: #135f2a;
      --secondary-light: #228b3f;
      --text-dark: #2c3e50;
      --text-light: #636e72;
      --white: #ffffff;
      --off-white: #f8f9fa;
      --shadow-sm: 0 2px 10px rgba(0,0,0,0.08);
      --shadow-md: 0 10px 30px rgba(0,0,0,0.12);
      --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
      --border-radius: 20px;
      --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: var(--off-white);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* --- 2. COMPONENTS --- */
    
    /* Loader */
    .loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #F79319 0%, #197836 100%);
      z-index: 9999;
      display: flex;
      justify-content: center;
      align-items: center;
      transition: opacity 0.5s, visibility 0.5s;
    }

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

    .loader-content {
      text-align: center;
      color: white;
    }

    .loader-spinner {
      width: 60px;
      height: 60px;
      margin: 0 auto 20px;
      border: 4px solid rgba(255,255,255,0.3);
      border-top-color: white;
      border-radius: 50%;
      animation: spin 1s linear infinite;
    }

    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    /* Container */
    .container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* Section Base */
    .section {
      padding: 100px 0;
      position: relative;
    }

    .section-alt {
      background: white;
    }

    .section-header {
      text-align: center;
      margin-bottom: 4rem;
      animation: fadeInUp 0.8s ease;
    }

    .section-badge {
      display: inline-block;
      background: linear-gradient(135deg, #F79319, #197836);
      color: white;
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 1rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      box-shadow: 0 4px 15px rgba(25, 120, 54, 0.2);
    }

    .section-title {
      font-size: 3rem;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 1rem;
      font-family: 'Space Grotesk', sans-serif;
      line-height: 1.2;
    }

    .section-subtitle {
      font-size: 1.3rem;
      color: var(--text-light);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }

    /* Buttons */
    .btn {
      padding: 1rem 2.2rem;
      border-radius: 12px;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      transition: all 0.3s ease;
      font-size: 1rem;
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, #F79319, #e8841a);
      color: white;
      box-shadow: 0 4px 20px rgba(247, 147, 25, 0.25);
      border: none;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 30px rgba(247, 147, 25, 0.35);
    }

    .btn-secondary {
      background: white;
      color: #197836;
      border: 2px solid #197836;
      box-shadow: 0 2px 10px rgba(25, 120, 54, 0.1);
    }

    .btn-secondary:hover {
      background: #197836;
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 20px rgba(25, 120, 54, 0.2);
    }

    /* Cards */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .card {
      background: white;
      border-radius: 25px;
      padding: 2rem;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #F79319, #197836);
      transform: translateX(-100%);
      transition: transform 0.5s ease;
    }

    .card:hover::before {
      transform: translateX(0);
    }

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

    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, #F79319, #197836);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: white;
      margin-bottom: 1.5rem;
      box-shadow: 0 6px 20px rgba(25, 120, 54, 0.25);
    }

    .card-title {
      font-size: 1.4rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }

    .card-description {
      color: var(--text-light);
      line-height: 1.6;
    }

    /* --- 3. HEADER --- */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      transition: var(--transition);
      backdrop-filter: blur(20px);
      background: rgba(255,255,255,0.95);
      height: 76px;
    }

    header.scrolled {
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      background: rgba(255,255,255,0.98);
    }

    .nav-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 1rem 2rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 15px;
      text-decoration: none;
      transition: var(--transition);
    }

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

    .logo img {
      width: 50px;
      height: 50px;
      border-radius: 15px;
      box-shadow: var(--shadow-sm);
    }

    .logo-text {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.4rem;
      font-weight: 700;
      background: linear-gradient(135deg, #F79319, #197836);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }

    nav a {
      color: var(--text-dark);
      text-decoration: none;
      font-weight: 500;
      position: relative;
      transition: var(--transition);
      padding: 0.5rem 1rem;
      border-radius: 10px;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 50%;
      width: 0;
      height: 3px;
      background: linear-gradient(90deg, #F79319, #197836);
      transition: var(--transition);
      transform: translateX(-50%);
      border-radius: 2px;
    }

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

    nav a:hover {
      color: #F79319;
    }

    .cta-button {
      background: linear-gradient(135deg, #F79319, #197836);
      color: white !important;
      padding: 0.8rem 2rem !important;
      border-radius: 50px !important;
      font-weight: 600 !important;
      box-shadow: 0 4px 15px rgba(247, 147, 25, 0.3);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: rgba(255,255,255,0.3);
      transition: left 0.5s;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .cta-button:hover::after {
      width: 0 !important;
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--text-dark);
      cursor: pointer;
      position: relative;
      width: 30px;
      height: 30px;
    }

    .mobile-menu-toggle span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--text-dark);
      border-radius: 3px;
      transition: var(--transition);
    }

    .mobile-menu-toggle span:nth-child(1) { top: 0; }
    .mobile-menu-toggle span:nth-child(2) { top: 12px; }
    .mobile-menu-toggle span:nth-child(3) { top: 24px; }

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

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

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

    /* --- 4. HERO SECTION --- */
    .hero {
      min-height: calc(100vh - 76px);
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      background: #ffffff;
      padding: 120px 0 80px;
      margin-top: 76px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 70%;
      height: 150%;
      background: radial-gradient(circle, rgba(247, 147, 25, 0.03) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 40%;
      height: 80%;
      background: radial-gradient(circle, rgba(25, 120, 54, 0.02) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-container {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 2rem;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 5rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-content {
      animation: fadeInUp 1s ease;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, rgba(247, 147, 25, 0.1), rgba(25, 120, 54, 0.1));
      color: #197836;
      padding: 0.6rem 1.2rem;
      border-radius: 100px;
      font-size: 0.85rem;
      font-weight: 600;
      margin-bottom: 2rem;
      border: 1px solid rgba(25, 120, 54, 0.2);
    }

    .hero-badge i {
      color: #F79319;
    }

    .hero-title {
      font-size: 3.5rem;
      font-weight: 800;
      color: #2c3e50;
      line-height: 1.15;
      margin-bottom: 1.5rem;
      font-family: 'Space Grotesk', sans-serif;
      letter-spacing: -0.02em;
    }

    .hero-title span {
      position: relative;
      color: #F79319;
      display: inline-block;
    }

    .hero-title span::after {
      content: '';
      position: absolute;
      bottom: 5px;
      left: 0;
      right: 0;
      height: 12px;
      background: linear-gradient(90deg, rgba(247, 147, 25, 0.3), rgba(25, 120, 54, 0.2));
      z-index: -1;
      transform: skewX(-15deg);
    }

    .hero-description {
      font-size: 1.25rem;
      color: #636e72;
      margin-bottom: 2.5rem;
      line-height: 1.7;
      font-weight: 400;
    }

    .hero-buttons {
      display: flex;
      gap: 1.2rem;
      margin-bottom: 4rem;
      flex-wrap: wrap;
    }

    .hero-stats {
      display: flex;
      gap: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .stat-card {
      flex: 1;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      background: linear-gradient(135deg, #F79319, #197836);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: block;
      font-family: 'Space Grotesk', sans-serif;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: #636e72;
      font-size: 0.95rem;
      font-weight: 500;
    }

    .hero-visual {
      position: relative;
      animation: fadeIn 1.5s ease;
    }

    .hero-image-container {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, #F79319, #197836);
      padding: 4px;
    }

    .hero-image-wrapper {
      border-radius: 20px;
      overflow: hidden;
      background: white;
      position: relative;
    }

    .hero-image {
      width: 100%;
      height: 450px;
      object-fit: cover;
      display: block;
      border-radius: 20px;
    }

    .hero-shape {
      position: absolute;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(247, 147, 25, 0.1), rgba(25, 120, 54, 0.05));
      animation: float-shape 20s ease-in-out infinite;
    }

    .hero-shape-1 {
      width: 80px;
      height: 80px;
      top: 20%;
      right: -40px;
    }

    .hero-shape-2 {
      width: 120px;
      height: 120px;
      bottom: 10%;
      left: -60px;
      animation-delay: -5s;
    }

    .hero-shape-3 {
      width: 60px;
      height: 60px;
      top: 60%;
      left: 10%;
      animation-delay: -10s;
    }

    .trust-badges {
      display: flex;
      gap: 2rem;
      align-items: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(0,0,0,0.08);
    }

    .trust-badge {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: #636e72;
      font-size: 0.9rem;
    }

    .trust-badge i {
      color: #197836;
      font-size: 1.2rem;
    }

    /* --- 5. PRODUCTS SECTION --- */
    .products-showcase {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
      cursor: pointer;
      position: relative;
    }

    .product-card:hover {
      transform: translateY(-10px) rotate(2deg);
      box-shadow: var(--shadow-lg);
    }

    .product-image {
      width: 100%;
      height: 200px;
      object-fit: cover;
      transition: var(--transition);
    }

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

    .product-info {
      padding: 1.5rem;
      text-align: center;
    }

    .product-name {
      font-weight: 700;
      color: var(--text-dark);
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
    }

    .product-badge {
      display: inline-block;
      background: linear-gradient(135deg, #197836, #228b3f);
      color: white;
      padding: 0.3rem 1rem;
      border-radius: 50px;
      font-size: 0.8rem;
      font-weight: 600;
    }

    /* --- 6. STRATEGY SECTION AMELIOREE --- */
    .strategy-wrapper {
      margin-top: 3rem;
    }

    .strategy-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      margin-bottom: 4rem;
    }

    .strategy-card {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      position: relative;
      box-shadow: 0 10px 40px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      border: 2px solid transparent;
      overflow: hidden;
    }

    .strategy-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 6px;
      background: linear-gradient(90deg, #F79319, #197836);
    }

    .strategy-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
      border-color: rgba(247, 147, 25, 0.2);
    }

    .strategy-header {
      display: flex;
      align-items: flex-start;
      margin-bottom: 1.5rem;
    }

    .strategy-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #F79319, #197836);
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      margin-right: 1.5rem;
      flex-shrink: 0;
      box-shadow: 0 8px 24px rgba(247, 147, 25, 0.25);
    }

    .strategy-content h3 {
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
      font-family: 'Space Grotesk', sans-serif;
    }

    .strategy-content p {
      color: var(--text-light);
      line-height: 1.6;
      font-size: 0.95rem;
    }

    .strategy-number {
      position: absolute;
      top: 2rem;
      right: 2rem;
      width: 40px;
      height: 40px;
      background: rgba(25, 120, 54, 0.1);
      color: #197836;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.1rem;
    }

    .strategy-benefits {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(0,0,0,0.06);
    }

    .benefit-list {
      list-style: none;
      display: flex;
      flex-wrap: wrap;
      gap: 0.8rem;
    }

    .benefit-item {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.4rem 1rem;
      background: rgba(25, 120, 54, 0.08);
      border-radius: 20px;
      font-size: 0.85rem;
      color: #197836;
      font-weight: 500;
    }

    .benefit-item i {
      font-size: 0.8rem;
    }

    /* Process Timeline */
    .process-timeline {
      background: linear-gradient(180deg, #ffffff, #f8f9fa);
      border-radius: 30px;
      padding: 3rem;
      margin-top: 4rem;
    }

    .process-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 3rem;
      font-family: 'Space Grotesk', sans-serif;
    }

    .timeline-container {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .timeline-line {
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 3px;
      background: linear-gradient(180deg, #F79319, #197836);
      transform: translateX(-50%);
    }

    .timeline-step {
      display: flex;
      margin-bottom: 3rem;
      position: relative;
    }

    .timeline-step:nth-child(odd) {
      justify-content: flex-start;
      text-align: right;
    }

    .timeline-step:nth-child(even) {
      justify-content: flex-end;
      text-align: left;
    }

    .timeline-step:nth-child(odd) .timeline-content {
      padding-right: 3rem;
    }

    .timeline-step:nth-child(even) .timeline-content {
      padding-left: 3rem;
    }

    .timeline-content {
      width: 45%;
      background: white;
      padding: 1.5rem;
      border-radius: 16px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: all 0.3s ease;
    }

    .timeline-content:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    }

    .timeline-dot {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      width: 24px;
      height: 24px;
      background: white;
      border: 4px solid #F79319;
      border-radius: 50%;
      z-index: 2;
    }

    .timeline-content h4 {
      font-size: 1.1rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .timeline-content p {
      font-size: 0.9rem;
      color: var(--text-light);
      line-height: 1.5;
    }

    /* --- 7. CONTACT SECTION --- */
    .contact-section {
      background: linear-gradient(135deg, #197836 0%, #0d3a1b 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    .contact-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23F79319" fill-opacity="0.05"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
      opacity: 0.3;
    }

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

    .contact-info h3 {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      font-weight: 800;
    }

    .contact-info p {
      font-size: 1.2rem;
      margin-bottom: 2rem;
      opacity: 0.9;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      padding: 1.5rem;
      background: rgba(255,255,255,0.1);
      border-radius: 15px;
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }

    .contact-item:hover {
      background: rgba(255,255,255,0.15);
      transform: translateX(10px);
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #F79319, #ffaa44);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .contact-form {
      background: white;
      padding: 3rem;
      border-radius: 30px;
      box-shadow: var(--shadow-xl);
    }

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

    .form-group label {
      display: block;
      color: var(--text-dark);
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 1rem;
      border: 2px solid #e0e0e0;
      border-radius: 15px;
      font-size: 1rem;
      transition: var(--transition);
      font-family: inherit;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #F79319;
      box-shadow: 0 0 0 3px rgba(247, 147, 25, 0.1);
    }

    .form-button {
      background: linear-gradient(135deg, #F79319, #197836);
      color: white;
      padding: 1.2rem 3rem;
      border: none;
      border-radius: 50px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      width: 100%;
      box-shadow: 0 6px 20px rgba(247, 147, 25, 0.3);
    }

    .form-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(247, 147, 25, 0.4);
    }

    /* --- 8. FOOTER --- */
    footer {
      background: linear-gradient(135deg, #0d3a1b 0%, #1a1a2e 100%);
      color: white;
      padding: 4rem 0 2rem;
      position: relative;
    }

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

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 3rem;
    }

    .footer-brand h3 {
      font-size: 1.8rem;
      margin-bottom: 1rem;
      font-family: 'Space Grotesk', sans-serif;
    }

    .footer-brand p {
      opacity: 0.8;
      line-height: 1.6;
    }

    .footer-column h4 {
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: #F79319;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

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

    .footer-column a {
      color: rgba(255,255,255,0.8);
      text-decoration: none;
      transition: var(--transition);
      display: block;
      padding: 0.3rem 0;
    }

    .footer-column a:hover {
      color: #F79319;
      transform: translateX(5px);
    }

    .footer-social {
      display: flex;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      background: rgba(247, 147, 25, 0.1);
      border: 1px solid rgba(247, 147, 25, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }

    .social-icon:hover {
      background: #F79319;
      border-color: #F79319;
      transform: translateY(-3px);
      box-shadow: 0 5px 15px rgba(247, 147, 25, 0.3);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      text-align: center;
      opacity: 0.8;
    }

    /* --- 9. UTILITIES --- */
    .back-to-top {
      position: fixed;
      bottom: 30px;
      right: 30px;
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #F79319, #197836);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: var(--shadow-lg);
      transition: var(--transition);
      opacity: 0;
      visibility: hidden;
      z-index: 50;
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    .back-to-top:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-xl);
    }

    /* --- 10. ANIMATIONS --- */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }

    @keyframes float-shape {
      0%, 100% { 
        transform: translate(0, 0) scale(1); 
      }
      33% { 
        transform: translate(30px, -30px) scale(1.1); 
      }
      66% { 
        transform: translate(-20px, 20px) scale(0.9); 
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-30px);
      transition: all 0.8s ease;
    }

    .reveal-left.active {
      opacity: 1;
      transform: translateX(0);
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(30px);
      transition: all 0.8s ease;
    }

    .reveal-right.active {
      opacity: 1;
      transform: translateX(0);
    }

    /* --- 11. RESPONSIVE --- */
    @media (max-width: 1024px) {
      .hero-container {
        grid-template-columns: 1fr;
      }

      .hero-visual {
        margin-top: 3rem;
      }

      .timeline-line {
        left: 30px;
      }

      .timeline-step {
        justify-content: flex-start !important;
      }

      .timeline-step .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        padding-left: 2rem !important;
        padding-right: 2rem !important;
      }

      .timeline-dot {
        left: 30px !important;
      }

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

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

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

    @media (max-width: 768px) {
      .mobile-menu-toggle {
        display: block;
      }

      nav ul {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
      }

      nav ul.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .hero-stats {
        flex-direction: column;
        gap: 1rem;
      }

      .section-title {
        font-size: 2rem;
      }

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

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

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

      .footer-social {
        justify-content: center;
      }

      .trust-badges {
        flex-direction: column;
        align-items: flex-start;
      }
    }