      /*==================================================
      GLOBAL RESETS & VARIABLES
    ==================================================*/
    :root {
        --primary: #18c37e;
        --primary-dark: #11a76a;
        --dark: #07120f;
        --dark-2: #0e1b17;
        --light: #ffffff;
        --text: #eaf4ee;
        --muted: #a7b7b1;
        --border: rgba(255, 255, 255, 0.08);
        --glass: rgba(255, 255, 255, 0.05);
        --shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        --radius: 18px;
        --transition: 0.35s cubic-bezier(0.4, 0.2, 0.2, 1);

        /* Header Layer Dynamic Theme Fallbacks */
        --header-bg: rgba(7, 18, 15, 0.75);
        --header-bg-scrolled: rgba(7, 18, 15, 0.92);
        --header-border: rgba(255, 255, 255, 0.05);
      }

      * {
        padding: 0;
        margin: 0;
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        font-family: "Poppins", sans-serif;
        background: var(--dark);
        color: var(--text);
      }

      .gt-container {
        width: min(1320px, 92%);
        margin: auto;
      }

      /*==================================================
      GLOBAL TRANSITIONS & SHARED FLEX
    ==================================================*/
      .gt-header,
      .header-btn,
      .theme-toggle,
      .menu-toggle,
      .mobile-menu,
      .gt-nav a,
      .hero-btn,
      .js-background-slide {
        transition: var(--transition);
      }

      .theme-toggle,
      .menu-toggle,
      .hero-btn {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      /*==================================================
      GREENIO TALK TOP BAR
    ==================================================*/
      .gt-topbar {
        width: 100%;
        height: 52px;
        overflow: hidden;
        background: #060707;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        position: relative;
        z-index: 9999;
      }

      .gt-topbar::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(
            circle at left,
            rgba(24, 255, 123, 0.08),
            transparent 40%
          ),
          radial-gradient(
            circle at right,
            rgba(0, 140, 255, 0.06),
            transparent 40%
          );
      }

      .gt-marquee {
        display: flex;
        align-items: center;
        height: 100%;
        overflow: hidden;
        position: relative;
      }

      .gt-track {
        display: flex;
        align-items: center;
        white-space: nowrap;
        animation: greenio-marquee 35s linear infinite;
      }

      .gt-topbar:hover .gt-track {
        animation-play-state: paused;
      }

      .gt-track span {
        color: #fff;
        font-family: Poppins, sans-serif;
        font-size: 14px;
        font-weight: 500;
        padding: 0 24px;
        position: relative;
      }

      .gt-track span::after {
        content: "";
        position: absolute;
        right: -3px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: #18ff7b;
      }

      .gt-highlight {
        color: #18ff7b !important;
        font-weight: 700;
      }

      .gt-highlight::after {
        display: none;
      }

      @keyframes greenio-marquee {
        from {
          transform: translateX(0);
        }
        to {
          transform: translateX(-100%);
        }
      }

      /*==================================================
      GREENIO TALK HEADER (FIXED TRANSITION GAPS)
    ==================================================*/
      .gt-header {
        position: absolute; /* Changed from fixed to absolute to scroll with topbar */
        top: 52px; /* Clean reference baseline directly below the topbar */
        left: 0;
        width: 100%;
        z-index: 10001;
        padding: 22px 0;

        background: var(--header-bg);
        border-bottom: 1px solid var(--header-border);
        backdrop-filter: blur(14px) saturate(180%);
        -webkit-backdrop-filter: blur(14px) saturate(180%);

        /* Unified property animations without layout breakdown bugs */
        transition: background-color 0.3s ease, padding 0.3s ease,
          box-shadow 0.3s ease;
      }

      .gt-header.scrolled {
        position: fixed; /* Becomes sticky fixed cleanly once window scrolling triggers */
        top: 0;
        transform: none;
        padding: 14px 0;
        background: var(--header-bg-scrolled);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
      }

      .gt-header .gt-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .gt-logo {
        display: flex;
        align-items: center;
        text-decoration: none;
      }

      .gt-logo img {
        height: 70px;
        display: block;
        transition: transform 0.4s ease, height 0.3s ease;
      }

      .gt-logo:hover img {
        transform: scale(1.05);
      }

      /* NAVIGATION */
      .gt-nav {
        display: flex;
        align-items: center;
      }

      .gt-nav ul {
        list-style: none;
        display: flex;
        align-items: center;
        gap: 36px;
      }

      .gt-nav ul li {
        position: relative;
      }

      .gt-nav ul li a {
        text-decoration: none;
        color: var(--text);
        font-size: 15px;
        font-weight: 500;
        position: relative;
      }

      .gt-nav ul li a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -8px;
        width: 0;
        height: 2px;
        background: var(--primary);
        transition: var(--transition);
      }

      .gt-nav ul li:hover a {
        color: var(--primary);
      }

      .gt-nav ul li:hover a::after {
        width: 100%;
      }

      .gt-right {
        display: flex;
        align-items: center;
        gap: 18px;
      }

      /* UTILITY BUTTONS */
      .theme-toggle {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: var(--glass);
        border: 1px solid var(--border);
        cursor: pointer;
        color: #ffd45c;
      }

      .theme-toggle:hover {
        transform: rotate(20deg);
        background: var(--primary);
        color: #fff;
      }

      .header-btn {
        text-decoration: none;
        padding: 14px 28px;
        border-radius: 50px;
        color: #fff;
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.2px;
        box-shadow: 0 10px 35px rgba(24, 195, 126, 0.3);
        transition: transform 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
      }

      .header-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(24, 195, 126, 0.45);
      }

      .menu-toggle {
        display: none;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        background: transparent;
        border: 1px solid var(--border);
        cursor: pointer;
        position: relative;
      }

      .menu-toggle span {
        position: absolute;
        left: 11px;
        width: 22px;
        height: 2px;
        background: #fff;
        transition: 0.35s;
      }

      .menu-toggle span:nth-child(1) {
        top: 14px;
      }
      .menu-toggle span:nth-child(2) {
        top: 21px;
      }
      .menu-toggle span:nth-child(3) {
        top: 28px;
      }

      .menu-toggle:hover {
        border-color: var(--primary);
      }

      .menu-toggle:hover span {
        background: var(--primary);
      }

      /* DYNAMIC SCROLLED ELEMENT MODIFIERS */
      .gt-header.scrolled .gt-logo img {
        height: 70px;
      }
      .gt-header.scrolled .header-btn {
        padding: 11px 24px;
      }
      .gt-header.scrolled .theme-toggle {
        width: 42px;
        height: 42px;
      }

      /*==================================================
      MOBILE MENU & OVERLAY
    ==================================================*/
      .mobile-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 340px;
        max-width: 100%;
        height: 100vh;
        background: rgba(7, 18, 15, 0.97);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 9999;
        padding: 110px 40px 50px;
        overflow-y: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
      }

      .mobile-menu.active {
        right: 0;
      }

      .mobile-menu ul {
        list-style: none;
      }

      .mobile-menu ul li {
        margin-bottom: 10px;
      }

      .mobile-menu ul li a {
        display: block;
        text-decoration: none;
        color: var(--text);
        font-size: 18px;
        font-weight: 500;
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: 0.3s;
      }

      .mobile-menu ul li a:hover {
        color: var(--primary);
        padding-left: 10px;
      }

      .mobile-btn {
        display: block;
        margin-top: 35px;
        text-align: center;
        text-decoration: none;
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: #fff;
        font-weight: 600;
        border-radius: 50px;
        padding: 16px 20px;
        box-shadow: 0 10px 30px rgba(24, 195, 126, 0.3);
      }

      .mobile-btn:hover {
        transform: translateY(-4px);
      }

      /* HAMBURGER ACTIVE */
      .menu-toggle.active span:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
      }

      .menu-toggle.active span:nth-child(2) {
        opacity: 0;
      }

      .menu-toggle.active span:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
      }

      /* OVERLAY */
      .menu-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
        opacity: 0;
        visibility: hidden;
        transition: 0.35s;
        z-index: 9998;
      }

      .menu-overlay.active {
        opacity: 1;
        visibility: visible;
      }

      /*==================================================
      HERO SECTION
    ==================================================*/
      .hero-section {
        position: relative;
        width: 100%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        overflow: hidden;
        padding-top: 140px; /* Safe padding buffers room for static header transforms */
      }

      .js-background-slide {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 1.5s ease-in-out;
        z-index: 0;
      }

      .js-background-slide.active {
        opacity: 1;
      }

      .hero-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(
          90deg,
          rgba(7, 18, 15, 0.8) 5%,
          rgba(7, 18, 15, 0.6) 40%,
          rgba(7, 18, 15, 0.2) 65%,
          rgba(7, 18, 15, 0.05) 100%
        );
        z-index: 1;
      }

      .hero-section .gt-container {
        position: relative;
        z-index: 5;
        display: flex;
        justify-content: flex-end;
        align-items: center;
      }

      .hero-content {
        width: 650px;
        max-width: 100%;
        padding: 60px;
        border-radius: 30px;
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        background: rgba(8, 18, 14, 0.35);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
        transform: none !important;
      }

      .hero-tagline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: 50px;
        background: rgba(24, 195, 126, 0.12);
        border: 1px solid rgba(24, 195, 126, 0.3);
        color: #41ff9c;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin-bottom: 28px;
      }

      .hero-tagline::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #18c37e;
      }

      .hero-title {
        font-size: 72px;
        font-weight: 800;
        line-height: 1.05;
        color: #fff;
        margin-bottom: 12px;
      }

      .hero-subtitle {
        font-size: 32px;
        font-weight: 600;
        color: #eaf4ee;
        line-height: 1.3;
        margin-bottom: 18px;
      }

      .hero-highlight {
        font-size: 22px;
        font-weight: 600;
        color: #18c37e;
        margin-bottom: 28px;
      }

      .hero-description {
        color: #d5dfda;
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 40px;
      }

      .hero-buttons {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        flex-wrap: nowrap;
      }

      .hero-btn {
        flex: 1;
        min-width: 0;
        height: 56px;
        padding: 0 18px;
        border-radius: 50px;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        white-space: nowrap;
      }

      .hero-btn-primary {
        color: #fff;
        background: linear-gradient(135deg, #18c37e, #11a76a);
        box-shadow: 0 15px 40px rgba(24, 195, 126, 0.3);
      }

      .hero-btn-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 25px 55px rgba(24, 195, 126, 0.45);
      }

      .hero-btn-outline {
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
      }

      .hero-btn-outline:hover {
        background: #18c37e;
        border-color: #18c37e;
        color: #fff;
        transform: translateY(-5px);
      }

      /* SCROLL INDICATOR */
      .hero-scroll {
        position: absolute;
        left: 50%;
        bottom: 35px;
        transform: translateX(-50%);
        z-index: 10;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        cursor: pointer;
      }

      .hero-scroll span {
        color: #ffffff;
        font-size: 12px;
        letter-spacing: 2px;
        text-transform: uppercase;
        opacity: 0.75;
      }

      .scroll-line {
        width: 2px;
        height: 70px;
        background: rgba(255, 255, 255, 0.15);
        overflow: hidden;
        position: relative;
      }

      .scroll-line::after {
        content: "";
        position: absolute;
        left: 0;
        top: -30px;
        width: 100%;
        height: 30px;
        background: #18c37e;
        animation: scrollDown 2s infinite;
      }

      @keyframes scrollDown {
        0% {
          top: -30px;
        }
        100% {
          top: 100%;
        }
      }

      /*==================================================
      LIGHT MODE ARCHITECTURE
    ==================================================*/
      body.light-mode {
        background: #f5f7f9;
        color: #1a1a1a;

        --header-bg: rgba(255, 255, 255, 0.82);
        --header-bg-scrolled: rgba(255, 255, 255, 0.95);
        --header-border: rgba(0, 0, 0, 0.06);
      }

      body.light-mode .gt-header.scrolled {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      }

      body.light-mode .gt-nav ul li a,
      body.light-mode .mobile-menu ul li a {
        color: #222;
      }

      body.light-mode .mobile-menu {
        background: #ffffff;
      }

      body.light-mode .theme-toggle,
      body.light-mode .menu-toggle {
        color: #111;
        background: #ffffff;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
      }

      body.light-mode .menu-toggle span {
        background: #222;
      }

      body.light-mode .menu-toggle.active {
        background: #18c37e;
        border-color: #18c37e;
      }

      body.light-mode .menu-toggle.active span {
        background: #fff;
      }

      body.light-mode .hero-overlay {
        background: linear-gradient(
          90deg,
          rgba(7, 18, 15, 0.85) 5%,
          rgba(7, 18, 15, 0.65) 40%,
          rgba(7, 18, 15, 0.25) 65%,
          rgba(7, 18, 15, 0.05) 100%
        );
      }

      body.light-mode .hero-content {
        background: rgba(255, 255, 255, 0.55);
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
      }

      body.light-mode .hero-title {
        color: #07120f;
      }
      body.light-mode .hero-subtitle {
        color: #222;
      }
      body.light-mode .hero-description {
        color: #555;
      }
      body.light-mode .hero-highlight {
        color: #18c37e;
      }

      body.light-mode .hero-btn-outline {
        color: #222;
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: #fff;
      }

      body.light-mode .hero-btn-outline:hover {
        color: #fff;
        background: #18c37e;
      }

      body.light-mode .hero-scroll span {
        color: #222;
      }
      body.light-mode .scroll-line {
        background: rgba(0, 0, 0, 0.1);
      }

      /*==================================================
      MEDIA QUERIES (RESPONSIVE WORKFLOW)
    ==================================================*/
      @media (max-width: 1100px) {
        .gt-nav,
        .header-btn {
          display: none;
        }
        .menu-toggle {
          display: flex;
        }
      }

      @media (max-width: 1200px) {
        .hero-content {
          width: 580px;
          padding: 50px;
        }
        .hero-title {
          font-size: 60px;
        }
        .hero-subtitle {
          font-size: 28px;
        }
      }

      @media (max-width: 992px) {
        .hero-section .gt-container {
          justify-content: center;
        }
        .hero-content {
          width: 100%;
          padding: 45px;
        }
        .hero-title {
          font-size: 52px;
        }
        .hero-subtitle {
          font-size: 26px;
        }
        .hero-description {
          font-size: 16px;
        }
      }

      @media (max-width: 768px) {
        .gt-topbar {
          height: 44px;
        }
        .gt-track span {
          font-size: 12px;
          padding: 0 16px;
        }

        /* Responsive relative adjustments mapping tablet and fluid phone viewports */
        .gt-header {
          position: absolute;
          top: 44px; /* Dynamically tracks mobile top bar spacing width */
          transform: none;
          padding: 14px 0;
        }

        .gt-header.scrolled {
          position: fixed;
          top: 0;
          transform: none;
        }

        .gt-logo img {
          height: 48px;
        }
        .theme-toggle,
        .menu-toggle {
          width: 42px;
          height: 42px;
        }

        .mobile-menu {
          width: 100%;
          padding: 95px 30px 40px;
        }
        .mobile-menu ul li a {
          font-size: 17px;
        }

        .hero-section {
          min-height: 95vh;
          padding-top: 110px;
        }
        .hero-content {
          padding: 35px 28px;
          border-radius: 22px;
        }
        .hero-title {
          font-size: 42px;
        }
        .hero-subtitle {
          font-size: 22px;
        }
        .hero-highlight {
          font-size: 18px;
        }
        .hero-description {
          font-size: 15px;
          line-height: 1.8;
        }
        .hero-buttons {
          flex-direction: column;
          gap: 14px;
        }
        .hero-btn {
          width: 100%;
        }
        .hero-scroll {
          display: none;
        }
      }

      @media (max-width: 480px) {
        .gt-container {
          width: 92%;
        }
        .gt-logo img {
          height: 42px;
        }

        .mobile-menu {
          padding: 90px 24px 35px;
        }
        .mobile-menu ul li a {
          font-size: 16px;
        }

        .hero-section {
          padding: 100px 0 70px;
        }
        .hero-content {
          padding: 28px 22px;
        }
        .hero-title {
          font-size: 36px;
        }
        .hero-subtitle {
          font-size: 20px;
        }
        .hero-tagline {
          font-size: 11px;
          padding: 8px 14px;
        }
        .hero-description {
          font-size: 14px;
        }
      }

      /*==================================================
ABOUT GREENIO TALK
==================================================*/

      .about-section {
        position: relative;
        padding: 120px 0;
        overflow: hidden;
        background: linear-gradient(
          180deg,
          #07120f 0%,
          #091712 50%,
          #07120f 100%
        );
      }

      /* Decorative Glow */
      .about-section::before {
        content: "";
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: rgba(24, 195, 126, 0.08);
        filter: blur(120px);
        top: -150px;
        right: -150px;
        z-index: 0;
      }

      .about-grid {
        position: relative;
        z-index: 2;
        display: grid;
        grid-template-columns: 1fr 1.15fr;
        gap: 80px;
        align-items: center;
      }

      /*==================================================
IMAGE
==================================================*/

      .about-image {
        position: relative;
      }

      .about-image-wrap {
        position: relative;
        overflow: hidden;
        border-radius: 28px;
        border: 1px solid rgba(255, 255, 255, 0.08);
        background: rgba(255, 255, 255, 0.04);
        backdrop-filter: blur(18px);
        -webkit-backdrop-filter: blur(18px);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
      }

      .about-image-wrap img {
        display: block;
        width: 100%;
        height: 620px;
        object-fit: cover;
        transition: 0.6s ease;
      }

      .about-image-wrap:hover img {
        transform: scale(1.06);
      }

      .about-image-wrap::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(
          to top,
          rgba(7, 18, 15, 0.55),
          transparent 60%
        );
      }

      /*==================================================
BADGE
==================================================*/

      .about-badge {
        position: absolute;
        left: 25px;
        bottom: 25px;
        z-index: 5;
      }

      .about-badge span {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 20px;
        border-radius: 50px;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
      }

      /*==================================================
CONTENT
==================================================*/

      .about-content {
        position: relative;
      }

      .section-tag {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 18px;
        border-radius: 50px;
        background: rgba(24, 195, 126, 0.12);
        border: 1px solid rgba(24, 195, 126, 0.25);
        color: #41ff9c;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 0.4px;
        text-transform: uppercase;
        margin-bottom: 28px;
      }

      .section-tag::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #18c37e;
      }

      .section-title {
        font-size: 52px;
        line-height: 1.12;
        font-weight: 800;
        color: #fff;
        margin-bottom: 26px;
      }

      .section-description {
        color: #cfd9d4;
        font-size: 17px;
        line-height: 1.9;
        margin-bottom: 35px;
      }

      /*==================================================
FEATURES
==================================================*/

      .about-features {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        margin-bottom: 45px;
      }

      .feature-item {
        display: flex;
        align-items: center;
        gap: 14px;
        padding: 18px 20px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        transition: 0.35s ease;
        color: #eaf4ee;
        font-size: 15px;
        font-weight: 500;
      }

      .feature-item:hover {
        transform: translateY(-6px);
        border-color: rgba(24, 195, 126, 0.4);
        background: rgba(24, 195, 126, 0.08);
      }

      .feature-item span {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #18c37e;
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        flex-shrink: 0;
      }

      /*==================================================
BUTTON
==================================================*/

      .about-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        padding: 16px 34px;
        border-radius: 50px;
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--primary-dark)
        );
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        letter-spacing: 0.3px;
        box-shadow: 0 15px 40px rgba(24, 195, 126, 0.3);
        transition: 0.35s ease;
      }

      .about-btn:hover {
        transform: translateY(-5px);
        box-shadow: 0 22px 55px rgba(24, 195, 126, 0.45);
      }

      /*==================================================
LIGHT MODE
==================================================*/

      body.light-mode .about-section {
        background: #f5f7f9;
      }

      body.light-mode .section-title {
        color: #07120f;
      }

      body.light-mode .section-description {
        color: #555;
      }

      body.light-mode .feature-item {
        background: #fff;
        color: #222;
        border: 1px solid rgba(0, 0, 0, 0.08);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
      }

      body.light-mode .about-image-wrap {
        border: 1px solid rgba(0, 0, 0, 0.08);
      }

      body.light-mode .about-badge span {
        color: #222;
        background: rgba(255, 255, 255, 0.92);
        border: 1px solid rgba(0, 0, 0, 0.08);
      }

      /*==================================================
RESPONSIVE
==================================================*/

      @media (max-width: 1200px) {
        .about-grid {
          gap: 60px;
        }

        .section-title {
          font-size: 46px;
        }

        .about-image-wrap img {
          height: 560px;
        }
      }

      @media (max-width: 992px) {
        .about-section {
          padding: 90px 0;
        }

        .about-grid {
          grid-template-columns: 1fr;
          gap: 50px;
        }

        .about-image {
          order: 1;
        }

        .about-content {
          order: 2;
        }

        .about-image-wrap img {
          height: 500px;
        }

        .section-title {
          font-size: 42px;
        }
      }

      @media (max-width: 768px) {
        .about-section {
          padding: 80px 0;
        }

        .section-title {
          font-size: 36px;
        }

        .section-description {
          font-size: 15px;
        }

        .about-features {
          grid-template-columns: 1fr;
          gap: 15px;
        }

        .about-image-wrap img {
          height: 420px;
        }
      }

      @media (max-width: 480px) {
        .section-title {
          font-size: 30px;
          line-height: 1.2;
        }

        .about-image-wrap {
          border-radius: 22px;
        }

        .about-image-wrap img {
          height: 340px;
        }

        .about-badge {
          left: 16px;
          right: 16px;
          bottom: 16px;
        }

        .about-badge span {
          width: 100%;
          justify-content: center;
          font-size: 13px;
        }

        .feature-item {
          padding: 16px;
          font-size: 14px;
        }

        .about-btn {
          width: 100%;
        }
      }
