/* ============================================================
   TABLE OF CONTENTS
   1.  TOKENS & CUSTOM PROPERTIES
   2.  RESET & BASE
   3.  UTILITY CLASSES
   4.  COMPONENT — nav (desktop)
   5.  COMPONENT — nav-overlay (mobile)
   6.  COMPONENT — whatsapp-btn
   7.  COMPONENT — footer
   8.  COMPONENT — page-hero (shared banner)
   9.  COMPONENT — last-cta (shared)
   10. SECTION — hero (home)
   11. SECTION — stats (home)
   12. SECTION — services-preview (home)
   13. SECTION — promises (home "Why Kydo" strip)
   14. SECTION — sprint (home "30 Days" CTA)
   15. SECTION — comparison (home problem/solution)
   16. SECTION — faq (home)
   17. PAGE — services
   18. PAGE — pricing
   19. PAGE — blog
   20. PAGE — why-kydo (about)
   21. PAGE — contact
   22. MEDIA QUERIES — Mobile (≤ 767px)
   ============================================================ */


/* ============================================================
   1. TOKENS & CUSTOM PROPERTIES
   ============================================================ */

:root {
    font-size: clamp(15px, 1.8vw, 18px);

    --color-brand:        rgba(86, 92, 167, 1);
    --color-brand-light:  rgba(178, 177, 215, 1);
    --color-accent:       rgba(96, 163, 91, 1);
    --color-danger:       rgba(237, 31, 44, 1);
    --color-surface:      rgba(248, 248, 251, 1);
    --color-text-muted:   rgba(240, 239, 247, 1);

    --radius-sm: 0.8rem;
    --radius-md: 1rem;
    --radius-lg: 2rem;
    --radius-xl: 3rem;

    --pad-page:   4rem;
    --pad-mobile: 1.2rem;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: inherit;
}

html {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: inter, sans-serif;
    background: var(--color-brand);
}

img {
    display: block;
    max-width: 100%;
}


/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */

.u-bg-black { 
    background: black; color: white; 
}

.u-bg-surface { 
    background: var(--color-surface); 
}

.u-bg-brand { 
    background: var(--color-brand); 
}

.u-text-accent { 
    color: var(--color-accent); 
}

.u-text-danger { 
    color: var(--color-danger); 
}

.u-text-brand-light { 
    color: var(--color-brand-light); 
}

.u-text-black { 
    color: black; 
}


/* ============================================================
   4. COMPONENT — nav
   ============================================================ */

.nav {
    position: sticky;
    top: 2rem;
    z-index: 1000;
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 4rem 4rem 0;
    padding: 1rem 2rem;
    border-radius: var(--radius-lg) 0;
}

.nav__logo {
    max-width: 8rem;
}

.nav__list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav__link {
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--color-brand);
}

.nav__link:hover {
    text-decoration: underline;
}

