:root {
    --br-green: #009c3b;
    --br-green-dark: #007a2f;
    --br-yellow: #ffdf00;
    --br-blue: #002776;
    --br-blue-soft: #1d3f91;
    --br-white: #ffffff;
    --br-bg: #f4f7f5;
    --br-card: #ffffff;
    --br-text: #1f2937;
    --br-muted: #6b7280;
    --br-border: #dbe4db;
    --shadow: 0 10px 24px rgba(0, 0, 0, 0.10);
    --radius: 16px;
}

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

body {
    font-family: Arial, Helvetica, sans-serif;
    background: var(--br-bg);
    color: var(--br-text);
}

a {
    text-decoration: none;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    padding: 24px 8%;
    background:
        radial-gradient(circle at 85% 15%, rgba(255, 223, 0, 0.30), transparent 28%),
        radial-gradient(circle at 12% 85%, rgba(0, 156, 59, 0.18), transparent 32%),
        radial-gradient(circle at 55% 55%, rgba(0, 39, 118, 0.08), transparent 35%),
        linear-gradient(135deg, var(--br-white) 0%, var(--br-bg) 100%);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h1 {
    font-size: 1.6rem;
    font-weight: 800;
}

.nav-actions {

    display: flex;

    align-items: center;

    gap: 12px;

}



.nav-primary,

.nav-cta {

    font-weight: 800;

    border-radius: 999px;

    padding: 10px 18px;

}



.nav-primary {

    background: var(--br-green);

    color: var(--br-white);

    box-shadow: 0 14px 26px rgba(0, 151, 57, 0.2);

}



.nav-cta {

    color: var(--br-green-dark);

    border: 2px solid var(--br-border);

    background: var(--br-white);

}



.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    filter: blur(8px);
    opacity: 0.45;
    z-index: 0;
}

.hero::before {
    width: 220px;
    height: 220px;
    background: rgba(255, 223, 0, 0.35);
    top: 18%;
    right: 8%;
}

.hero::after {
    width: 260px;
    height: 260px;
    background: rgba(0, 156, 59, 0.20);
    bottom: 8%;
    left: 4%;
}

.navbar,
.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 156, 59, 0.1);
    color: var(--br-green-dark);
    font-weight: 700;
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}

.hero-text h2 {
    font-size: clamp(2.5rem, 6vw, 5.4rem);
    line-height: 0.95;
    letter-spacing: -0.05em;
    max-width: 780px;
    margin-bottom: 24px;
}

.hero-text p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--br-muted);
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-trust {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--br-muted);
    font-weight: 700;
    letter-spacing: 0.01em;
}

.primary-btn,
.secondary-btn {
    padding: 15px 24px;
    border-radius: 999px;
    font-weight: 800;
}

.primary-btn {
    background: var(--br-green);
    color: var(--br-white);
    box-shadow: var(--shadow);
}

.secondary-btn {
    background: var(--br-white);
    color: var(--br-blue);
    border: 2px solid var(--br-border);
}

.hero-image {
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: min(360px, 85%);
    filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.18));
}

@media (max-width: 820px) {
    .hero {
        padding: 20px;
    }

    .navbar {
        margin-bottom: 48px;
    }

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

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        text-align: center;
    }
}



/**************demo***********************/

.demo-section {

    padding: 120px 8% 96px;

    background:

        radial-gradient(circle at top left, rgba(0, 151, 57, 0.08), transparent 34%),

        var(--br-white);

}



.demo-content {

    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);

    gap: 32px;

    align-items: center;

}



.demo-card {

    background: var(--br-white);

    border: 1px solid var(--br-border);

    border-radius: 32px;

    padding: 28px;

    box-shadow: var(--shadow);

}



.demo-card-header {

    display: flex;

    justify-content: space-between;

    gap: 16px;

    margin-bottom: 28px;

    color: var(--br-muted);

    font-weight: 800;

}



.demo-card-header strong {

    color: var(--br-blue);

}



.demo-question {

    background: rgba(0, 151, 57, 0.08);

    border: 1px solid rgba(0, 151, 57, 0.18);

    border-radius: 24px;

    padding: 28px;

    margin-bottom: 22px;

}



.demo-question p {

    font-size: clamp(1.6rem, 4vw, 2.8rem);

    font-weight: 900;

    line-height: 1.15;

    color: var(--br-blue);

    margin: 0;

}



.demo-options {

    display: grid;

    gap: 12px;

    margin-bottom: 20px;

}