/*==================================================
WHAT WE DO
==================================================*/

.services-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:var(--dark);
}

.services-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    left:-180px;
    top:120px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(120px);
    z-index:0;
}

.services-section .gt-container{
    position:relative;
    z-index:2;
}

/*==================================================
HEADING
==================================================*/

.services-heading{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.services-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:24px;
}

.services-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.services-title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin-bottom:22px;
}

.services-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*==================================================
GRID
==================================================*/

.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/*==================================================
CARD
==================================================*/

.service-card{
    position:relative;
    overflow:hidden;
    padding:40px 32px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
}

.service-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--primary),
        transparent
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:rgba(24,195,126,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.service-card:hover::before{
    transform:scaleX(1);
}

/*==================================================
ICON
==================================================*/

.service-icon{
    width:74px;
    height:74px;
    border-radius:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:28px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.18);
    transition:.35s;
}

.service-card:hover .service-icon{
    transform:rotate(-8deg) scale(1.08);
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
}

/*==================================================
TEXT
==================================================*/

.service-card h3{
    font-size:24px;
    font-weight:700;
    color:#fff;
    line-height:1.35;
    margin-bottom:18px;
}

.service-card p{
    color:#b9c8c1;
    font-size:15px;
    line-height:1.9;
}

/*==================================================
LIGHT MODE
==================================================*/