.nav__toggle {
    display: none;
    background: transparent;
    border: 0;
    width: 2.5rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.nav__toggle-icon {
    display: block;
    width: 2rem;
}


/* ============================================================
   5. COMPONENT — nav-overlay
   ============================================================ */

.nav-overlay {
    display: none;
}

.nav-overlay__header {
    display: flex;
    justify-content: space-between;
}

.nav-overlay__logo {
    width: 5rem;
}

.nav-overlay__list {
    list-style: none;
}

.nav-overlay__link {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.2rem;
}

.nav-overlay__footer {
    display: flex;
    flex-direction: column;
}

.nav-overlay__footer p {
    font-size: 1rem;
    font-weight: 600;
}

.nav-overlay__socials {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.nav-overlay__close {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-self: flex-end;
}

.nav-overlay__social-icon {
    width: 2.5rem;
}


/* ============================================================
   6. COMPONENT — whatsapp-btn
   ============================================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 999;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.whatsapp-btn__icon {
    width: 28px;
    height: 28px;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}


/* ============================================================
   7. COMPONENT — footer
   ============================================================ */

.footer {
    background: white;
}

.footer__top {
    display: flex;
    padding: 4rem 4rem 1rem;
    justify-content: space-between;
}

/* Left col */
.footer__brand-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__logo {
    width: 8rem;
}

.footer__tagline, .footer__social-label, .footer__contact-label {
    font-size: 1.1rem;
    font-weight: 500;
}

.footer__social-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__social-icons {
    display: flex;
    gap: 1rem;
}

/* Right col */
.footer__links-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__subscribe-form {
    display: flex;
    gap: 0.5rem;
    width: 100%;
    flex-wrap: wrap;
}

.footer__subscribe-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid black;
    border-radius: var(--radius-sm);
}

.footer__subscribe-btn {
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.footer__nav {
    display: flex;
    gap: 2rem;
}

.footer__nav-groups {
    display: flex;
    gap: 1rem;
}

.footer__nav-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__nav-group h3 {
    font-weight: 600;
}

.footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__nav-item {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer__nav-dot {
    width: 0.55rem;
}

.footer__nav-link, .footer__phone-link, .footer__email-link {
    color: black;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 2rem;
}

.footer__nav-link:hover, .footer__phone-link:hover, .footer__email-link:hover {
    text-decoration: underline;
}

.footer__contact-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__phone-numbers {
    display: flex;
}

/* Bottom bar */
.footer__bottom {
    padding: 1.5rem 4rem;
    background: black;
    color: white;
    display: flex;
    justify-content: space-between;
}

.footer__policy-link {
    color: white;
    text-decoration: none;
}

.footer__policy-link:hover {
    text-decoration: underline;
}

.footer__copyright {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}


/* ============================================================
   8. COMPONENT — page-hero (shared banner for inner pages)
   ============================================================ */

/* Base hero used by home page */
.hero {
    padding: 1px var(--pad-page);
    background: var(--color-brand);
    color: white;
}

/* Inner page banner hero */
.page-hero {
    color: white;
    background-size: cover;
    background-position: center;
    padding: 10rem var(--pad-page) 8rem;
    margin-top: -10rem;
}

.page-hero--services { 
    background-image: url(assets/services.png); 
}

.page-hero--pricing { 
    background-image: url(assets/pricing.png); 
}

.page-hero--why-kydo { 
    background-image: url(assets/why-kydo-image.png); 
}

.page-hero--contact { 
    background-image: url(assets/services.png); text-align: center; 
}

.page-hero--blog {
    background-image: url(assets/proprietor.png);
    display: flex;
    padding: 14rem var(--pad-page) 4rem;
}

.page-hero__title {
    font-size: 3rem;
    text-align: center;
    margin-top: 6rem;
}


/* ============================================================
   9. COMPONENT — last-cta (shared bottom CTA)
   ============================================================ */

.last-cta {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 4rem 0;
    background: black;
    color: white;
    gap: 1rem;
}

.last-cta__text, .last-cta__image {
    flex: 1;
}

.last-cta__headline {
    font-size: 3.3rem;
    font-weight: 700;
}

.last-cta__body {
    margin: 1rem 0;
    font-size: 1.1rem;
    line-height: 1.5;
}

.last-cta__actions {
    display: flex;
    gap: 0.5rem;
}

.last-cta__btn {
    text-decoration: none;
    background: var(--color-accent);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    display: inline-block;
}


/* ============================================================
   10. SECTION — hero (home page)
   ============================================================ */

.hero__inner {
    margin-top: 5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero__text, .hero__media {
    flex: 1;
}

.hero__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero__eyebrow {
    font-size: 1.1rem;
    color: var(--color-brand-light);
    font-weight: 600;
}

.hero__heading {
    font-size: 3rem;
    font-weight: 700;
}

.hero__subheading {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-text-muted);
}

.hero__actions {
    display: flex;
    gap: 1.5rem;
}

.hero__btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    border: 3.5px solid var(--color-accent);
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 1.1rem;
}

.hero__btn--primary {
    background: var(--color-accent);
}

.hero__btn--primary:hover {
    background: var(--color-brand);
}

.hero__btn--ghost:hover {
    background: var(--color-accent);
}

/* Hero image area */
.hero__media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 450px;
}

.hero__bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero__bg-shapes img {
    position: absolute;
    height: auto;
}

.hero__bg-shapes img:nth-child(1) { 
    top: 20px;  left: 50px;  
}

.hero__bg-shapes img:nth-child(2) { 
    top: 0;     left: 160px; 
}

.hero__bg-shapes img:nth-child(3) { 
    top: 160px; left: 300px; 
}

.hero__img {
    position: relative;
    z-index: 2;
    max-width: 32rem;
}


/* ============================================================
   11. SECTION — stats (home)
   ============================================================ */

.stats {
    display: flex;
    justify-content: space-between;
    padding: 4rem;
    background: white;
}

.stats__item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stats__value {
    font-size: 3rem;
    font-weight: 700;
}

.stats__label {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-brand);
}


