:root {
    --brand-green: #42b80e;
    --brand-dark: #292a2e;
    --brand-green-light: #e8f8e0;
    --brand-green-mid: #d0f0bb;
    --nav-height: 64px;
    --max-width: 1400px;
    --font-body: "Space Grotesk", sans-serif;
    --font-body-alt: "DM Sans", sans-serif;
    --font-heading: "DM Sans", sans-serif;
    --shadow-nav: 0 1px 0 rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.05);
    --shadow-dropdown:
        0 8px 40px rgba(41, 42, 46, 0.13), 0 2px 8px rgba(41, 42, 46, 0.07);
    --radius-dropdown: 14px;
    --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
    
    --card-w: 300px;
    --card-gap: 16px;
    --card-radius: 22px;
    --card-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.05) 0px 8px 32px;

    --foot-border: #e8e9eb;
    --foot-muted: #8a8d96;
    --foot-link: #3a3b40;
    --foot-link-hover: var(--brand-green);
}

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

body {
    font-family: "Google Sans", sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--bg);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

button,
a,
select,
input,
textarea {
    cursor: pointer;
    font-family: "Google Sans", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3 {
    font-family: "Lexend", sans-serif;
}

.title-highlight {
    color: var(--brand);
}

.hero-section {
    width: 100%;
    background: #fff;
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section > div {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5rem 2rem;
    width: 100%;
}

.hero-body {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.65s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.65s cubic-bezier(0.22, 0.68, 0, 1.1);
}

.hero-content.hero-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.8px;
    color: var(--brand-dark);
    margin-bottom: 1.4rem;
}

.hero-heading span {
    color: var(--brand-green);
}

.hero-desc {
    font-family: var(--font-body-alt);
    font-size: 0.88rem;
    line-height: 1.8;
    color: #6b6f7a;
    max-width: 460px;
    margin-bottom: 2.4rem;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.72rem 1.5rem;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 16px rgba(66, 184, 14, 0.28);
}

.hero-btn-primary:hover {
    background: #37a00c;
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(66, 184, 14, 0.36);
}

.hero-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    transition:
        gap var(--transition),
        color var(--transition);
}

.hero-btn-ghost:hover {
    gap: 10px;
    color: var(--brand-green);
}

.hero-btn-ghost i {
    font-size: 0.85rem;
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(28px);
    transition:
        opacity 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.18s,
        transform 0.7s cubic-bezier(0.22, 0.68, 0, 1.1) 0.18s;
}

.hero-visual.hero-visible {
    opacity: 1;
    transform: translateX(0);
}

.hero-img-main {
    width: 100%;
    border-radius: 18px;
    display: block;
}

.prtn-wrap {
    padding-top: 2.5rem;
    opacity: 0;
    transform: translateY(16px);
    transition:
        opacity 0.6s cubic-bezier(0.22, 0.68, 0, 1.1) 0.35s,
        transform 0.6s cubic-bezier(0.22, 0.68, 0, 1.1) 0.35s;
}

.prtn-wrap.hero-visible {
    opacity: 1;
    transform: translateY(0);
}

.prtn-grid {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.prtn-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0.6rem 0;
    width: calc(100% / 6);
}

.prtn-item img {
    height: 64px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
    display: block;
    filter: brightness(0) opacity(0.3);
    opacity: 1;
    transition: filter 0.3s;
}

.prtn-item img:hover {
    filter: brightness(0) opacity(0.55);
}

@media (max-width: 900px) {
    .hero-section > div {
        padding: 4rem 2rem;
    }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero-visual {
        transform: translateY(20px);
        order: 2;
    }
    .hero-visual.hero-visible {
        transform: translateY(0);
    }
    .hero-content {
        transform: translateY(14px);
    }
    .prtn-item {
        width: calc(100% / 3);
    }
}