body.light-mode .services-section{
    background:#f5f7f9;
}

body.light-mode .services-title{
    color:#07120f;
}

body.light-mode .services-description{
    color:#555;
}

body.light-mode .service-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

body.light-mode .service-card h3{
    color:#111;
}

body.light-mode .service-card p{
    color:#555;
}

body.light-mode .service-icon{
    background:#f4fff9;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .services-grid{
        gap:24px;
    }

    .services-title{
        font-size:46px;
    }

    .service-card{
        padding:35px 28px;
    }

}

@media(max-width:992px){

    .services-section{
        padding:100px 0;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .services-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .services-section{
        padding:80px 0;
    }

    .services-heading{
        margin-bottom:50px;
    }

    .services-title{
        font-size:36px;
    }

    .services-description{
        font-size:15px;
    }

    .services-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .service-card{
        padding:30px 24px;
    }

    .service-card h3{
        font-size:22px;
    }

}

@media(max-width:480px){

    .services-title{
        font-size:30px;
    }

    .service-card{
        border-radius:20px;
        padding:28px 22px;
    }

    .service-icon{
        width:64px;
        height:64px;
        font-size:28px;
        margin-bottom:22px;
    }

    .service-card h3{
        font-size:20px;
    }

    .service-card p{
        font-size:14px;
    }

}

/*==================================================
INDUSTRIES WE COVER
==================================================*/

.industries-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:linear-gradient(
        180deg,
        #091712 0%,
        #07120f 100%
    );
}

.industries-section::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(24,195,126,.07);
    filter:blur(130px);
    right:-180px;
    bottom:-180px;
    z-index:0;
}