/* ============================================================
   12. SECTION — services-preview (home)
   ============================================================ */

.services-preview {
    background: var(--color-surface);
    padding: 4rem 0;
}

.services-preview__header {
    display: flex;
}

.services-preview__heading-block, .services-preview__spacer {
    flex: 1;
}

.services-preview__heading-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 var(--pad-page);
}

.services-preview__heading-block h2 {
    font-size: 2rem;
    color: var(--color-brand);
}

.services-preview__heading-block p {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.5;
}

.services-preview__grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0 var(--pad-page);
    gap: 3rem;
    justify-content: space-evenly;
    margin: 2rem 0;
}

.service-card {
    display: flex;
    flex-direction: column;
    max-width: 28rem;
    background: white;
    border-radius: var(--radius-lg);
    padding: 1rem;
    gap: 1rem;
}

.service-card p {
    line-height: 1.5;
}

.service-card__link {
    color: var(--color-brand);
    text-decoration: none;
    font-weight: 500;
}

.service-card__link:hover {
    text-decoration: underline;
}

.service-card__header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-card__header h3 {
    font-size: 1.7rem;
    font-weight: 600;
}


/* ============================================================
   13. SECTION — promises (home "Why Kydo" strip)
   ============================================================ */

.promises {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    padding: 2rem 0;
    background: var(--color-surface);
}

