 :root{
      --green:#6b9337;
      --green-dark:#557a2a;
      --text:#2f2f2f;
      --muted:#6c6c6c;
      --light:#f5f5f3;
      --white:#ffffff;
      --border:#e6e6e6;
      --shadow:0 12px 34px rgba(0,0,0,0.08);
      --radius:18px;
      --container:1200px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      font-family: Arial, Helvetica, sans-serif;
      color:var(--text);
      background:#fff;
      line-height:1.6;
    }

    img{
      max-width:100%;
      display:block;
    }

    a{
      text-decoration:none;
      color:inherit;
    }

    .container{
      width:min(var(--container), calc(100% - 40px));
      margin:0 auto;
    }

    .section{
      padding:72px 0;
    }

    .section-title{
      font-size:42px;
      line-height:1.15;
      margin:0 0 18px;
      font-weight:700;
      color:#222;
    }

    .section-subtitle{
      font-size:18px;
      color:var(--muted);
      max-width:900px;
      margin:0 auto 16px;
    }

    .center{
      text-align:center;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      background:var(--green);
      color:#fff;
      border:none;
      border-radius:999px;
      padding:14px 28px;
      font-size:16px;
      font-weight:700;
      cursor:pointer;
      transition:.25s ease;
    }

    .btn:hover{
      background:var(--green-dark);
      transform:translateY(-1px);
    }

    .btn-outline{
      background:transparent;
      color:var(--green);
      border:2px solid var(--green);
    }

    .btn-outline:hover{
      background:var(--green);
      color:#fff;
    }

    /* HEADER */
    .site-header{
      position:sticky;
      top:0;
      z-index:100;
      background:rgba(255,255,255,.94);
      backdrop-filter:blur(8px);
      border-bottom:1px solid rgba(0,0,0,.05);
    }

    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:20px;
      min-height:76px;
    }

    .logo{
      font-size:26px;
      font-weight:700;
      color:#444;
      letter-spacing:.2px;
    }

    .logo span{
      color:var(--green);
    }

    .nav-links{
      display:flex;
      gap:22px;
      align-items:center;
      flex-wrap:wrap;
      font-size:15px;
      color:#444;
    }

    .nav-links a:hover{
      color:var(--green);
    }

    /* HERO */
    .hero{
      position:relative;
      min-height:560px;
      display:flex;
      align-items:center;
      overflow:hidden;
      background:#ddd;
    }

    .hero::before{
      content:"";
      position:absolute;
      inset:0;
      background:
        linear-gradient(90deg, rgba(0,0,0,.36) 0%, rgba(0,0,0,.18) 38%, rgba(0,0,0,.08) 60%, rgba(0,0,0,.18) 100%);
      z-index:1;
    }

    .hero-bg{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
    }

    .hero-content{
      position:relative;
      z-index:2;
      width:min(900px, 100%);
      padding:90px 0;
      color:#fff;
    }

    .hero-kicker{
      display:inline-block;
      font-size:14px;
      font-weight:700;
      letter-spacing:1.6px;
      text-transform:uppercase;
      margin-bottom:14px;
      padding:8px 14px;
      border-radius:999px;
      background:rgba(255,255,255,.14);
      border:1px solid rgba(255,255,255,.18);
    }

    .hero h1{
      margin:0 0 18px;
      font-size:clamp(38px, 6vw, 74px);
      line-height:1.02;
      font-weight:700;
    }

    .hero p{
      margin:0 0 26px;
      font-size:18px;
      max-width:680px;
      color:rgba(255,255,255,.92);
    }

    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:14px;
    }

    .hero .btn-outline{
      color:#fff;
      border-color:#fff;
    }

    .hero .btn-outline:hover{
      background:#fff;
      color:#222;
    }

    /* INTRO */
    .intro-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:36px;
      align-items:center;
    }

    .intro-copy p{
      color:var(--muted);
      margin:0 0 16px;
      font-size:17px;
    }

    .intro-image-card{
      background:#fff;
      border-radius:var(--radius);
      box-shadow:var(--shadow);
      overflow:hidden;
      border:1px solid var(--border);
    }

    .intro-image-card img{
      width:100%;
      height:100%;
      object-fit:cover;
      min-height:380px;
    }

    /* FORMS SECTION */
    .forms-section{
      background:var(--light);
    }

    .forms-grid{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:28px;
      margin-top:34px;
    }

    .info-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:var(--radius);
      padding:32px;
      box-shadow:var(--shadow);
    }

    .info-card h3{
      margin:0 0 16px;
      font-size:34px;
      line-height:1.15;
      color:#242424;
    }

    .info-card p{
      margin:0 0 14px;
      color:var(--muted);
      font-size:16px;
    }

    .info-card ul{
      margin:0;
      padding-left:20px;
      color:#4d4d4d;
    }

    .info-card li{
      margin-bottom:10px;
    }

    .mini-tag{
      display:inline-block;
      margin-bottom:14px;
      padding:8px 14px;
      border-radius:999px;
      background:#edf5e3;
      color:var(--green-dark);
      font-size:13px;
      font-weight:700;
      letter-spacing:.4px;
      text-transform:uppercase;
    }

    /* WEBINAR */
    .webinar-wrap{
      background:#f3f3f1;
    }

    .webinar-card{
      display:grid;
      grid-template-columns:1fr 1.2fr;
      gap:28px;
      align-items:center;
      background:#efefed;
      border-radius:28px;
      overflow:hidden;
      border:1px solid #e2e2df;
      box-shadow:var(--shadow);
    }

    .webinar-copy{
      padding:48px 40px;
    }

    .webinar-logo{
      font-size:16px;
      font-weight:700;
      color:#545454;
      margin-bottom:18px;
    }

    .webinar-badge{
      display:inline-block;
      background:var(--green);
      color:#fff;
      font-size:10px;
      font-weight:700;
      line-height:1;
      padding:13px 26px;
      border-radius:14px;
      margin-bottom:28px;
    }

    .webinar-copy h2{
      margin:0 0 14px;
      font-size:clamp(14px, 2vw, 30px);
      line-height:1.02;
      color:var(--green);
    }

    .webinar-copy h3{
      margin:0 0 26px;
      font-size:clamp(12px, 1.2vw, 16px);
      line-height:1.2;
      color:#4a4a4a;
      font-weight:700;
    }

    .webinar-meta{
      display:inline-flex;
      flex-direction:column;
      gap:10px;
      border:3px solid var(--green);
      border-radius:14px;
      padding:18px 12px;
      background:#fff;
      margin-bottom:24px;
    }

    .webinar-meta div{
      font-size:12px;
      font-weight:700;
      color:#4b4b4b;
    }

    .webinar-copy p{
      margin:0 0 20px;
      color:var(--muted);
      font-size:16px;
      max-width:520px;
    }

    .webinar-image{
      min-height:100%;
      background:#e9e9e7;
    }

    .webinar-image img{
      width:100%;
      height:100%;
      object-fit:cover;
      min-height:560px;
    }

    /* FEATURES */
    .features-grid{
      display:grid;
      grid-template-columns:repeat(3, 1fr);
      gap:24px;
      margin-top:38px;
    }

    .feature-card{
      background:#fff;
      border:1px solid var(--border);
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow);
      transition:.25s ease;
    }

    .feature-card:hover{
      transform:translateY(-4px);
    }

    .feature-card img{
      width:100%;
      height:220px;
      object-fit:cover;
      background:#ececec;
    }

    .feature-card .body{
      padding:22px;
    }

    .feature-card h3{
      margin:0 0 10px;
      font-size:22px;
      line-height:1.2;
    }

    .feature-card p{
      margin:0;
      color:var(--muted);
      font-size:15px;
    }

    /* VIDEO */
    .video-wrap{
      background:#fafaf9;
    }

    .video-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:30px;
      align-items:start;
    }

    .video-box{
      border-radius:20px;
      overflow:hidden;
      box-shadow:var(--shadow);
      border:1px solid var(--border);
      background:#fff;
    }

    .video-box video{
      width:100%;
      display:block;
    }

    .video-copy{
      padding:12px 0;
    }

    .video-copy h2{
      margin:0 0 14px;
      font-size:34px;
      line-height:1.15;
    }

    .video-copy p{
      color:var(--muted);
      margin:0 0 14px;
    }

    /* INDUSTRIES */
    .industries-grid{
      display:grid;
      grid-template-columns:repeat(2, 1fr);
      gap:22px;
      margin-top:34px;
    }

    .industry-card{
      padding:24px;
      border-radius:18px;
      border:1px solid var(--border);
      background:#fff;
      box-shadow:var(--shadow);
    }

    .industry-card h3{
      margin:0 0 10px;
      font-size:22px;
    }

    .industry-card p{
      margin:0;
      color:var(--muted);
    }

    /* CONTACT */
    .contact{
      background:#1f1f1f;
      color:#fff;
    }

    .contact .section-title{
      color:#fff;
    }

    .contact-grid{
      display:grid;
      grid-template-columns:.9fr 1.1fr;
      gap:30px;
      align-items:start;
    }

    .contact-info{
      padding:8px 0;
    }

    .contact-info p{
      color:rgba(255,255,255,.82);
      margin:0 0 16px;
      font-size:16px;
    }

    .contact-card{
      background:#fff;
      color:#222;
      border-radius:20px;
      padding:18px;
      box-shadow:var(--shadow);
    }

    .contact-card iframe{
      width:100%;
      height:700px;
      border:0;
      border-radius:14px;
    }

    .contact-links{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin:22px 0;
    }

    .contact-links a{
      display:inline-flex;
      align-items:center;
      gap:10px;
      color:#fff;
      font-weight:700;
    }

    /* FOOTER */
    .footer{
      padding:22px 0;
      background:#131313;
      color:rgba(255,255,255,.7);
      font-size:14px;
      border-top:1px solid rgba(255,255,255,.08);
    }

    .footer-row{
      display:flex;
      justify-content:space-between;
      gap:20px;
      flex-wrap:wrap;
    }

    /* RESPONSIVE */
    @media (max-width: 1100px){
      .features-grid{
        grid-template-columns:repeat(2, 1fr);
      }
      .intro-grid,
      .webinar-card,
      .video-grid,
      .contact-grid{
        grid-template-columns:1fr;
      }
      .webinar-image img{
        min-height:360px;
      }
    }

    @media (max-width: 768px){
      .nav{
        min-height:auto;
        padding:16px 0;
        flex-direction:column;
        align-items:flex-start;
      }

      .nav-links{
        gap:14px;
      }

      .hero{
        min-height:480px;
      }

      .section{
        padding:56px 0;
      }

      .forms-grid,
      .features-grid,
      .industries-grid{
        grid-template-columns:1fr;
      }

      .info-card,
      .webinar-copy{
        padding:24px;
      }

      .feature-card img{
        height:200px;
      }

      .contact-card iframe{
        height:620px;
      }
    }