.industries-section .gt-container{
    position:relative;
    z-index:2;
}

/*==================================================
HEADING
==================================================*/

.industries-heading{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.industries-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:25px;
}

.industries-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.industries-title{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:24px;
}

.industries-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*==================================================
GRID
==================================================*/

.industries-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:30px;
}

/*==================================================
CARD
==================================================*/

.industry-item{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:18px;
    text-align:center;
    min-height:190px;
    padding:35px 20px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
    overflow:hidden;
}

.industry-item::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(24,195,126,.12),
        transparent
    );
    opacity:0;
    transition:.35s;
}

.industry-item:hover{
    transform:translateY(-10px);
    border-color:rgba(24,195,126,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.industry-item:hover::before{
    opacity:1;
}

.industry-item{
    font-size:48px;
}

.industry-item span{
    display:block;
    font-size:17px;
    font-weight:600;
    color:#fff;
    line-height:1.4;
    position:relative;
    z-index:2;
}

/*==================================================
LIGHT MODE
==================================================*/

body.light-mode .industries-section{
    background:#f5f7f9;
}

body.light-mode .industries-title{
    color:#07120f;
}

body.light-mode .industries-description{
    color:#555;
}

body.light-mode .industry-item{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

body.light-mode .industry-item span{
    color:#111;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .industries-grid{
        grid-template-columns:repeat(4,1fr);
    }

    .industries-title{
        font-size:46px;
    }

}

@media(max-width:992px){

    .industries-section{
        padding:100px 0;
    }

    .industries-grid{
        grid-template-columns:repeat(3,1fr);
        gap:22px;
    }

    .industries-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .industries-section{
        padding:80px 0;
    }

    .industries-heading{
        margin-bottom:50px;
    }

    .industries-title{
        font-size:36px;
    }

    .industries-description{
        font-size:15px;
    }

    .industries-grid{
        grid-template-columns:repeat(2,1fr);
        gap:18px;
    }

    .industry-item{
        min-height:160px;
        padding:25px 15px;
        font-size:38px;
    }

    .industry-item span{
        font-size:15px;
    }

}

@media(max-width:480px){

    .industries-title{
        font-size:30px;
    }

    .industries-grid{
        grid-template-columns:1fr;
    }

    .industry-item{
        min-height:140px;
        border-radius:20px;
        font-size:34px;
    }

    .industry-item span{
        font-size:16px;
    }

}

/*==================================================
WHY CHOOSE GREENIO TALK
==================================================*/

.why-section{
    position:relative;
    padding:120px 0;
    background:var(--dark);
    overflow:visible;
}

.why-section::before{
    content:"";
    position:absolute;
    width:600px;
    height:600px;
    left:-220px;
    top:-220px;
    border-radius:50%;
    background:rgba(24,195,126,.07);
    filter:blur(130px);
    z-index:0;
}

.why-section .gt-container{
    position:relative;
    z-index:2;
}

/*==================================================
LAYOUT
==================================================*/

.why-grid{
    display:grid;
    grid-template-columns:46% 54%;
    gap:90px;
    align-items:start;
}

/*==================================================
LEFT STICKY IMAGE
==================================================*/

.why-image{
    position:sticky;
    top:120px;
    align-self:start;
    height:fit-content;
}

.why-image-inner{
    position:relative;
    overflow:hidden;
    border-radius:30px;
    border:1px solid rgba(255,255,255,.08);
    background:rgba(255,255,255,.04);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    box-shadow:0 30px 80px rgba(0,0,0,.35);
}

.why-image img{
    display:block;
    width:100%;
    height:min(780px,calc(100vh - 160px));
    object-fit:cover;
    transition:.6s ease;
}

.why-image:hover img{
    transform:scale(1.05);
}

.why-image-inner::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(7,18,15,.45),
        transparent 60%
    );
}

/*==================================================
CONTENT
==================================================*/

.why-content{
    position:relative;
}

.why-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    margin-bottom:24px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.28);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
}

.why-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.why-title{
    font-size:52px;
    line-height:1.12;
    font-weight:800;
    color:#fff;
    margin-bottom:24px;
}

.why-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
    margin-bottom:45px;
}

/*==================================================
FEATURE LIST
==================================================*/

.why-features{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.why-feature{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:26px;
    border-radius:22px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
}

.why-feature:hover{
    transform:translateX(12px);
    border-color:rgba(24,195,126,.35);
    background:rgba(24,195,126,.08);
    box-shadow:0 20px 45px rgba(0,0,0,.18);
}

.why-icon{
    width:72px;
    height:72px;
    min-width:72px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.22);
    font-size:30px;
    transition:.35s;
}

.why-feature:hover .why-icon{
    transform:rotate(-8deg) scale(1.08);
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
}

.why-feature h3{
    font-size:22px;
    color:#fff;
    margin-bottom:10px;
    font-weight:700;
}

.why-feature p{
    color:#b9c8c1;
    font-size:15px;
    line-height:1.8;
}

/*==================================================
LIGHT MODE
==================================================*/

body.light-mode .why-section{
    background:#f5f7f9;
}

body.light-mode .why-title{
    color:#07120f;
}

body.light-mode .why-description{
    color:#555;
}

body.light-mode .why-image-inner{
    border:1px solid rgba(0,0,0,.08);
}

body.light-mode .why-feature{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

body.light-mode .why-feature h3{
    color:#111;
}

body.light-mode .why-feature p{
    color:#555;
}

body.light-mode .why-icon{
    background:#f4fff9;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .why-grid{
        gap:60px;
    }

    .why-title{
        font-size:46px;
    }

}

@media(max-width:992px){

    .why-section{
        padding:100px 0;
    }

    .why-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .why-image{
        position:relative;
        top:0;
    }

    .why-image img{
        height:520px;
    }

    .why-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .why-section{
        padding:80px 0;
    }

    .why-title{
        font-size:36px;
    }

    .why-description{
        font-size:15px;
    }

    .why-image img{
        height:420px;
    }

    .why-feature{
        padding:22px;
    }

    .why-icon{
        width:60px;
        height:60px;
        min-width:60px;
        font-size:26px;
    }

    .why-feature h3{
        font-size:20px;
    }

}

@media(max-width:480px){

    .why-title{
        font-size:30px;
    }

    .why-image-inner{
        border-radius:22px;
    }

    .why-image img{
        height:340px;
    }

    .why-feature{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .why-icon{
        margin-bottom:6px;
    }

    .why-feature h3{
        font-size:18px;
    }

    .why-feature p{
        font-size:14px;
    }

}

/*==================================================
NUMBERS THAT MATTER
==================================================*/

.stats-section{
    position:relative;
    padding:120px 0;
    overflow:hidden;
    background:linear-gradient(
        180deg,
        #07120f 0%,
        #0b1713 100%
    );
}

.stats-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(140px);
    left:50%;
    top:-280px;
    transform:translateX(-50%);
    z-index:0;
}

.stats-section .gt-container{
    position:relative;
    z-index:2;
}

/*==================================================
HEADING
==================================================*/

.stats-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.stats-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:25px;
}

.stats-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.stats-title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin-bottom:24px;
}

.stats-description{
    font-size:17px;
    color:#cfd9d4;
    line-height:1.9;
}

/*==================================================
GRID
==================================================*/

.stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/*==================================================
CARD
==================================================*/

.stat-card{
    position:relative;
    padding:45px 30px;
    text-align:center;
    border-radius:26px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
    overflow:hidden;
}