.promises__header {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.promises__eyebrow {
    font-size: 1.2rem;
    color: var(--color-brand-light);
    font-weight: 600;
}

.promises__title {
    font-size: 2rem;
    color: var(--color-brand);
}

.promises__grid {
    display: flex;
    gap: 2rem;
    padding: 0 var(--pad-page);
}

.promise-card {
    position: relative;
    width: 15.5rem;
    background: white;
    padding: 3rem 1.2rem 1.5rem;
    border-radius: 2rem 0 0 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    margin: 2rem 0;
}

.promise-card__icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.promise-card__title {
    font-size: 1.3rem;
    font-weight: 600;
}

.promise-card__body {
    line-height: 1.6;
    font-size: 0.9rem;
}


/* ============================================================
   14. SECTION — sprint (home "30 Days" CTA)
   ============================================================ */

.sprint {
    padding: var(--pad-page);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: white;
}

.sprint__header {
    display: flex;
}

.sprint__header-text, .sprint__header-cta {
    flex: 1;
}

.sprint__header-cta {
    display: flex;
}

.sprint__btn {
    background: var(--color-accent);
    text-decoration: none;
    display: inline-block;
    border-radius: var(--radius-md);
    padding: 1rem 2rem;
    color: white;
    margin-left: auto;
    align-self: flex-start;
    font-size: 1.1rem;
    font-weight: 500;
}

.sprint__header-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sprint__header-text h2 {
    font-size: 2rem;
    color: var(--color-brand);
}

.sprint__header-text p {
    font-size: 1.1rem;
    line-height: 1.5;
}

.sprint__content {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.sprint__steps, .sprint__visual {
    flex: 1;
}

.sprint__steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sprint-step {
    background: var(--color-accent);
    border-radius: var(--radius-md);
    padding: 1rem;
    color: white;
    display: flex;
    gap: 1rem;
}

.sprint-step--alt {
    background: var(--color-brand);
}

.sprint-step__icon {
    min-width: 2rem;
}

.sprint-step__body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sprint-step__title { 
    font-weight: 500; 
}

.sprint-step__desc { 
    font-weight: 300; 
}


/* ============================================================
   15. SECTION — comparison (home problem/solution)
   ============================================================ */

.comparison {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: var(--pad-page);
    background: white;
}

.comparison__header {
    display: flex;
    justify-content: space-between;
}

.comparison__title {
    font-size: 2rem;
    color: var(--color-brand);
}

.comparison__cta {
    background: var(--color-accent);
    padding: 1rem;
    border-radius: var(--radius-md);
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-panel {
    border-radius: var(--radius-xl);
    display: flex;
    overflow: hidden;
    align-items: center;
    gap: 2rem;
    font-weight: 500;
}

.comparison-panel__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-panel__title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-danger);
}

.comparison-panel__title--positive {
    color: var(--color-accent);
}

.comparison-panel__list {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.comparison-panel__item {
    display: flex;
    gap: 1rem;
}

.comparison-panel__item-icon {
    width: 1.2rem;
}

.comparison-panel__item-text {
    font-size: 1.1rem;
}


/* ============================================================
   16. SECTION — faq (home)
   ============================================================ */

.faq {
    background: var(--color-brand);
    display: flex;
    color: white;
    padding: var(--pad-page);
    gap: 8rem;
}

.faq__sidebar, .faq__list {
    flex: 1;
}

.faq__tag {
    display: flex;
    gap: 0.5rem;
    border: 2px solid white;
    border-radius: var(--radius-md);
    padding: 1rem;
    align-items: center;
    width: 17rem;
}

.faq__tag-icon {
    width: 1.2rem;
}

.faq__title {
    font-size: 3rem;
    margin: 2rem 0 5rem;
}

.faq__contact-card {
    border: 4px solid var(--color-brand-light);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq__contact-card p {
    line-height: 1.5;
}

.faq__contact-btn {
    background: var(--color-accent);
    padding: 1rem;
    border-radius: var(--radius-md);
    align-self: flex-start;
    color: white;
    text-decoration: none;
}

.faq__list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 4px solid var(--color-brand-light);
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item__header {
    display: flex;
    gap: 0.5rem;
}

.faq-item__question {
    font-weight: 600;
    font-size: 1.2rem;
    line-height: 1.5;
}

.faq-item__answer {
    line-height: 1.5;
    font-weight: 300;
}


/* ============================================================
   17. PAGE — services
   ============================================================ */

.services-page {
    background: white;
}

.services-page__heading {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
    padding: 4rem 0;
    text-align: center;
}

.services-page__eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-light);
}

.services-page__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.services-page__grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    padding-bottom: 4rem;
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 30rem;
    padding: 2rem;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    position: relative;
}

.service-detail-card__icon {
    width: 4rem;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.service-detail-card__name {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
}

.service-detail-card__tagline {
    text-align: center;
}

.service-detail-card__btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--color-accent);
    text-decoration: none;
    border-radius: var(--radius-md);
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    width: fit-content;
    margin: 1rem auto;
}

.service-detail-card__features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-feature {
    display: flex;
    gap: 1rem;
}

.service-feature__icon {
    width: 1.2rem;
}

.service-feature__text {
    font-size: 1.1rem;
    font-weight: 500;
}


/* ============================================================
   18. PAGE — pricing
   ============================================================ */

.pricing-section {
    padding: var(--pad-page);
    background: white;
}

.pricing-section__heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-section__eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-light);
}