.demo-options button {

    width: 100%;

    border: 2px solid var(--br-border);

    background: var(--br-white);

    color: var(--br-blue);

    padding: 16px 18px;

    border-radius: 18px;

    font-size: 1rem;

    font-weight: 900;

    text-align: left;

    cursor: default;

}



.demo-options button:first-child {

    border-color: rgba(0, 151, 57, 0.45);

    background: rgba(0, 151, 57, 0.1);

    color: var(--br-green);

}



.demo-feedback {

    background: rgba(255, 223, 0, 0.22);

    border: 1px solid rgba(255, 223, 0, 0.45);

    color: var(--br-blue);

    padding: 16px 18px;

    border-radius: 18px;

    font-weight: 800;

    line-height: 1.5;

}



.demo-points {

    display: grid;

    gap: 18px;

}



.demo-points article {

    display: flex;

    gap: 16px;

    padding: 22px;

    border-radius: 24px;

    background: rgba(255, 255, 255, 0.82);

    border: 1px solid var(--br-border);

}



.demo-points span {

    font-size: 1.6rem;

}



.demo-points h3 {

    color: var(--br-blue);

    margin-bottom: 8px;

    font-size: 1.15rem;

}



.demo-points p {

    color: var(--br-muted);

    line-height: 1.6;

}



@media (max-width: 820px) {

    .demo-section {

        padding: 88px 20px 72px;

    }



    .demo-content {

        grid-template-columns: 1fr;

    }



    .demo-card-header {

        flex-direction: column;

    }

}



/**************feutures***********************/
.features-section::before {
    content: "";
    position: absolute;
    top: -70px;
    left: 0;
    width: 100%;
    height: 120px;

    background:
        linear-gradient(to bottom,
            rgba(244, 247, 245, 1),
            rgba(255, 255, 255, 0));

    pointer-events: none;
}