.stat-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:4px;
    background:linear-gradient(
        90deg,
        var(--primary),
        transparent
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-12px);
    border-color:rgba(24,195,126,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.stat-card:hover::before{
    transform:scaleX(1);
}

/*==================================================
NUMBER
==================================================*/

.stat-number{
    font-size:68px;
    font-weight:800;
    line-height:1;
    color:var(--primary);
    margin-bottom:22px;
}

.stat-card h3{
    font-size:24px;
    color:#fff;
    margin-bottom:16px;
    font-weight:700;
}

.stat-card p{
    font-size:15px;
    color:#b9c8c1;
    line-height:1.8;
}

/*==================================================
LIGHT MODE
==================================================*/

body.light-mode .stats-section{
    background:#f5f7f9;
}

body.light-mode .stats-title{
    color:#07120f;
}

body.light-mode .stats-description{
    color:#555;
}

body.light-mode .stat-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

body.light-mode .stat-card h3{
    color:#111;
}

body.light-mode .stat-card p{
    color:#555;
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .stats-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stats-title{
        font-size:46px;
    }

    .stat-number{
        font-size:60px;
    }

}

@media(max-width:992px){

    .stats-section{
        padding:100px 0;
    }

    .stats-heading{
        margin-bottom:60px;
    }

    .stats-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .stats-section{
        padding:80px 0;
    }

    .stats-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .stats-title{
        font-size:36px;
    }

    .stats-description{
        font-size:15px;
    }

    .stat-card{
        padding:35px 25px;
    }

    .stat-number{
        font-size:54px;
    }

    .stat-card h3{
        font-size:22px;
    }

}

@media(max-width:480px){

    .stats-title{
        font-size:30px;
    }

    .stat-card{
        padding:30px 22px;
        border-radius:20px;
    }

    .stat-number{
        font-size:46px;
    }

    .stat-card h3{
        font-size:20px;
    }

    .stat-card p{
        font-size:14px;
    }

}

/*==================================================
OUR PROCESS
==================================================*/

.process-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#081411 0%,#07120f 100%);
    overflow:hidden;
}

.process-section::before{
    content:"";
    position:absolute;
    right:-180px;
    top:-120px;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(24,195,126,.07);
    filter:blur(130px);
}

.process-section .gt-container{
    position:relative;
    z-index:2;
}

/*==============================
HEADING
==============================*/

.process-heading{
    max-width:850px;
    margin:0 auto 90px;
    text-align:center;
}

.process-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.process-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.process-title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin-bottom:22px;
}

.process-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*==============================
TIMELINE
==============================*/

.process-wrapper{
    position:relative;
    display:flex;
    flex-direction:column;
    gap:40px;
}

.process-wrapper::before{
    content:"";
    position:absolute;
    left:50%;
    top:0;
    bottom:0;
    width:3px;
    transform:translateX(-50%);
    background:linear-gradient(
        to bottom,
        transparent,
        var(--primary),
        transparent
    );
}

/*==============================
ITEM
==============================*/

.process-item{
    position:relative;
    display:flex;
    width:100%;
}

.process-item.left{
    justify-content:flex-start;
    padding-right:50%;
}

.process-item.right{
    justify-content:flex-end;
    padding-left:50%;
}

/*==============================
NUMBER
==============================*/

.process-number{
    position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color:#fff;
    font-size:20px;
    font-weight:700;
    z-index:5;
    box-shadow:0 0 30px rgba(24,195,126,.35);
}

/*==============================
CARD
==============================*/

.process-card{
    width:85%;
    padding:35px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
}

.process-card:hover{
    transform:translateY(-8px);
    border-color:rgba(24,195,126,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.process-card h3{
    color:#fff;
    font-size:26px;
    margin-bottom:15px;
    font-weight:700;
}

.process-card p{
    color:#b9c8c1;
    line-height:1.8;
    font-size:15px;
}

/*==============================
LIGHT MODE
==============================*/

body.light-mode .process-section{
    background:#f5f7f9;
}

body.light-mode .process-title{
    color:#07120f;
}

body.light-mode .process-description{
    color:#555;
}

body.light-mode .process-card{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

body.light-mode .process-card h3{
    color:#111;
}

body.light-mode .process-card p{
    color:#555;
}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

.process-title{
    font-size:42px;
}

.process-wrapper::before{
    left:35px;
}

.process-item{
    padding-left:90px !important;
    padding-right:0 !important;
}

.process-number{
    left:35px;
    width:60px;
    height:60px;
    font-size:18px;
}

.process-card{
    width:100%;
}

}

@media(max-width:768px){

.process-section{
    padding:80px 0;
}

.process-title{
    font-size:36px;
}

.process-description{
    font-size:15px;
}

.process-card{
    padding:28px;
}

.process-card h3{
    font-size:22px;
}

}

@media(max-width:480px){

.process-title{
    font-size:30px;
}

.process-card{
    padding:24px;
}

.process-card h3{
    font-size:20px;
}

.process-card p{
    font-size:14px;
}

.process-number{
    width:54px;
    height:54px;
    font-size:16px;
}

}

/*==================================================
PACKAGES
==================================================*/

.packages-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#07120f 0%,#0b1713 100%);
    overflow:hidden;
}

.packages-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-220px;
    top:-220px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(140px);
}

.packages-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    left:-180px;
    bottom:-180px;
    border-radius:50%;
    background:rgba(24,195,126,.05);
    filter:blur(120px);
}

.packages-section .gt-container{
    position:relative;
    z-index:2;
}

/*==================================================
HEADING
==================================================*/

.packages-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.packages-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:24px;
}

.packages-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.packages-title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin-bottom:24px;
}

.packages-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*==================================================
GRID
==================================================*/

.packages-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
    align-items:center;
}

/*==================================================
CARD
==================================================*/

.package-card{
    position:relative;
    padding:50px 35px;
    border-radius:30px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    transition:var(--transition);
    overflow:hidden;
}

.package-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:5px;
    background:linear-gradient(
        90deg,
        var(--primary),
        transparent
    );
    transform:scaleX(0);
    transform-origin:left;
    transition:.4s;
}

.package-card:hover{
    transform:translateY(-12px);
    border-color:rgba(24,195,126,.35);
    box-shadow:0 25px 60px rgba(0,0,0,.25);
}

.package-card:hover::before{
    transform:scaleX(1);
}

/*==================================================
FEATURED CARD
==================================================*/

.package-card.featured{
    transform:scale(1.06);
    border:2px solid var(--primary);
    box-shadow:0 25px 80px rgba(24,195,126,.25);
}

.package-card.featured:hover{
    transform:scale(1.06) translateY(-10px);
}

.popular-badge{
    position:absolute;
    top:20px;
    right:-45px;
    width:180px;
    text-align:center;
    padding:10px 0;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color:#fff;
    font-size:12px;
    font-weight:700;
    letter-spacing:1px;
    transform:rotate(45deg);
}

/*==================================================
PRICE
==================================================*/

.package-price{
    margin-top:10px;
    margin-bottom:20px;
    color:var(--primary);
    font-size:58px;
    font-weight:800;
    line-height:1;
}

.package-price span{
    font-size:28px;
    vertical-align:top;
}

.package-card h3{
    color:#fff;
    font-size:30px;
    margin-bottom:30px;
    font-weight:700;
}

/*==================================================
FEATURE LIST
==================================================*/

.package-card ul{
    list-style:none;
    margin:0;
    padding:0;
}

.package-card ul li{
    position:relative;
    padding-left:34px;
    margin-bottom:18px;
    color:#cfd9d4;
    line-height:1.7;
    font-size:15px;
}

.package-card ul li::before{
    content:"✓";
    position:absolute;
    left:0;
    top:0;
    width:22px;
    height:22px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(24,195,126,.15);
    color:var(--primary);
    font-size:13px;
    font-weight:700;
}

/*==================================================
BUTTON
==================================================*/

.package-btn{
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    width:100%;
    height:58px;
    margin-top:40px;
    border-radius:60px;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color:#fff;
    font-size:15px;
    font-weight:600;
    transition:var(--transition);
}

.package-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 18px 45px rgba(24,195,126,.35);
}

/*==================================================
CUSTOM PACKAGE
==================================================*/

.custom-package{
    margin-top:80px;
    padding:60px;
    text-align:center;
    border-radius:30px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.custom-package h3{
    font-size:36px;
    color:#fff;
    margin-bottom:15px;
}

.custom-package p{
    max-width:700px;
    margin:0 auto 30px;
    color:#cfd9d4;
    line-height:1.8;
}

.custom-package a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border-radius:60px;
    text-decoration:none;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    color:#fff;
    font-weight:600;
    transition:var(--transition);
}

.custom-package a:hover{
    transform:translateY(-4px);
}

/*==================================================
LIGHT MODE
==================================================*/

body.light-mode .packages-section{
    background:#f5f7f9;
}

body.light-mode .packages-title,
body.light-mode .package-card h3,
body.light-mode .custom-package h3{
    color:#07120f;
}

body.light-mode .packages-description,
body.light-mode .package-card ul li,
body.light-mode .custom-package p{
    color:#555;
}

body.light-mode .package-card,
body.light-mode .custom-package{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px){

    .packages-grid{
        gap:25px;
    }

    .packages-title{
        font-size:46px;
    }

    .package-price{
        font-size:52px;
    }

}