.pricing-section__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card {
    display: flex;
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: 2rem;
    justify-content: space-between;
    border-top: 1.5px solid var(--color-accent);
}

.pricing-card__left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card__name {
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-card__currency {
    font-size: 1.7rem;
    font-weight: 500;
}

.pricing-card__amount {
    font-size: 2rem;
    font-weight: 700;
}

.pricing-card__audience {
    font-size: 1.1rem;
    font-weight: 500;
}

.pricing-card__btn {
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    border: 3px solid black;
    align-self: flex-start;
    padding: 1rem 2rem;
    cursor: pointer;
    background: none;
}

.pricing-card__right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-card__features-label {
    font-weight: 500;
    font-size: 1.1rem;
}

.pricing-card__features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing-card__feature {
    display: flex;
    gap: 0.5rem;
}

.pricing-card__feature-dot {
    width: 0.7rem;
}


/* ============================================================
   19. PAGE — blog
   ============================================================ */

.blog-hero__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-hero__spacer {
    flex: 1;
}

.blog-hero__eyebrow {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-brand-light);
}

.blog-hero__title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
}

.blog-hero__excerpt {
    color: white;
    line-height: 1.5;
    font-size: 1.1rem;
}

.blog-hero__btn {
    display: inline-block;
    color: white;
    background: var(--color-accent);
    padding: 1rem 3rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.1rem;
    align-self: flex-start;
    text-decoration: none;
}

.articles {
    padding: 4rem 0;
    background: white;
}

.articles__heading {
    text-align: center;
    line-height: 1.5;
}

.articles__eyebrow {
    font-size: 1.3rem;
    color: var(--color-brand-light);
    font-weight: 600;
}

.articles__title {
    font-size: 2rem;
    color: var(--color-brand);
}

.articles__grid {
    display: flex;
    justify-content: space-evenly;
    gap: 2rem;
    margin: 2rem 4rem 0;
}

.article-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: black;
    gap: 1rem;
}

.article-card__title {
    font-size: 1.3rem;
    font-weight: 600;
}

.article-card__excerpt {
    line-height: 1.5;
}

.article-card__meta {
    display: flex;
    gap: 0.5rem;
}

/* Newsletter strip */
.newsletter {
    background: var(--color-brand);
    color: white;
    padding: var(--pad-page);
    display: flex;
}

.newsletter__text, .newsletter__image {
    flex: 1;
}

.newsletter__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter__title {
    font-size: 3rem;
    font-weight: 700;
}

.newsletter__body {
    line-height: 1.5;
    font-size: 1.1rem;
}


/* ============================================================
   20. PAGE — why-kydo (about)
   ============================================================ */

.mission {
    background: white;
}

.mission__inner {
    display: flex;
    padding: var(--pad-page);
    gap: 2rem;
}

.mission__text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mission__eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-light);
}

.mission__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.mission__paragraphs {
    display: flex;
    flex-direction: column;
    margin: 2rem 0;
    gap: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.standards {
    padding: var(--pad-page);
    background: var(--color-surface);
}

.standards__heading {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.standards__eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-light);
}

.standards__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.standards__grid {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.standard-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.standard-card__icon { 
    margin: 0 auto; 
}

.standard-card__title { 
    text-align: center; font-size: 1.3rem; font-weight: 600; 
}

.standard-card__body { 
    text-align: center; line-height: 1.3; 
}

.ecosystem {
    background: white;
    padding-top: 4rem;
}

.ecosystem__heading {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    text-align: center;
}

.ecosystem__eyebrow {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-brand-light);
}

.ecosystem__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.ecosystem__grid {
    gap: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: var(--pad-page);
}