@media (max-width: 560px) {
    .hero-section > div {
        padding: 4rem 1.2rem;
    }
    .hero-heading {
        font-size: 2rem;
        letter-spacing: -0.4px;
    }
    .hero-desc {
        font-size: 0.82rem;
    }
    .prtn-item {
        width: calc(100% / 3);
    }
    .prtn-item img {
        height: 26px;
        max-width: 90px;
    }
}
.dest-section {
    width: 100%;
    background: #000;
    padding: 88px 0 0;
    overflow: hidden;
    position: relative;
}

.dest-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
}

.dest-header {
    margin-bottom: 52px;
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.7s ease,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.dest-header.dest-visible {
    opacity: 1;
    transform: translateY(0);
}

.dest-label {
    font-family: var(--font-body);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--brand-green);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dest-label-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-green);
    flex-shrink: 0;
}

.dest-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.5vw, 60px);
    line-height: 1.02;
    color: #fff;
    letter-spacing: -0.3px;
}

.dest-title span {
    color: var(--brand-green);
}

.dest-map-wrap {
    position: relative;
    width: 100%;
    opacity: 0;
    transform: scale(0.94);
    transition:
        opacity 0.85s ease 0.15s,
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.dest-map-wrap.dest-visible {
    opacity: 1;
    transform: scale(1);
}

.dest-map-img {
    width: 100%;
    display: block;
    object-fit: cover;
    border-radius: 16px 16px 0 0;
    min-height: 420px;
    object-position: center;
}

.dest-channels {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 0 36px;
    gap: 0;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s ease 0.35s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.35s;
}

.dest-channels.dest-visible {
    opacity: 1;
    transform: translateY(0);
}

.dest-channel {
    padding: 0 32px 0 0;
    position: relative;
}

.dest-channel:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 4px;
    right: 0;
    width: 1px;
    height: calc(100% - 4px);
    background: rgba(255, 255, 255, 0.14);
}

.dest-channel:not(:first-child) {
    padding-left: 32px;
    padding-right: 32px;
}

.dest-channel:last-child {
    padding-left: 32px;
    padding-right: 0;
}

.dest-channel-title {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.dest-channel-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.dest-channel-list li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body-alt);
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.58);
    font-weight: 400;
}

.dest-channel-list li::before {
    content: "";
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--brand-green);
    flex-shrink: 0;
}

#destMobileChannels {
    display: none;
}

#destMobileChannels .dest-channels {
    position: relative;
    padding: 0;
    opacity: 1;
    transform: none;
}