@media(max-width:992px){

    .packages-section{
        padding:100px 0;
    }

    .packages-grid{
        grid-template-columns:1fr;
    }

    .package-card.featured{
        transform:none;
    }

    .package-card.featured:hover{
        transform:translateY(-10px);
    }

    .packages-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .packages-section{
        padding:80px 0;
    }

    .packages-title{
        font-size:36px;
    }

    .packages-description{
        font-size:15px;
    }

    .package-card{
        padding:40px 28px;
    }

    .package-card h3{
        font-size:26px;
    }

    .package-price{
        font-size:48px;
    }

    .custom-package{
        padding:40px 25px;
    }

    .custom-package h3{
        font-size:30px;
    }

}

@media(max-width:480px){

    .packages-title{
        font-size:30px;
    }

    .package-card{
        padding:35px 22px;
        border-radius:22px;
    }

    .package-card h3{
        font-size:24px;
    }

    .package-price{
        font-size:42px;
    }

    .package-price span{
        font-size:22px;
    }

    .popular-badge{
        width:160px;
        right:-42px;
        font-size:11px;
    }

    .custom-package{
        border-radius:22px;
    }

    .custom-package h3{
        font-size:26px;
    }

}

/*==================================================
FEATURED COMPANIES
==================================================*/

.companies-section{
    position:relative;
    padding:120px 0;
    background:var(--dark);
    overflow:hidden;
}

.companies-section .gt-container{
    position:relative;
    z-index:2;
}

/*==============================
HEADING
==============================*/

.companies-heading{
    max-width:850px;
    margin:0 auto 70px;
    text-align:center;
}

.companies-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.4px;
    margin-bottom:24px;
}

.companies-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.companies-title{
    font-size:52px;
    font-weight:800;
    color:#fff;
    line-height:1.15;
    margin-bottom:20px;
}

.companies-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*==============================
LOGO SLIDER
==============================*/

.companies-slider{
    position:relative;
    overflow:hidden;
    width:100%;
    mask-image:linear-gradient(
        to right,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
    -webkit-mask-image:linear-gradient(
        to right,
        transparent,
        #000 10%,
        #000 90%,
        transparent
    );
}

.companies-track{
    display:flex;
    align-items:center;
    width:max-content;
    animation:company-scroll 35s linear infinite;
}

.companies-slider:hover .companies-track{
    animation-play-state:paused;
}

@keyframes company-scroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/*==============================
LOGO CARD
==============================*/

.company-logo{

    width:220px;
    height:120px;

    margin:0 20px;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    display:flex;
    align-items:center;
    justify-content:center;

    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    transition:.35s;

    flex-shrink:0;

}

.company-logo:hover{

    transform:translateY(-8px);

    border-color:rgba(24,195,126,.35);

    background:rgba(24,195,126,.08);

}

.company-logo img{

    max-width:130px;

    max-height:55px;

    object-fit:contain;

    opacity:.75;

    transition:.35s;

    filter:grayscale(100%);

}

.company-logo:hover img{

    opacity:1;

    filter:none;

    transform:scale(1.08);

}

/*==============================
LIGHT MODE
==============================*/

body.light-mode .companies-section{

    background:#f5f7f9;

}

body.light-mode .companies-title{

    color:#07120f;

}

body.light-mode .companies-description{

    color:#555;

}

body.light-mode .company-logo{

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

/*==============================
RESPONSIVE
==============================*/

@media(max-width:992px){

    .companies-title{

        font-size:42px;

    }

    .company-logo{

        width:180px;

        height:100px;

    }

}

@media(max-width:768px){

    .companies-section{

        padding:80px 0;

    }

    .companies-title{

        font-size:36px;

    }

    .companies-description{

        font-size:15px;

    }

    .company-logo{

        width:150px;

        height:90px;

        margin:0 12px;

    }

    .company-logo img{

        max-width:100px;

    }

}

@media(max-width:480px){

    .companies-title{

        font-size:30px;

    }

    .company-logo{

        width:130px;

        height:80px;

    }

}

/*==================================================
RECENT EPISODES
==================================================*/

.episodes-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#081411 0%,#07120f 100%);
    overflow:hidden;
}

.episodes-section::before{
    content:"";
    position:absolute;
    left:-220px;
    top:-220px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(140px);
}

.episodes-section .gt-container{
    position:relative;
    z-index:2;
}

/*========================================
HEADING
========================================*/

.episodes-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.episodes-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(24,195,126,.12);

    border:1px solid rgba(24,195,126,.25);

    color:#41ff9c;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.4px;

    margin-bottom:24px;

}

.episodes-tag::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

}

.episodes-title{

    font-size:52px;

    font-weight:800;

    color:#fff;

    line-height:1.15;

    margin-bottom:22px;

}

.episodes-description{

    color:#cfd9d4;

    font-size:17px;

    line-height:1.9;

}

/*========================================
FEATURED EPISODE
========================================*/

.featured-episode{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    gap:60px;

    align-items:center;

    margin-bottom:80px;

}

.featured-thumbnail{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

}

.featured-thumbnail img{

    width:100%;

    height:500px;

    display:block;

    object-fit:cover;

    transition:.5s;

}

.featured-thumbnail:hover img{

    transform:scale(1.06);

}

.featured-thumbnail::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.55),
        transparent 60%
    );

}

/*========================================
PLAY BUTTON
========================================*/

.play-btn{

    position:absolute;

    left:50%;

    top:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    font-size:34px;

    color:#fff;

    background:rgba(24,195,126,.9);

    backdrop-filter:blur(15px);

    z-index:2;

    transition:.35s;

}

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.12);

}

/*========================================
FEATURED CONTENT
========================================*/

.episode-category{

    display:inline-block;

    margin-bottom:18px;

    color:var(--primary);

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.featured-content h3{

    font-size:42px;

    color:#fff;

    margin-bottom:24px;

    line-height:1.2;

}

.featured-content p{

    color:#cfd9d4;

    line-height:1.9;

    margin-bottom:35px;

}

.episode-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    text-decoration:none;

    font-weight:600;

    transition:var(--transition);

}

.episode-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(24,195,126,.35);

}

/*========================================
EPISODE GRID
========================================*/

.episodes-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.episode-card{

    overflow:hidden;

    border-radius:24px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:var(--transition);

}

.episode-card:hover{

    transform:translateY(-10px);

    border-color:rgba(24,195,126,.35);

}

.episode-card img{

    width:100%;

    height:250px;

    object-fit:cover;

    transition:.5s;

}

.episode-card:hover img{

    transform:scale(1.08);

}

.episode-info{

    padding:30px;

}

.episode-info span{

    color:var(--primary);

    font-size:13px;

    text-transform:uppercase;

    letter-spacing:.4px;

    font-weight:600;

}

.episode-info h3{

    margin-top:14px;

    color:#fff;

    font-size:24px;

    line-height:1.4;

}

/*========================================
FOOTER BUTTON
========================================*/

.episodes-footer{

    text-align:center;

    margin-top:60px;

}

/*========================================
LIGHT MODE
========================================*/

body.light-mode .episodes-section{

    background:#f5f7f9;

}

body.light-mode .episodes-title,

body.light-mode .featured-content h3,

body.light-mode .episode-info h3{

    color:#07120f;

}

body.light-mode .episodes-description,

body.light-mode .featured-content p{

    color:#555;

}

body.light-mode .episode-card{

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

body.light-mode .featured-thumbnail{

    border:1px solid rgba(0,0,0,.08);

}

/*========================================
RESPONSIVE
========================================*/

@media(max-width:1200px){

    .featured-episode{

        gap:40px;

    }

    .episodes-title{

        font-size:46px;

    }

}

@media(max-width:992px){

    .episodes-section{

        padding:100px 0;

    }

    .featured-episode{

        grid-template-columns:1fr;

    }

    .episodes-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .featured-content h3{

        font-size:34px;

    }

}

@media(max-width:768px){

    .episodes-section{

        padding:80px 0;

    }

    .episodes-title{

        font-size:36px;

    }

    .episodes-description{

        font-size:15px;

    }

    .featured-thumbnail img{

        height:320px;

    }

    .episodes-grid{

        grid-template-columns:1fr;

    }

    .episode-info{

        padding:24px;

    }

}

@media(max-width:480px){

    .episodes-title{

        font-size:30px;

    }

    .featured-thumbnail{

        border-radius:22px;

    }

    .featured-thumbnail img{

        height:240px;

    }

    .play-btn{

        width:70px;

        height:70px;

        font-size:26px;

    }

    .featured-content h3{

        font-size:28px;

    }

    .episode-info h3{

        font-size:20px;

    }

}

/*==================================================
BEHIND THE SCENES
==================================================*/

.bts-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#07120f 0%,#081411 100%);
    overflow:hidden;
}