.ecosystem-card {
    background: var(--color-surface);
    padding: 2rem;
    min-width: 30rem;
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ecosystem-card__icon { 
    width: 4rem; 
}

.ecosystem-card__title { 
    font-size: 1.7rem; font-weight: 600; 
}

.leadership {
    display: flex;
    padding: var(--pad-page);
    gap: 2rem;
    color: white;
}

.leadership__text, .leadership__photo {
    flex: 1;
}

.leadership__text {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.leadership__title {
    font-size: 2rem;
    font-weight: 600;
}

.leadership__paragraphs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    font-size: 1.1rem;
    line-height: 1.5;
}

.leadership__btn {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
    background: var(--color-accent);
    align-self: flex-start;
    padding: 1rem;
    border-radius: var(--radius-md);
    font-weight: 500;
}


/* ============================================================
   21. PAGE — contact
   ============================================================ */

.contact {
    display: flex;
    padding: var(--pad-page);
    gap: 2rem;
    background: white;
}

.contact__info, .contact__form {
    flex: 1;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact__eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-brand-light);
}

.contact__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.contact__subtitle {
    line-height: 1.5;
    font-size: 1.1rem;
}

.contact__detail {
    display: flex;
    gap: 1rem;
}

.contact__socials {
    display: flex;
    gap: 1rem;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 2px solid black;
    padding: 2rem 1rem;
    border-radius: var(--radius-lg);
    background: var(--color-surface);
}

.contact__form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

.contact__input, .contact__select {
    padding: 1rem 1rem 0.8rem;
    border: 2px solid black;
    border-radius: var(--radius-sm);
}

.contact__input::placeholder {
    font-size: 1rem;
    color: black;
}

.contact__submit {
    padding: 1rem 2rem;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius-sm);
    border: none;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
}


/* ============================================================
   22. MEDIA QUERIES — Mobile (≤ 767px)
   ============================================================ */