@media (max-width: 900px) {
    .dest-channels {
        position: relative;
        grid-template-columns: 1fr;
        padding: 32px 0 0;
        gap: 28px;
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dest-channels.dest-visible {
        opacity: 1;
        transform: none;
    }

    .dest-map-wrap {
        border-radius: 12px;
    }

    .dest-map-img {
        min-height: 300px;
        border-radius: 12px;
    }

    .dest-map-overlay {
        border-radius: 12px;
    }

    .dest-channel {
        padding: 0 0 28px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dest-channel:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .dest-channel:not(:last-child)::after {
        display: none;
    }

    .dest-channel:not(:first-child) {
        padding-left: 0;
    }

    .dest-mobile-channels {
        padding: 36px 40px 56px;
    }
}

@media (max-width: 560px) {
    .dest-section {
        padding: 64px 0 0;
    }
    .dest-inner {
        padding: 0 24px;
    }
    .dest-channels {
        padding: 28px 0 0;
    }
    .dest-mobile-channels {
        padding: 28px 24px 48px;
    }
    .dest-map-img {
        min-height: 240px;
    }
}

.bulk-section {
    width: 100%;
    background: #fff;
    padding: 88px 0 96px;
    position: relative;
    overflow: hidden;
}

.bulk-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.bulk-header {
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.65s ease,
        transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.bulk-header.bulk-visible {
    opacity: 1;
    transform: translateY(0);
}

.bulk-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.04;
    color: var(--brand-dark);
    letter-spacing: -0.3px;
}

.bulk-title span {
    color: var(--brand-green);
}

.bulk-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.bulk-visual {
    position: relative;
    opacity: 0;
    transform: translateX(-40px);
    transition:
        opacity 0.7s ease 0.1s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.bulk-visual.bulk-visible {
    opacity: 1;
    transform: translateX(0);
}

.bulk-img-main {
    width: 100%;
    border-radius: 18px;
    display: block;
    object-fit: cover;
    height: 460px;
    object-position: center;
}

.bulk-img-badge {
    position: absolute;
    top: 50%;
    right: -52px;
    transform: translateY(-50%);
    width: 208px;
    height: 150px;
    border-radius: 8px;
    object-fit: contain;
    display: block;
    z-index: 2;
}

.bulk-content {
    opacity: 0;
    transform: translateX(40px);
    transition:
        opacity 0.7s ease 0.2s,
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

.bulk-content.bulk-visible {
    opacity: 1;
    transform: translateX(0);
}

.bulk-content-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    line-height: 1.08;
    color: var(--brand-dark);
    margin-bottom: 18px;
    letter-spacing: -0.2px;
}

.bulk-content-title span {
    color: var(--brand-green);
}

.bulk-content-desc {
    font-family: var(--font-body-alt);
    font-size: 15px;
    line-height: 1.75;
    color: #6b6f7a;
    margin-bottom: 28px;
    max-width: 480px;
}

.bulk-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.bulk-list-item {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-body-alt);
    font-size: 14px;
    color: #5a5d66;
    line-height: 1.6;
}

.bulk-list-item i {
    color: var(--brand-green);
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.bulk-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--brand-green);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: gap var(--transition);
}

.bulk-learn-more:hover {
    gap: 11px;
}

@media (max-width: 960px) {
    .bulk-body {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .bulk-visual {
        transform: translateY(-28px);
    }
    .bulk-visual.bulk-visible {
        transform: translateY(0);
    }
    .bulk-img-badge {
        right: 16px;
        top: auto;
        bottom: -36px;
        transform: none;
        width: 88px;
        height: 88px;
    }
    .bulk-content {
        transform: translateY(28px);
    }
    .bulk-content.bulk-visible {
        transform: translateY(0);
    }
    .bulk-content-desc {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .bulk-section { padding: 64px 0 72px; }
    .bulk-inner { padding: 0 24px; }
    .bulk-header { margin-bottom: 40px; }
    .bulk-img-main { height: 300px; }
    .bulk-img-badge { width: 72px; height: 72px; right: 12px; bottom: -28px; }
}
.why-section {
    width: 100%;
    background: #f0f4f8;
    display: flex;
    align-items: center;
}

.why-section > div {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 5.5rem 2rem;
    width: 100%;
}

.why-inner {
    width: 100%;
}

.why-header {
    margin-bottom: 4rem;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.55s cubic-bezier(0.22, 0.68, 0, 1.1);
}

.why-header.why-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.4px;
    color: var(--brand-dark);
    /* max-width: 560px; */
}

.why-heading span {
    color: var(--brand-green);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
}

.why-card {
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.55s cubic-bezier(0.22, 0.68, 0, 1.1),
        transform 0.55s cubic-bezier(0.22, 0.68, 0, 1.1);
}

.why-card.why-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-card-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: flex-start;
    /* justify-content: center; */
    color: var(--brand-green);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

.why-card-desc {
    font-family: var(--font-body-alt);
    font-size: 0.8rem;
    line-height: 1.8;
    color: #5a5d6e;
    margin-bottom: 0.85rem;
}

.why-card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.why-card-list li {
    font-family: var(--font-body-alt);
    font-size: 0.78rem;
    line-height: 1.6;
    color: #5a5d6e;
    padding-left: 1.1rem;
    position: relative;
}

.why-card-list li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: var(--brand-green);
    font-weight: 600;
}

@media (max-width: 900px) {
    .why-section > div {
        padding: 4rem 2rem;
    }
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem 3rem;
    }
}