.bts-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-220px;
    top:-220px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(140px);
}

.bts-section .gt-container{
    position:relative;
    z-index:2;
}

/*=========================================
HEADING
=========================================*/

.bts-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.bts-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.bts-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.bts-title{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.bts-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*=========================================
BENTO GRID
=========================================*/

.bts-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    grid-template-rows:320px 260px;

    gap:24px;

}

.bts-item{

    position:relative;

    overflow:hidden;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:var(--transition);

    cursor:pointer;

}

.bts-item.large{

    grid-row:span 2;

}

.bts-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}

.bts-item:hover img{

    transform:scale(1.08);

}

.bts-item::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.75),
        rgba(0,0,0,.15),
        transparent
    );

    z-index:1;

}

.bts-item:hover{

    transform:translateY(-10px);

    border-color:rgba(24,195,126,.35);

    box-shadow:0 25px 60px rgba(0,0,0,.25);

}

/*=========================================
OVERLAY
=========================================*/

.bts-overlay{

    position:absolute;

    left:30px;

    right:30px;

    bottom:28px;

    z-index:2;

}

.bts-overlay h3{

    color:#fff;

    font-size:28px;

    font-weight:700;

    margin-bottom:8px;

}

.bts-overlay p{

    color:#d7dfda;

    font-size:15px;

    line-height:1.7;

}

/*=========================================
LIGHT MODE
=========================================*/

body.light-mode .bts-section{

    background:#f5f7f9;

}

body.light-mode .bts-title{

    color:#07120f;

}

body.light-mode .bts-description{

    color:#555;

}

body.light-mode .bts-item{

    border:1px solid rgba(0,0,0,.08);

    background:#fff;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .bts-grid{

        grid-template-columns:1.5fr 1fr;

        grid-template-rows:300px 240px 240px;

    }

    .bts-item.large{

        grid-row:span 2;

    }

    .bts-title{

        font-size:46px;

    }

}

@media(max-width:992px){

    .bts-section{

        padding:100px 0;

    }

    .bts-grid{

        grid-template-columns:1fr 1fr;

        grid-template-rows:320px 220px 220px;

    }

    .bts-item.large{

        grid-column:span 2;

        grid-row:auto;

        height:380px;

    }

    .bts-title{

        font-size:42px;

    }

}

@media(max-width:768px){

    .bts-section{

        padding:80px 0;

    }

    .bts-title{

        font-size:36px;

    }

    .bts-description{

        font-size:15px;

    }

    .bts-grid{

        display:grid;

        grid-template-columns:1fr;

        grid-template-rows:auto;

        gap:18px;

    }

    .bts-item,

    .bts-item.large{

        height:280px;

    }

    .bts-overlay{

        left:22px;

        right:22px;

        bottom:20px;

    }

    .bts-overlay h3{

        font-size:22px;

    }

}

@media(max-width:480px){

    .bts-title{

        font-size:30px;

    }

    .bts-item,

    .bts-item.large{

        height:220px;

        border-radius:22px;

    }

    .bts-overlay h3{

        font-size:20px;

    }

    .bts-overlay p{

        font-size:14px;

    }

}

/*==================================================
FAQ SECTION
==================================================*/

.faq-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#07120f 0%,#081411 100%);
    overflow:hidden;
}

.faq-section::before{
    content:"";
    position:absolute;
    left:-220px;
    top:-220px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(140px);
}

.faq-section .gt-container{
    position:relative;
    z-index:2;
}

/*=========================================
GRID
=========================================*/

.faq-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:80px;
    align-items:start;
}

/*=========================================
LEFT CONTENT
=========================================*/

.faq-left{
    position:sticky;
    top:120px;
}

.faq-tag{

    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(24,195,126,.12);

    border:1px solid rgba(24,195,126,.25);

    color:#41ff9c;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.4px;

    margin-bottom:24px;

}

.faq-tag::before{

    content:"";

    width:8px;
    height:8px;

    border-radius:50%;

    background:var(--primary);

}

.faq-title{

    font-size:52px;

    color:#fff;

    line-height:1.15;

    margin-bottom:24px;

    font-weight:800;

}

.faq-description{

    color:#cfd9d4;

    line-height:1.9;

    font-size:17px;

    margin-bottom:45px;

}

/*=========================================
CONTACT BOX
=========================================*/

.faq-contact{

    padding:35px;

    border-radius:28px;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

}

.faq-contact h3{

    color:#fff;

    font-size:28px;

    margin-bottom:15px;

}

.faq-contact p{

    color:#cfd9d4;

    line-height:1.8;

    margin-bottom:25px;

}

.faq-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 34px;

    border-radius:60px;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.faq-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(24,195,126,.35);

}

/*=========================================
RIGHT
=========================================*/

.faq-right{

    display:flex;

    flex-direction:column;

    gap:22px;

}

/*=========================================
ITEM
=========================================*/

.faq-item{

    border-radius:24px;

    overflow:hidden;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    transition:.35s;

}

.faq-item:hover{

    border-color:rgba(24,195,126,.35);

}

.faq-item.active{

    border-color:var(--primary);

    box-shadow:0 15px 40px rgba(24,195,126,.15);

}

/*=========================================
QUESTION
=========================================*/

.faq-question{

    width:100%;

    padding:28px 30px;

    background:none;

    border:none;

    outline:none;

    display:flex;

    justify-content:space-between;

    align-items:center;

    cursor:pointer;

    text-align:left;

}

.faq-question span{

    color:#fff;

    font-size:22px;

    font-weight:600;

    line-height:1.4;

}

.faq-question i{

    width:42px;

    height:42px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(24,195,126,.12);

    color:var(--primary);

    font-style:normal;

    font-size:28px;

    transition:.35s;

    flex-shrink:0;

}

.faq-item.active .faq-question i{

    transform:rotate(45deg);

    background:var(--primary);

    color:#fff;

}

/*=========================================
ANSWER
=========================================*/

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .45s ease;

}

.faq-answer p{

    padding:0 30px 30px;

    color:#cfd9d4;

    line-height:1.9;

    font-size:16px;

}

/*=========================================
LIGHT MODE
=========================================*/

body.light-mode .faq-section{

    background:#f5f7f9;

}

body.light-mode .faq-title,

body.light-mode .faq-contact h3{

    color:#07120f;

}

body.light-mode .faq-description,

body.light-mode .faq-contact p,

body.light-mode .faq-answer p{

    color:#555;

}

body.light-mode .faq-contact,

body.light-mode .faq-item{

    background:#fff;

    border:1px solid rgba(0,0,0,.08);

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

body.light-mode .faq-question span{

    color:#111;

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

    .faq-grid{

        grid-template-columns:350px 1fr;

        gap:60px;

    }

    .faq-title{

        font-size:46px;

    }

}

@media(max-width:992px){

    .faq-section{

        padding:100px 0;

    }

    .faq-grid{

        grid-template-columns:1fr;

        gap:50px;

    }

    .faq-left{

        position:relative;

        top:0;

    }

    .faq-title{

        font-size:42px;

    }

}

@media(max-width:768px){

    .faq-section{

        padding:80px 0;

    }

    .faq-title{

        font-size:36px;

    }

    .faq-description{

        font-size:15px;

    }

    .faq-question{

        padding:22px;

    }

    .faq-question span{

        font-size:18px;

    }

    .faq-answer p{

        padding:0 22px 22px;

        font-size:15px;

    }

    .faq-contact{

        padding:28px;

    }

}

@media(max-width:480px){

    .faq-title{

        font-size:30px;

    }

    .faq-question span{

        font-size:17px;

        padding-right:15px;

    }

    .faq-question i{

        width:36px;

        height:36px;

        font-size:22px;

    }

    .faq-contact{

        border-radius:22px;

    }

}

/*==================================================
FINAL CTA
==================================================*/

.cta-section{
    position:relative;
    padding:160px 0;
    overflow:hidden;

    background:url("assets/images/final-cta.jpg") center center/cover no-repeat;

}

.cta-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        rgba(7,18,15,.85),
        rgba(7,18,15,.88)
    );

}