@media (max-width: 767px) {

    /* nav */
    .nav {
        margin: 1rem;
        padding: 0.9rem var(--pad-mobile);
        top: 1rem;
    }

    .nav__list { 
        display: none; 
    }

    .nav__toggle { 
        display: flex; 
    }

    .nav__logo { 
        max-width: 5rem; 
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: white;
        z-index: 5000;
        display: none;
        flex-direction: column;
        padding: 2rem;
        gap: 3rem;
        height: 100dvh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-overlay.open { 
        display: flex; 
    }

    .nav-overlay__list {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 0;
    }

    .nav-overlay__link { 
        font-size: 1.5rem; 
    }
    
    .nav-overlay__logo { 
        width: 7rem; 
    }
    
    .nav-overlay__footer { 
        gap: 1rem; 
    }
    
    .nav-overlay__slogan { 
        font-weight: bold; font-size: 1.3rem; 
    }
    
    .nav-overlay__close img { 
        width: 2rem; height: 2rem; 
    }

    /* hero */
    .hero { 
        padding: 1.5rem var(--pad-mobile) 0; 
    }

    .hero__inner {
        flex-direction: column;
        margin-top: 2rem;
        gap: 1.5rem;
    }

    .hero__text, .hero__media { 
        flex: unset; width: 100%; 
    }

    .hero__heading {
        font-size: 2rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero__actions { 
        margin-top: 1rem; gap: 0.7rem; 
    }
    
    .hero__btn { 
        padding: 0.8rem; text-align: center; font-size: 1rem; 
    }

    .hero__media {
        min-height: auto;
        aspect-ratio: 4 / 3;
    }

    .hero__bg-shapes img { 
        display: none; 
    }
    
    .hero__img { 
        max-width: 100%; 
    }

    /* stats */
    .stats {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
        gap: 1rem;
    }

    .stats__item {
        padding: 1rem;
        min-width: 15rem;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .stats__value { 
        font-size: 2rem; 
    }

    /* services-preview */
    .services-preview { 
        padding: 2rem 0; 
    }

    .services-preview__header { 
        flex-direction: column; 
    }
    
    .services-preview__heading-block { 
        padding: 0 var(--pad-mobile); 
    }
    
    .services-preview__spacer { 
        display: none; 
    }

    .services-preview__grid {
        padding: 0 var(--pad-mobile);
        gap: 1rem;
        flex-direction: column;
    }

    .service-card { 
        max-width: 100%; 
    }

    /* promises */
    .promises { 
        padding: 2.5rem var(--pad-mobile); 
    }

    .promises__grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
        gap: 2rem;
    }

    .promise-card { 
        min-width: 15rem; 
    }

    /* sprint */
    .sprint { 
        padding: 2rem var(--pad-mobile); 
    }

    .sprint__header { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .sprint__btn { 
        margin-left: 0; 
        text-align: center; 
    }
    
    .sprint__content { 
        flex-direction: column; 
    }

    .sprint__steps, .sprint__visual { 
        flex: unset; 
        width: 100%; 
    }

    /* comparison */
    .comparison { 
        padding: 2rem var(--pad-mobile); 
    }

    .comparison__header { 
        flex-direction: column; 
        gap: 1rem; 
    }
    
    .comparison__cta { 
        align-self: flex-start; 
    }

    .comparison-panel {
        flex-direction: column;
        border-radius: 1.5rem;
    }

    .comparison-panel__image {
        width: 100%;
        max-height: 220px;
        object-fit: cover;
    }

    .comparison-panel__content { 
        padding: var(--pad-mobile); 
    }

    /* faq */
    .faq {
        flex-direction: column;
        padding: 2rem var(--pad-mobile);
        gap: 2rem;
    }

    .faq__title { 
        font-size: 2rem; 
        margin: 1.25rem 0 1.5rem; 
    }

    /* last-cta */
    .last-cta {
        flex-direction: column;
        padding: 2rem var(--pad-mobile) 0;
        gap: 1.5rem;
    }

    .last-cta__headline { 
        font-size: 2rem; 
    }

    /* footer */
    .footer__top {
        flex-direction: column;
        padding: 2rem var(--pad-mobile) 1rem;
        gap: 1.5rem;
    }

    .footer__social-icons img { 
        width: 3rem; 
    }

    .footer__nav { 
        flex-wrap: wrap; 
        gap: 1.5rem; 
    }
    
    .footer__nav-groups { 
        gap: 1rem; 
    }

    .footer__bottom {
        padding: 1rem var(--pad-mobile);
        flex-direction: column;
        align-items: center;
        gap: 0.4rem;
        text-align: center;
    }

    .whatsapp-btn { 
        width: 55px; 
        height: 55px; 
        bottom: 15px; 
        right: 15px; 
    }

    /* page-hero */
    .page-hero { 
        padding: 10rem var(--pad-page) 8rem; 
        margin-top: -10rem; 
    }
    
    .page-hero--blog { 
        padding: 14rem 1rem 1rem; 
    }

    /* services page */
    .services-page { 
        padding: 0 1rem; 
    }
    
    .services-page__title { 
        font-size: 1.7rem; 
    }

    .service-detail-card { 
        width: 100%; 
    }

    /* pricing page */
    .pricing-section { 
        padding: 1rem; 
    }
    
    .pricing-card { 
        flex-direction: column; 
        gap: 2rem; 
    }

    /* blog page */
    .blog-hero__spacer { 
        display: none; 
    }
    
    .blog-hero__title { 
        font-size: 2rem; 
    }

    .articles__grid {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding: 1rem;
        -webkit-overflow-scrolling: touch;
        margin: 1rem;
    }

    .article-card { 
        min-width: 15rem; 
    }

    .newsletter { 
        flex-direction: column; 
        padding: 1rem; 
    }

    /* why kydo page */
    .mission__inner { 
        flex-direction: column; 
    }
    
    .standards__grid { 
        flex-direction: column; 
    }
    
    .ecosystem__grid { 
        padding: 1rem; 
    }
    
    .ecosystem-card { 
        min-width: 15rem; 
    }
    
    .leadership { 
        flex-direction: column; 
    }

    /* contact page */
    .contact { 
        padding: 1rem; 
        flex-direction: column; 
    }
    
    .contact__socials { 
        flex-wrap: wrap; 
    }
}