@media (max-width: 560px) {
    .why-section > div {
        padding: 4rem 1.2rem;
    }
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.2rem;
    }
    .why-heading {
        font-size: 1.5rem;
    }
}
.faq-section {
    background: #fff;
    width: 100%;
    overflow-x: hidden;
  }

  .faq-container {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    padding: 88px 40px;
  }

  .faq-header {
    position: sticky;
    top: 88px;
    opacity: 0;
    transform: translateX(-48px);
    transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22,1,0.36,1);
  }

  .faq-header.faq-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .faq-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    color: var(--brand-dark);
    margin-bottom: 20px;
    letter-spacing: -0.3px;
  }

  .faq-subtitle {
    font-family: var(--font-body-alt);
    font-size: 14.5px;
    color: #6b6f7a;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 320px;
  }

  .faq-contact {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--brand-green);
    text-decoration: none;
    transition: gap var(--transition);
  }

  .faq-contact:hover {
    gap: 10px;
  }

  .faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .faq-item {
    background: #f7f8fa;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid transparent;
    transition: background var(--transition), border-color var(--transition);
    opacity: 0;
    transform: translateX(48px);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22,1,0.36,1), background var(--transition), border-color var(--transition);
  }

  .faq-item.faq-visible {
    opacity: 1;
    transform: translateX(0);
  }

  .faq-item:hover {
    background: #f0f2f4;
  }

  .faq-item.faq-active {
    background: var(--brand-green-light);
    border-color: var(--brand-green-mid);
  }

  .faq-question-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px;
    cursor: pointer;
    gap: 20px;
    -webkit-user-select: none;
    user-select: none;
  }

  .faq-question {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.5;
    flex: 1;
    font-family: var(--font-body);
  }

  .faq-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--transition), transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow var(--transition);
    box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    font-size: 14px;
    color: var(--brand-dark);
  }

  .faq-item:hover .faq-icon {
    background: var(--brand-green);
    color: #fff;
    box-shadow: 0 2px 12px rgba(66,184,14,0.25);
  }

  .faq-item.faq-active .faq-icon {
    background: var(--brand-green);
    color: #fff;
    transform: rotate(45deg);
    box-shadow: 0 2px 12px rgba(66,184,14,0.25);
  }

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

  .faq-item.faq-active .faq-answer {
    max-height: 400px;
    padding: 0 26px 26px;
  }

  .faq-answer p {
    font-family: var(--font-body-alt);
    font-size: 14px;
    line-height: 1.75;
    color: #5a5d66;
    padding-top: 2px;
    border-top: 1px solid rgba(66,184,14,0.15);
    padding-top: 16px;
  }

  @media (max-width: 1024px) {
    .faq-container {
      grid-template-columns: 1fr;
      gap: 48px;
    }
    .faq-header {
      position: static;
    }
    .faq-subtitle {
      max-width: 100%;
    }
  }

  @media (max-width: 768px) {
    .faq-container { padding: 60px 24px; }
    .faq-title { font-size: 34px; }
    .faq-question { font-size: 14px; }
    .faq-question-wrapper { padding: 18px 20px; }
    .faq-item.faq-active .faq-answer { padding: 0 20px 22px; }
    .faq-answer p { font-size: 13.5px; }
    .faq-icon { width: 26px; height: 26px; font-size: 12px; }
  }
.cta-section {
    width: 100%;
    background: #f0f4f8;
}

.cta-section > div {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 2rem;
    width: 100%;
}

.cta-inner {
    width: 100%;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 600;
    color: var(--brand-dark);
    line-height: 1.25;
    margin-bottom: 28px;
    max-width: 480px;
    letter-spacing: -0.02em;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    background: var(--brand-green);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    letter-spacing: -0.01em;
    transition:
        background var(--transition),
        transform var(--transition),
        box-shadow var(--transition);
    box-shadow: 0 2px 12px rgba(66, 184, 14, 0.25);
}

.cta-btn:hover {
    background: #37a00c;
    transform: translateY(-1px);
    box-shadow: 0 6px 22px rgba(66, 184, 14, 0.32);
}

.cta-btn:active {
    transform: translateY(0);
}

@media (max-width: 600px) {
    .cta-section > div {
        padding: 60px 1.2rem;
    }
    .cta-title {
        max-width: 100%;
    }
}