.cta-section .gt-container{

    position:relative;
    z-index:2;

}

.cta-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.cta-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(24,195,126,.12);

    border:1px solid rgba(24,195,126,.25);

    color:#41ff9c;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.4px;

    margin-bottom:24px;

}

.cta-tag::before{

    content:"";

    width:8px;

    height:8px;

    border-radius:50%;

    background:var(--primary);

}

.cta-title{

    font-size:62px;

    color:#fff;

    font-weight:800;

    line-height:1.1;

    margin-bottom:28px;

}

.cta-description{

    max-width:760px;

    margin:0 auto 45px;

    color:#d3ddd8;

    font-size:18px;

    line-height:1.9;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:22px;

    flex-wrap:wrap;

}

.cta-btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    min-width:220px;

    height:62px;

    padding:0 36px;

    border-radius:60px;

    text-decoration:none;

    font-size:16px;

    font-weight:600;

    transition:.35s;

}

.cta-btn.primary{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );

    color:#fff;

}

.cta-btn.primary:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 45px rgba(24,195,126,.35);

}

.cta-btn.secondary{

    border:1px solid rgba(255,255,255,.2);

    background:rgba(255,255,255,.05);

    backdrop-filter:blur(15px);

    color:#fff;

}

.cta-btn.secondary:hover{

    background:#fff;

    color:#111;

}

/*=========================
LIGHT MODE
=========================*/

body.light-mode .cta-overlay{

    background:linear-gradient(
        rgba(255,255,255,.82),
        rgba(255,255,255,.90)
    );

}

body.light-mode .cta-title{

    color:#07120f;

}

body.light-mode .cta-description{

    color:#555;

}

body.light-mode .cta-btn.secondary{

    border:1px solid rgba(0,0,0,.1);

    color:#111;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

.cta-title{

font-size:48px;

}

}

@media(max-width:768px){

.cta-section{

padding:100px 0;

}

.cta-title{

font-size:38px;

}

.cta-description{

font-size:16px;

}

.cta-btn{

width:100%;

max-width:320px;

}

}

@media(max-width:480px){

.cta-title{

font-size:30px;

}

.cta-description{

font-size:15px;

}

}

/*==================================================
CONTACT
==================================================*/

.contact-section{
    position:relative;
    padding:120px 0;
    background:linear-gradient(180deg,#07120f 0%,#081411 100%);
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-220px;
    bottom:-220px;
    border-radius:50%;
    background:rgba(24,195,126,.06);
    filter:blur(140px);
}

.contact-section .gt-container{
    position:relative;
    z-index:2;
}

/*=====================================
HEADING
=====================================*/

.contact-heading{
    max-width:850px;
    margin:0 auto 80px;
    text-align:center;
}

.contact-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    border-radius:50px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.25);
    color:#41ff9c;
    font-size:13px;
    font-weight:600;
    letter-spacing:.4px;
    text-transform:uppercase;
    margin-bottom:24px;
}

.contact-tag::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--primary);
}

.contact-title{
    font-size:52px;
    font-weight:800;
    line-height:1.15;
    color:#fff;
    margin-bottom:22px;
}

.contact-description{
    color:#cfd9d4;
    font-size:17px;
    line-height:1.9;
}

/*=====================================
GRID
=====================================*/

.contact-grid{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:60px;
    align-items:start;
}

/*=====================================
CONTACT INFO
=====================================*/

.contact-info{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.contact-card{
    display:flex;
    align-items:flex-start;
    gap:20px;
    padding:28px;
    border-radius:24px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    transition:var(--transition);
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:rgba(24,195,126,.35);
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.contact-icon{
    width:65px;
    height:65px;
    min-width:65px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    background:rgba(24,195,126,.12);
    border:1px solid rgba(24,195,126,.20);
    font-size:28px;
    transition:.35s;
}

.contact-card:hover .contact-icon{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    transform:rotate(-8deg);
}

.contact-card h3{
    color:#fff;
    font-size:22px;
    margin-bottom:10px;
    font-weight:700;
}

.contact-card p{
    color:#cfd9d4;
    line-height:1.8;
    font-size:15px;
}

/*=====================================
SOCIAL LINKS
=====================================*/

.contact-social{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:10px;
}

.contact-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.35s;
}

.contact-social a:hover{
    background:var(--primary);
    border-color:var(--primary);
    transform:translateY(-4px);
}

/*=====================================
FORM
=====================================*/

.contact-form-wrap{
    padding:40px;
    border-radius:30px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
}

.contact-form{
    display:flex;
    flex-direction:column;
    gap:22px;
}

.form-row{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:none;
    outline:none;
    padding:18px 22px;
    border-radius:18px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    color:#fff;
    font-size:15px;
    transition:.35s;
}

.contact-form textarea{
    resize:vertical;
    min-height:180px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder{
    color:#9db3a8;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(24,195,126,.12);
}

.contact-form button{
    height:60px;
    border:none;
    border-radius:60px;
    cursor:pointer;
    font-size:16px;
    font-weight:600;
    color:#fff;
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-dark)
    );
    transition:.35s;
}

.contact-form button:hover{
    transform:translateY(-5px);
    box-shadow:0 18px 45px rgba(24,195,126,.35);
}

/*=====================================
LIGHT MODE
=====================================*/

body.light-mode .contact-section{
    background:#f5f7f9;
}

body.light-mode .contact-title,
body.light-mode .contact-card h3{
    color:#07120f;
}

body.light-mode .contact-description,
body.light-mode .contact-card p{
    color:#555;
}

body.light-mode .contact-card,
body.light-mode .contact-form-wrap{
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

body.light-mode .contact-social a{
    color:#111;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
}

body.light-mode .contact-form input,
body.light-mode .contact-form textarea{
    background:#fafafa;
    border:1px solid rgba(0,0,0,.08);
    color:#111;
}

body.light-mode .contact-form input::placeholder,
body.light-mode .contact-form textarea::placeholder{
    color:#777;
}

/*=====================================
RESPONSIVE
=====================================*/

@media(max-width:1200px){

    .contact-grid{
        grid-template-columns:360px 1fr;
    }

    .contact-title{
        font-size:46px;
    }

}

@media(max-width:992px){

    .contact-section{
        padding:100px 0;
    }

    .contact-grid{
        grid-template-columns:1fr;
    }

    .contact-title{
        font-size:42px;
    }

}

@media(max-width:768px){

    .contact-section{
        padding:80px 0;
    }

    .contact-title{
        font-size:36px;
    }

    .contact-description{
        font-size:15px;
    }

    .contact-form-wrap{
        padding:28px;
    }

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-card{
        padding:22px;
    }

}

@media(max-width:480px){

    .contact-title{
        font-size:30px;
    }

    .contact-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }

    .contact-icon{
        margin-bottom:10px;
    }

    .contact-form-wrap{
        padding:22px;
        border-radius:22px;
    }

    .contact-social{
        justify-content:center;
    }

}

/*==================================================
FOOTER
==================================================*/

.footer{
    position:relative;
    background:#05100d;
    padding:90px 0 30px;
    border-top:1px solid rgba(255,255,255,.08);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.2fr;
    gap:50px;
    margin-bottom:60px;
}

.footer-logo img{
    height:55px;
    margin-bottom:25px;
}

.footer-about p{
    color:#b7c9c0;
    line-height:1.9;
    margin-bottom:30px;
}

.footer h3{
    color:#fff;
    font-size:22px;
    margin-bottom:24px;
}

.footer ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer li{
    margin-bottom:16px;
    color: white;
}

.footer a{
    color:#b7c9c0;
    text-decoration:none;
    transition:.3s;
}

.footer a:hover{
    color:var(--primary);
}

.footer-social{
    display:flex;
    gap:14px;
}

.footer-social a{
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    transition:.3s;
}

.footer-social a:hover{
    background:var(--primary);
    color:#fff;
    transform:translateY(-4px);
}

.footer-bottom{
    padding-top:30px;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.footer-bottom p{
    color:#8ea69b;
}

.footer-links{
    display:flex;
    gap:25px;
}

.footer-links a{
    color:#8ea69b;
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:992px){

    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .footer{
        padding:70px 0 25px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-links{
        flex-wrap:wrap;
        justify-content:center;
    }

}