.features-section {
    padding: 140px 8% 96px;
    background: var(--br-white);
    position: relative;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-badge {
    display: inline-block;
    background: rgba(0, 39, 118, 0.08);
    color: var(--br-blue);
    font-weight: 800;
    padding: 10px 16px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 18px;
}

.section-heading p {
    color: var(--br-muted);
    font-size: 1.1rem;
    line-height: 1.7;
}

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

.feature-card {
    background: var(--br-card);
    border: 1px solid var(--br-border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.feature-card span {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 18px;
}

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--br-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .features-section {
        padding: 72px 20px;
    }

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

/******************section problem content****************/

.problem-section {
    position: relative;
    padding: 120px 8%;
    background:
        linear-gradient(180deg,
            var(--br-white) 0%,
            rgba(0, 156, 59, 0.04) 100%);
}

.problem-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.problem-content h2 {
    font-size: clamp(2.3rem, 5vw, 4.4rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 28px;
}

.problem-highlight {
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 700;
    color: var(--br-green-dark);
    margin-bottom: 24px;
}

.problem-description {
    max-width: 760px;
    margin: 0 auto;
    color: var(--br-muted);
    font-size: 1.12rem;
    line-height: 1.9;
}

@media (max-width: 768px) {
    .problem-section {
        padding: 90px 20px;
    }

    .problem-highlight {
        font-size: 1.2rem;
    }
}

/*************how its work***********/

.steps-section {
    padding: 120px 8%;
    background: var(--br-bg);
}

.steps-grid {
    margin-top: 64px;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.step-card {
    background: var(--br-card);
    border: 1px solid var(--br-border);
    border-radius: var(--radius);

    padding: 32px 24px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.step-number {
    width: 46px;
    height: 46px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--br-green);
    color: var(--br-white);

    font-weight: 800;

    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.step-card p {
    color: var(--br-muted);
    line-height: 1.7;
}

@media (max-width: 980px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 620px) {
    .steps-section {
        padding: 90px 20px;
    }

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

/***********progress section******************/

.progress-section {
    padding: 130px 8%;
    background:
        linear-gradient(135deg,
            rgba(0, 156, 59, 0.04),
            rgba(0, 39, 118, 0.04));
}

.progress-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.progress-text h2 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 24px 0;
}

.progress-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--br-muted);
    margin-bottom: 32px;
    max-width: 580px;
}

.progress-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.progress-item {
    background: var(--br-white);
    border: 1px solid var(--br-border);

    border-radius: 999px;

    padding: 14px 20px;

    font-weight: 700;

    width: fit-content;

    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.progress-visual {
    position: relative;
    min-height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.progress-visual img {
    width: min(380px, 90%);
    z-index: 2;
}

.floating-card {
    position: absolute;

    background: var(--br-white);
    border: 1px solid var(--br-border);

    border-radius: var(--radius);

    padding: 14px 18px;

    font-weight: 700;

    box-shadow: var(--shadow);

    z-index: 3;
}

.card-1 {
    top: 6%;
    left: -4%;
}

.card-2 {
    bottom: 10%;
    right: -6%;
}

.card-3 {
    top: 52%;
    left: 0;
    transform: translateX(-25%);
}

@media (max-width: 980px) {

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

    .progress-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .progress-list {
        align-items: center;
    }

    .progress-section {
        padding: 90px 20px;
    }

    .floating-card {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .progress-visual {
        flex-direction: column;
    }

}

/**********final cta action**************************/



/**************trust***********************/

.trust-section {

    padding: 96px 8%;

    background: var(--br-white);

}



.trust-card {

    max-width: 1120px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);

    gap: 32px;

    align-items: center;

    padding: 42px;

    border-radius: 36px;

    background:

        radial-gradient(circle at top right, rgba(255, 223, 0, 0.2), transparent 32%),

        rgba(244, 247, 245, 0.9);

    border: 1px solid var(--br-border);

    box-shadow: var(--shadow);

}



.trust-content h2 {

    font-size: clamp(2rem, 4vw, 3.2rem);

    line-height: 1.05;

    letter-spacing: -0.04em;

    margin-bottom: 18px;

    color: var(--br-blue);

}



.trust-content p {

    color: var(--br-muted);

    font-size: 1.08rem;

    line-height: 1.7;

}



.trust-points {

    display: grid;

    gap: 16px;

}



.trust-points article {

    display: grid;

    gap: 6px;

    padding: 20px;

    border-radius: 22px;

    background: var(--br-white);

    border: 1px solid var(--br-border);

}



.trust-points strong {

    color: var(--br-blue);

    font-size: 1.05rem;

}



.trust-points span {

    color: var(--br-muted);

    line-height: 1.5;

}



@media (max-width: 820px) {

    .trust-section {

        padding: 72px 20px;

    }



    .trust-card {

        grid-template-columns: 1fr;

        padding: 28px;

    }

}



.final-cta-section {
    padding: 120px 8%;
    background: var(--br-white);
}

.final-cta-card {
    max-width: 980px;

    margin: 0 auto;

    background:
        linear-gradient(135deg,
            rgba(0, 156, 59, 0.08),
            rgba(0, 39, 118, 0.08));

    border: 1px solid var(--br-border);

    border-radius: 32px;

    padding: 72px 48px;

    text-align: center;

    box-shadow: var(--shadow);
}

.final-cta-card h2 {
    font-size: clamp(2.2rem, 5vw, 4.6rem);

    line-height: 1;

    letter-spacing: -0.05em;

    margin: 24px 0;
}

.final-cta-card p {
    max-width: 720px;

    margin: 0 auto 36px;

    font-size: 1.12rem;

    line-height: 1.8;

    color: var(--br-muted);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
}

.final-cta-card {
    max-width: 980px;
    margin: 0 auto;

    background:
        linear-gradient(rgba(255, 255, 255, 0.88),
            rgba(255, 255, 255, 0.92)),
        url("");

    background-size: cover;
    background-position: center left;

    border: 1px solid var(--br-border);
    border-radius: 32px;
    padding: 72px 48px;
    text-align: center;
    box-shadow: var(--shadow);
}

/**************footer*******************/
.app-footer {
    position: relative;
    overflow: hidden;
    margin-top: 0;
    padding: 80px 20px 48px;
    background: linear-gradient(135deg, var(--br-green), var(--br-blue));
    color: white;
    text-align: center;
}

.footer-glow {
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(255, 223, 0, 0.18);
    border-radius: 50%;
    filter: blur(80px);
    top: -180px;
    right: -120px;
}

.footer-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-brand {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 18px;
}

.footer-description {
    max-width: 620px;
    margin: 0 auto 28px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    align-items: center;
    text-align: center;
}

.footer-copy p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.dev-credit a {
    color: var(--br-yellow);
    text-decoration: none;
    font-weight: 700;
}

.dev-credit a:hover {
    text-decoration: underline;
}

/******************bandera******************/
.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    font-size: 2rem;
    font-weight: 800;

    margin-bottom: 18px;
}

.footer-flag {
    width: 38px;
    height: 26px;

    object-fit: cover;

    border-radius: 6px;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 980px) {

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 72px;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image img {
        width: min(340px, 80%);
    }

}

@media (max-width: 768px) {

    .hero,
    .features-section,
    .problem-section,
    .steps-section,
    .progress-section,
    .final-cta-section,
    .app-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar {
        margin-bottom: 48px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

}

@media (max-width: 768px) {

    .hero,
    .features-section,
    .problem-section,
    .steps-section,
    .progress-section,
    .final-cta-section,
    .app-footer {
        padding-left: 20px;
        padding-right: 20px;
    }

    .navbar {
        margin-bottom: 48px;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-text h2 {
        font-size: 3rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }

}

@media (max-width: 768px) {

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

    .progress-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .progress-list {
        align-items: center;
    }

    .progress-visual {
        min-height: auto;
        margin-top: 48px;
    }

    .floating-card {
        position: relative;

        top: auto;
        left: auto;
        right: auto;
        bottom: auto;

        margin: 12px auto;

        width: fit-content;
    }

}

@media (max-width: 768px) {

    .final-cta-card {
        padding: 56px 24px;
    }

    .final-cta-card h2 {
        font-size: 2.6rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

}

@media (max-width: 480px) {

    .hero-text h2,
    .problem-content h2,
    .progress-text h2,
    .final-cta-card h2 {
        font-size: 2.2rem;
    }

    .section-heading h2 {
        font-size: 2rem;
    }

    .hero-badge,
    .section-badge {
        font-size: 0.82rem;
    }

    .feature-card,
    .step-card {
        padding: 20px;
    }

}

/************************
 TRAVEL SECTION
************************/

.travel-section {
  padding: 100px 8%;
}

.travel-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.travel-text h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 18px 0;
}

.travel-text p {
  line-height: 1.8;
  font-size: 1.05rem;
  opacity: 0.9;
}

.travel-card {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.travel-card img {
  width: 100%;
  max-width: 480px;
  object-fit: contain;
}

/************************
 MOBILE
************************/

@media (max-width: 980px) {

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

  .travel-card {
    margin-top: 30px;
  }

  .travel-bubble {
    right: 50%;
    top: 20px;
    transform: translateX(50%);
  }

}

/**************pricing / premium***********************/
.pricing-section {
    padding: 96px 8%;
    background:
        radial-gradient(circle at top right, rgba(255, 223, 0, 0.18), transparent 28%),
        linear-gradient(180deg, var(--br-white) 0%, var(--br-bg) 100%);
}

.pricing-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--br-card);
    border: 1px solid var(--br-border);
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.pricing-card-premium {
    border: 2px solid var(--br-yellow);
    background:
        linear-gradient(135deg, rgba(255, 223, 0, 0.22), rgba(0, 156, 59, 0.08)),
        var(--br-white);
    transform: translateY(-8px);
}

.pricing-label {
    display: inline-block;
    background: rgba(0, 39, 118, 0.08);
    color: var(--br-blue);
    font-weight: 800;
    padding: 8px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.premium-label {
    background: var(--br-yellow);
    color: var(--br-blue);
}

.pricing-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    color: var(--br-blue);
}

.pricing-price {
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--br-green-dark);
    margin-bottom: 22px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--br-muted);
    font-weight: 700;
}

.pricing-note {
    color: var(--br-muted);
    font-weight: 700;
    margin-top: -12px;
    margin-bottom: 22px;
}

.pricing-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-card li {
    color: var(--br-text);
    line-height: 1.5;
}

@media (max-width: 760px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card-premium {
        transform: none;
    }
}



/* Mobile navbar conversion fix */

@media (max-width: 640px) {

    .navbar {

        flex-direction: column;

        align-items: center;

        gap: 18px;

        margin-bottom: 48px;

    }



    .nav-actions {

        width: 100%;

        justify-content: center;

        gap: 10px;

    }



    .nav-primary,

    .nav-cta {

        padding: 10px 16px;

        font-size: 0.95rem;

        white-space: nowrap;

    }

}



@media (max-width: 390px) {

    .nav-actions {

        flex-direction: column;

    }



    .nav-primary,

    .nav-cta {

        width: 100%;

        text-align: center;

    }

}




/* Mobile navbar compact refinement */

@media (max-width: 640px) {

    .navbar {

        gap: 14px;

        margin-bottom: 36px;

    }



    .nav-actions {

        display: grid;

        grid-template-columns: 1fr 0.72fr;

        gap: 10px;

    }



    .nav-primary,

    .nav-cta {

        width: 100%;

        text-align: center;

        padding: 10px 12px;

        font-size: 0.92rem;

    }

}



@media (max-width: 390px) {

    .nav-actions {

        grid-template-columns: 1fr;

    }

}

