/* ===========================
   RESET & BASE STYLES
   =========================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Screen-reader only utility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: #11295A;
    background: #FFFFFF;
    overflow-x: hidden;
    line-height: 1.5;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

input, select, textarea {
    font-family: inherit;
    border: none;
    outline: none;
}

ul, ol {
    list-style: none;
}

/* ===========================
   VARIABLES
   =========================== */
:root {
    --primary: #134195;
    --primary-light: #0F49BE;
    --dark-navy: #11295A;
    --blue-bright: #2891FF;
    --blue-accent: #0A6EFF;
    --light-blue-1: #D7EDFF;
    --light-blue-2: #B9E1FF;
    --light-blue-3: #EDF8FF;
    --light-blue-4: #88CFFF;
    --light-blue-5: #50B4FF;
    --green-whatsapp: #60D669;
    --green-light: #BFF3C2;
    --green-accent: #2EB939;
    --green-dark: #194E1F;
    --green-bg: #F1FCF1;
    --gray-light: #F7F7F7;
    --gray-bg: #EDF8FF;
    --text-secondary: rgba(17, 41, 90, 0.6);
    --text-dark: #170F49;
    --text-muted: #6F6C90;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: 0 4px 32px rgba(0, 0, 0, 0.06);
    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-full: 80px;
    --max-width: 1440px;
    --padding-section: 64px 75px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 700;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn__icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn--whatsapp {
    background: var(--green-whatsapp);
    color: var(--white);
    padding: 24px 36px;
    font-family: 'Work Sans', sans-serif;
    font-size: 24px;
    font-weight: 700;
    border-radius: var(--radius-full);
}

.btn--whatsapp:hover {
    background: #4dc95a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(96, 214, 105, 0.3);
}

.btn--whatsapp-sm {
    padding: 12px 24px;
    font-size: 18px;
}

.btn--whatsapp-sm .btn__icon {
    width: 31px;
    height: 31px;
}

.btn--outline {
    background: var(--white);
    color: #4E4E4E;
    padding: 12px 48px;
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 500;
    border-radius: 74px;
}

.btn--outline:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
}

.btn--primary:hover {
    background: #0f3478;
    transform: translateY(-2px);
}

.btn--sm {
    padding: 16px 20px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    height: 42px;
}

.btn--cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #25D366 0%, #1EBE5A 100%);
    color: var(--white);
    padding: 18px 40px;
    font-family: 'Work Sans', sans-serif;
    font-size: 17px;
    font-weight: 600;
    border-radius: 60px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn--cta .btn__icon {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.btn--cta:hover {
    background: linear-gradient(135deg, #22C55E 0%, #16A34A 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.45);
}

.btn--cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn--submit {
    background: var(--blue-accent);
    color: var(--white);
    padding: 21px 207px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 26px;
    font-weight: 700;
    border-radius: 53px;
    width: 100%;
    cursor: pointer;
}

.btn--submit:hover {
    background: #0559d9;
    transform: translateY(-2px);
}

/* ===========================
   NAVBAR
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 75px;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                background 0.35s ease,
                box-shadow 0.35s ease;
}

.navbar--scrolled {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 24px rgba(17, 41, 90, 0.06);
}

.navbar--hidden {
    transform: translateY(-100%);
}

.navbar__container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.navbar__brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.navbar__logo {
    width: 180px;
    height: auto;
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(228, 237, 248, 0.6);
    border-radius: 50px;
    padding: 5px;
}

.navbar--scrolled .navbar__links {
    background: rgba(240, 247, 255, 0.6);
}

.navbar__link {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark-navy);
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.navbar__link:hover {
    background: rgba(40, 145, 255, 0.08);
    color: var(--blue-bright);
}

.navbar__link.active {
    background: var(--primary);
    color: var(--white);
}

.navbar__cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.navbar__cta:hover {
    background: #0f3478;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(17, 41, 90, 0.2);
}

.navbar__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.navbar__burger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--dark-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: linear-gradient(160deg, #EDF5FF 0%, #F6FAFF 40%, #FFFFFF 100%);
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.hero__decoration {
    position: absolute;
    top: 80px;
    left: 80px;
    width: calc(100% - 80px);
    max-width: 1400px;
    opacity: 0.4;
}

.hero__wrapper {
    position: relative;
    z-index: 1;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 120px 75px 60px;
    gap: 40px;
    width: 100%;
}

.hero__content {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--blue-bright);
    background: rgba(40, 145, 255, 0.08);
    border: 1px solid rgba(40, 145, 255, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    width: fit-content;
}

.hero__badge svg {
    color: var(--blue-bright);
}

.hero__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 60px;
    line-height: 1.15;
    color: var(--primary);
}

.hero__title span {
    background: linear-gradient(135deg, var(--blue-bright), #1A6EFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 480px;
}

.hero__buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border: 1.5px solid #D6E4F0;
    border-radius: 60px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--primary);
    background: var(--white);
    transition: all 0.3s ease;
}

.btn--outline:hover {
    border-color: var(--blue-bright);
    color: var(--blue-bright);
    box-shadow: 0 4px 16px rgba(40, 145, 255, 0.1);
}

.btn--outline svg {
    transition: transform 0.3s ease;
}

.btn--outline:hover svg {
    transform: translateX(4px);
}

/* Hero stats */
.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 12px;
    padding-top: 28px;
    border-top: 1px solid #E4EDF8;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-num {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--primary);
}

.hero__stat-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-secondary);
}

.hero__stat-divider {
    width: 1px;
    height: 36px;
    background: #E4EDF8;
}

/* Hero image */
.hero__image-col {
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero__image-frame {
    position: relative;
    max-width: 480px;
    width: 100%;
}

.hero__image-frame::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 60%;
    background: radial-gradient(ellipse at center bottom, rgba(40, 145, 255, 0.1) 0%, transparent 70%);
    z-index: 0;
    border-radius: 50%;
}

.hero__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-height: 75vh;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(0 20px 40px rgba(17, 41, 90, 0.1));
}

/* Scroll hint */
.hero__scroll-hint {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid rgba(17, 41, 90, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    animation: scrollBounce 2s ease-in-out infinite;
    cursor: pointer;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Remove old stats section — stats are now in hero */
.stats { display: none; }
.stats__container,
.stats__item,
.stats__number,
.stats__label {
    font-size: 24px;
    line-height: 1;
    color: var(--primary);
    text-align: center;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    padding: 80px 75px 40px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 64px;
    align-items: center;
}

/* Image column */
.about__image-col {
    display: flex;
    justify-content: center;
}

.about__image-card {
    position: relative;
    max-width: 440px;
    width: 100%;
}

.about__image-accent {
    position: absolute;
    bottom: -12px;
    right: -12px;
    width: 70%;
    height: 70%;
    background: linear-gradient(135deg, rgba(40, 145, 255, 0.08) 0%, rgba(37, 211, 102, 0.06) 100%);
    border-radius: 32px;
    z-index: 0;
}

.about__image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 28px;
}

/* Content */
.about__content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about__badge {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 6px 20px;
    border-radius: 30px;
    width: fit-content;
}

.about__name-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.about__name {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary);
}

.about__role {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.4;
    color: var(--blue-bright);
}

.about__bio {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 520px;
}

/* Highlights */
.about__highlights {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

.about__highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 20px;
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 18px;
    transition: all 0.35s ease;
}

.about__highlight:hover {
    border-color: var(--light-blue-2);
    box-shadow: 0 4px 20px rgba(19, 65, 149, 0.06);
    transform: translateX(4px);
}

.about__highlight-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about__highlight-icon--blue {
    background: #EBF3FF;
    color: var(--blue-bright);
}

.about__highlight-icon--green {
    background: #ECFDF5;
    color: #16A34A;
}

.about__highlight-icon--purple {
    background: #F3F0FF;
    color: #7C3AED;
}

.about__highlight-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__highlight-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--dark-navy);
}

.about__highlight-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* ===========================
   OPERATIONS SHOWCASE (Carousel)
   =========================== */
.showcase {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(135deg, #F0FBF4 0%, #F0F7FF 100%);
    padding: 80px 0 56px;
    position: relative;
    overflow: hidden;
}

.showcase::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.showcase__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 75px;
}

/* Header */
.showcase__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
}

.showcase__header-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.showcase__badge {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 6px 20px;
    border-radius: 30px;
    width: fit-content;
}

.showcase__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    color: var(--primary);
}

.showcase__subtitle {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 400px;
}

.showcase__controls {
    display: flex;
    align-items: center;
    gap: 20px;
}

.showcase__counter {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    min-width: 50px;
    text-align: center;
}

.showcase__counter span:first-child {
    color: var(--blue-bright);
    font-size: 22px;
}

.showcase__nav {
    display: flex;
    gap: 8px;
}

.showcase__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid #D6E4F0;
    background: var(--white);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase__nav-btn:hover,
.showcase__nav-btn--active {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(40, 145, 255, 0.25);
}

.showcase__nav-btn:active {
    transform: scale(0.93);
}

/* Carousel wrapper */
.showcase__carousel {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: var(--white);
    border: 1px solid #E4EDF8;
    box-shadow: 0 8px 40px rgba(19, 65, 149, 0.06);
    min-height: 400px;
}

/* Slide */
.showcase__slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.showcase__slide--active {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    opacity: 1;
    animation: showcaseFadeIn 0.5s ease forwards;
}

@keyframes showcaseFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Info side */
.showcase__info {
    padding: 44px 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.showcase__case-num {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1;
    color: #EBF3FF;
    letter-spacing: -2px;
}

.showcase__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.showcase__tag {
    background: #F0FBF4;
    color: var(--green-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    padding: 5px 16px;
    border-radius: 20px;
    border: 1px solid rgba(37, 211, 102, 0.15);
}

.showcase__desc {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.showcase__result {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
}

.showcase__result span {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--green-dark);
}

/* Images side */
.showcase__images {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 24px 24px 24px 0;
    position: relative;
}

.showcase__img-wrap {
    flex: 1;
    position: relative;
}

.showcase__img {
    width: 100%;
    height: 350px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.showcase__slide--active:hover .showcase__img {
    transform: scale(1.02);
}

.showcase__img-badge {
    position: absolute;
    bottom: 14px;
    left: 14px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 5px 16px;
    border-radius: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.showcase__img-badge--before {
    background: rgba(220, 38, 38, 0.12);
    color: #DC2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.showcase__img-badge--after {
    background: rgba(22, 163, 74, 0.12);
    color: #16A34A;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* Arrow divider */
.showcase__img-divider {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #E4EDF8;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 -8px;
    z-index: 2;
    color: var(--blue-bright);
    box-shadow: 0 2px 10px rgba(19, 65, 149, 0.08);
}

/* Dots */
.showcase__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.showcase__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #D6E4F0;
    cursor: pointer;
    transition: all 0.35s ease;
    padding: 0;
}

.showcase__dot--active {
    background: var(--blue-bright);
    width: 32px;
    border-radius: 5px;
}

/* ===========================
   OPERATIONS ACCORDION
   =========================== */
.operations {
    padding: 40px 75px 80px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.operations__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.operations__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.operations__badge {
    background: var(--green-light);
    color: var(--green-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: var(--radius-lg);
}

.operations__title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.17;
    color: var(--primary);
    text-align: center;
    text-transform: capitalize;
}

.operations__grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Accordion Item */
.accordion__item {
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
}

.accordion__item:hover {
    border-color: var(--light-blue-2);
    box-shadow: 0 4px 20px rgba(19, 65, 149, 0.06);
}

.accordion__item--open {
    border-color: var(--blue-bright);
    box-shadow: 0 8px 32px rgba(40, 145, 255, 0.1);
}

/* Trigger button */
.accordion__trigger {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 24px 28px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    text-align: left;
}

/* Icon box */
.accordion__icon-box {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.35s ease;
}

.accordion__item:hover .accordion__icon-box {
    transform: scale(1.08);
}

.accordion__icon-box--blue {
    background: #EBF3FF;
    color: var(--blue-bright);
}

.accordion__icon-box--teal {
    background: #E6FAF5;
    color: #0D9488;
}

.accordion__icon-box--green {
    background: #ECFDF5;
    color: #16A34A;
}

.accordion__icon-box--orange {
    background: #FFF7ED;
    color: #EA580C;
}

.accordion__icon-box--red {
    background: #FEF2F2;
    color: #DC2626;
}

.accordion__icon-box--purple {
    background: #F3F0FF;
    color: #7C3AED;
}

.accordion__icon-box--pink {
    background: #FDF2F8;
    color: #DB2777;
}

/* Text area */
.accordion__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.accordion__heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 1.4;
    color: var(--dark-navy);
    transition: color 0.3s ease;
}

.accordion__item--open .accordion__heading {
    font-weight: 700;
    color: var(--primary);
}

.accordion__subtext {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.4;
    color: var(--text-secondary);
}

/* Chevron */
.accordion__chevron {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #F3F6FC;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--dark-navy);
    transition: all 0.35s ease;
}

.accordion__item--open .accordion__chevron {
    background: var(--blue-bright);
    color: var(--white);
    transform: rotate(180deg);
}

.accordion__item:hover .accordion__chevron {
    background: #E4EBF8;
}

.accordion__item--open:hover .accordion__chevron {
    background: var(--blue-bright);
}

/* Content */
.accordion__content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion__item--open .accordion__content {
    max-height: 500px;
}

.accordion__content p {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    padding: 0 28px 28px 100px;
    margin: 0;
}

/* ===========================
   TIMELINE SECTION
   =========================== */
.timeline {
    padding: 80px 75px;
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
}

.timeline__main-title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 48px;
    line-height: 1.17;
    color: var(--primary);
    text-align: center;
}

/* The track holds all items and the center line */
.timeline__track {
    position: relative;
    width: 100%;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Vertical center line */
.timeline__track::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue-bright) 0%, var(--green-whatsapp) 100%);
    transform: translateX(-50%);
    border-radius: 3px;
}

/* Each row: card | dot | spacer  OR  spacer | dot | card */
.timeline__item {
    display: grid;
    grid-template-columns: 1fr 40px 1fr;
    align-items: start;
    position: relative;
}

.timeline__spacer {
    /* Empty space on the opposite side */
}

/* Dot in the center column */
.timeline__dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    justify-self: center;
    margin-top: 8px;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px var(--white);
    transition: transform 0.3s ease;
}

.timeline__item:hover .timeline__dot {
    transform: scale(1.3);
}

.timeline__dot--blue {
    background: var(--blue-bright);
}

.timeline__dot--green {
    background: var(--green-whatsapp);
}

/* Pulsing dot for current position */
.timeline__dot--pulse {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 4px var(--white), 0 0 0 8px rgba(96, 214, 105, 0.3); }
    50% { box-shadow: 0 0 0 4px var(--white), 0 0 0 14px rgba(96, 214, 105, 0.15); }
}

/* Card styling */
.timeline__card {
    background: var(--white);
    border: 1px solid var(--light-blue-2);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline__item:hover .timeline__card {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(19, 65, 149, 0.08);
}

/* Left-side cards align text right */
.timeline__item--left .timeline__card {
    text-align: right;
    margin-right: 16px;
}

/* Right-side cards align text left */
.timeline__item--right .timeline__card {
    text-align: left;
    margin-left: 16px;
}

/* Active card (current job) */
.timeline__card--active {
    background: linear-gradient(135deg, #f0fff0 0%, #e8f8e8 100%);
    border-color: var(--green-whatsapp);
}

/* Badge pills */
.timeline__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 20px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    border-radius: 20px;
    width: fit-content;
    color: var(--white);
    margin-bottom: 4px;
}

.timeline__badge--edu {
    background: var(--blue-bright);
}

.timeline__item--left .timeline__badge {
    align-self: flex-end;
}

.timeline__item--right .timeline__badge {
    align-self: flex-start;
}

.timeline__badge--exp {
    background: var(--green-whatsapp);
}

/* Date label */
.timeline__date {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.6;
    color: var(--blue-bright);
}

.timeline__date--green {
    color: var(--green-accent);
}

/* Description text */
.timeline__text {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

/* ===========================
   GALLERY CAROUSEL
   =========================== */
.gallery {
    background: linear-gradient(180deg, #0C1F3F 0%, #152B54 100%);
    padding: 72px 0 56px;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(40, 145, 255, 0.3), transparent);
}

.gallery__header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 75px;
    margin-bottom: 40px;
}

.gallery__header-text {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gallery__badge {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--green-whatsapp);
}

.gallery__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
    color: var(--white);
}

.gallery__nav {
    display: flex;
    gap: 10px;
}

.gallery__nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.gallery__nav-btn:hover {
    background: var(--blue-bright);
    border-color: var(--blue-bright);
    color: var(--white);
    transform: scale(1.08);
}

.gallery__nav-btn:active {
    transform: scale(0.95);
}

/* Viewport */
.gallery__viewport {
    overflow: hidden;
    padding: 0 0 0 75px;
}

.gallery__track {
    display: flex;
    gap: 20px;
    animation: scrollGallery 35s linear infinite;
    will-change: transform;
}

.gallery__track:hover {
    animation-play-state: paused;
}

/* Slide */
.gallery__slide {
    flex-shrink: 0;
    width: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery__img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery__slide:hover .gallery__img {
    transform: scale(1.08);
}

/* Overlay */
.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(12, 31, 63, 0.85) 0%, transparent 50%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery__slide:hover .gallery__overlay {
    opacity: 1;
}

.gallery__overlay-tag {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--white);
    background: rgba(40, 145, 255, 0.25);
    backdrop-filter: blur(8px);
    padding: 8px 18px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.3px;
}

/* Progress bar */
.gallery__progress {
    margin: 32px 75px 0;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.gallery__progress-bar {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--blue-bright), var(--green-whatsapp));
    border-radius: 3px;
    animation: galleryProgress 35s linear infinite;
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-380px * 4 - 20px * 4));
    }
}

@keyframes galleryProgress {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(400%); }
}

/* ===========================
   WAVE DECORATION (between sections)
   =========================== */
.wave-decoration {
    width: 108px;
    height: 42px;
}

/* ===========================
   ARTICLES SECTION
   =========================== */
.articles {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 80px 75px;
}

.articles__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 48px;
}

.articles__badge {
    background: var(--green-light);
    color: var(--green-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 8px 24px;
    border-radius: var(--radius-lg);
}

.articles__title {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.17;
    color: var(--primary);
    text-align: center;
    text-transform: capitalize;
}

.articles__subtitle {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
}

.articles__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.articles__card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.35s ease;
    cursor: default;
    position: relative;
}

.articles__card:hover {
    border-color: var(--blue-bright);
    box-shadow: 0 8px 32px rgba(19, 65, 149, 0.08);
    transform: translateY(-3px);
}

.articles__card-num {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    color: var(--light-blue-2);
    flex-shrink: 0;
    min-width: 48px;
    transition: color 0.35s ease;
}

.articles__card:hover .articles__card-num {
    color: var(--blue-bright);
}

.articles__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.articles__card-journal {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--blue-bright);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.articles__card-year {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue-1);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    letter-spacing: 0;
}

.articles__card-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.5;
    color: var(--dark-navy);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.articles__card-authors {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-secondary);
    margin: 0;
}

.articles__card-authors strong {
    color: var(--primary);
    font-weight: 700;
}

.articles__card-arrow {
    flex-shrink: 0;
    color: var(--light-blue-2);
    margin-top: 4px;
    transition: all 0.35s ease;
}

.articles__card:hover .articles__card-arrow {
    color: var(--blue-bright);
    transform: translate(3px, -3px);
}

/* ===========================
   REVIEWS SECTION
   =========================== */
.reviews {
    background: linear-gradient(180deg, #F0F7FF 0%, #FFFFFF 50%, #F8FBFF 100%);
    max-width: var(--max-width);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.reviews::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(40, 145, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.reviews__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 56px;
    padding: 80px 75px;
    position: relative;
    z-index: 1;
}

.reviews__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    max-width: 600px;
}

.reviews__badge {
    background: var(--green-light);
    color: var(--green-dark);
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 6px 20px;
    border-radius: var(--radius-lg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.reviews__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.26;
    color: var(--primary);
}

.reviews__subtitle {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

/* Review card */
.reviews__card {
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 24px;
    padding: 36px 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reviews__card:hover {
    border-color: var(--light-blue-2);
    box-shadow: 0 16px 48px rgba(19, 65, 149, 0.08);
    transform: translateY(-6px);
}

/* Featured card */
.reviews__card--featured {
    background: linear-gradient(145deg, #11295A 0%, #1A3A7A 100%);
    border-color: transparent;
}

.reviews__card--featured:hover {
    border-color: transparent;
    box-shadow: 0 20px 56px rgba(17, 41, 90, 0.25);
}

/* Card top */
.reviews__card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reviews__quote-icon {
    color: #E4EDF8;
    transition: color 0.35s ease;
}

.reviews__card:hover .reviews__quote-icon {
    color: var(--blue-bright);
}

.reviews__card--featured .reviews__quote-icon {
    color: rgba(255, 255, 255, 0.15);
}

.reviews__card--featured:hover .reviews__quote-icon {
    color: rgba(255, 255, 255, 0.25);
}

.reviews__stars {
    display: flex;
    gap: 3px;
}

/* Card text */
.reviews__card-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    flex: 1;
}

.reviews__card--featured .reviews__card-text {
    color: rgba(255, 255, 255, 0.85);
}

/* Divider */
.reviews__card-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #E4EDF8, transparent);
}

.reviews__card--featured .reviews__card-divider {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

/* Author */
.reviews__card-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.reviews__avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue-bright), #1A3A7A);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.5px;
    flex-shrink: 0;
}

.reviews__card--featured .reviews__avatar {
    background: linear-gradient(135deg, var(--green-whatsapp), #1BB76E);
}

.reviews__author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.reviews__card-name {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.3;
    color: var(--dark-navy);
}

.reviews__card--featured .reviews__card-name {
    color: var(--white);
}

.reviews__card-meta {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    color: var(--text-secondary);
}

.reviews__card--featured .reviews__card-meta {
    color: rgba(255, 255, 255, 0.6);
}

/* Tag */
.reviews__card-tag {
    display: inline-flex;
    align-self: flex-start;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    padding: 5px 14px;
    border-radius: 20px;
    background: #F0F7FF;
    color: var(--blue-bright);
    letter-spacing: 0.3px;
}

.reviews__card--featured .reviews__card-tag {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* ===========================
   BLOG SECTION
   =========================== */
.blog {
    background: var(--white);
    max-width: var(--max-width);
    margin: 0 auto;
}

.blog__container {
    padding: 80px 75px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.blog__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
}

.blog__badge {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 6px 20px;
    border-radius: 30px;
}

.blog__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    color: var(--primary);
}

.blog__subtitle {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 500px;
}

.blog__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.blog__card {
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.blog__card:hover {
    border-color: var(--light-blue-2);
    box-shadow: 0 16px 48px rgba(19, 65, 149, 0.08);
    transform: translateY(-4px);
}

/* Image container */
.blog__card-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.blog__card-image {
    height: 220px;
}

.blog__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog__card:hover .blog__img {
    transform: scale(1.06);
}

.blog__card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--white);
    background: rgba(17, 41, 90, 0.65);
    backdrop-filter: blur(8px);
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Body */
.blog__card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}


.blog__card-title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.45;
    color: var(--dark-navy);
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog__card:hover .blog__card-title {
    color: var(--blue-bright);
}

.blog__card-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex: 1;
}

.blog__card-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    margin-top: auto;
    padding-top: 4px;
}

.blog__card-meta svg {
    flex-shrink: 0;
}

.blog__card-meta span {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta {
    padding: 64px 75px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.cta__container {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 520px;
    justify-content: center;
}

/* Background image */
.cta__bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Dark gradient overlay */
.cta__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
        rgba(11, 25, 55, 0.92) 0%,
        rgba(17, 41, 90, 0.88) 40%,
        rgba(10, 30, 70, 0.95) 100%);
    z-index: 1;
}

/* Pulse decoration */
.cta__pulse {
    position: absolute;
    bottom: 25%;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 2;
    opacity: 0.6;
}

/* Content */
.cta__content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 72px 48px 40px;
}

.cta__icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-whatsapp);
    animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.15); }
    50% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
}

.cta__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 1.25;
    color: var(--white);
    max-width: 700px;
}

.cta__description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

.cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.cta__link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta__link:hover {
    color: var(--white);
}

.cta__link svg {
    transition: transform 0.3s ease;
}

.cta__link:hover svg {
    transform: translateX(4px);
}

/* Stats bar */
.cta__stats {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 48px;
    margin: 0 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: calc(100% - 128px);
}

.cta__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.cta__stat-num {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
}

.cta__stat-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.cta__stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    max-width: var(--max-width);
    margin: 0 auto;
    background: linear-gradient(180deg, #FFFFFF 0%, #F6F9FE 100%);
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    padding: 80px 75px;
    align-items: start;
}

/* Left side */
.contact__left {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

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

.contact__badge {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 6px 20px;
    border-radius: 30px;
    width: fit-content;
}

.contact__title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 1.25;
    color: var(--primary);
}

.contact__subtitle {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-secondary);
    max-width: 440px;
}

/* Contact cards */
.contact__cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.35s ease;
}

a.contact__card:hover {
    border-color: var(--light-blue-2);
    box-shadow: 0 6px 24px rgba(19, 65, 149, 0.07);
    transform: translateX(4px);
}

.contact__card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__card-icon--blue {
    background: #EBF3FF;
    color: var(--blue-bright);
}

.contact__card-icon--green {
    background: #ECFDF5;
    color: #16A34A;
}

.contact__card-icon--orange {
    background: #FFF7ED;
    color: #EA580C;
}

.contact__card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
    min-width: 0;
}

.contact__card-label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.contact__card-value {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--dark-navy);
}

.contact__card-arrow {
    color: var(--light-blue-2);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

a.contact__card:hover .contact__card-arrow {
    color: var(--blue-bright);
    transform: translate(2px, -2px);
}

.contact__social {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.contact__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(40, 145, 255, 0.08);
    color: var(--primary);
    transition: all 0.3s ease;
}

.contact__social-link:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(19, 65, 149, 0.2);
}

.contact__social-link svg {
    width: 20px;
    height: 20px;
}

.contact__social-img {
    height: 44px;
}

/* Right side - Form */
.contact__right {
    position: relative;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 28px;
    background: var(--white);
    border: 1px solid #E8F0FE;
    border-radius: 28px;
    padding: 40px 36px;
    box-shadow: 0 8px 40px rgba(19, 65, 149, 0.06);
}

.contact__form-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__form-title {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
}

.contact__form-desc {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-secondary);
}

.contact__form-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact__label {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark-navy);
    padding-left: 4px;
}

.contact__input {
    width: 100%;
    padding: 14px 20px;
    border: 1.5px solid #E4EDF8;
    border-radius: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 1.4;
    color: var(--dark-navy);
    background: #FAFCFF;
    transition: all 0.3s ease;
}

.contact__input::placeholder {
    color: #A8BDD4;
}

.contact__input:focus {
    border-color: var(--blue-bright);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(40, 145, 255, 0.08);
    outline: none;
}

.contact__select-wrapper {
    position: relative;
}

.contact__select {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    padding-right: 44px;
}

.contact__select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact__textarea {
    border-radius: 14px;
    resize: none;
    min-height: 100px;
}

.btn--submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-bright), #1A6EFF);
    color: var(--white);
    padding: 16px 32px;
    font-family: 'Work Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    width: 100%;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
    box-shadow: 0 4px 16px rgba(40, 145, 255, 0.25);
}

.btn--submit:hover {
    background: linear-gradient(135deg, #1A6EFF, #0A5AE0);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(40, 145, 255, 0.35);
}

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

.btn--submit svg {
    transition: transform 0.3s ease;
}

.btn--submit:hover svg {
    transform: translateX(4px);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--gray-bg);
    max-width: var(--max-width);
    margin: 0 auto;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 75px;
}

.footer__copyright {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer__icon {
    width: 16px;
    height: 16px;
}

.footer__copyright span,
.footer__credit {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    color: var(--primary);
}

/* ===========================
   ANIMATIONS
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 1280px) {
    .hero__title {
        font-size: 50px;
    }

    .hero__wrapper {
        padding: 110px 60px 50px;
    }

    .hero__image-frame {
        max-width: 400px;
    }

    .blog__container {
        padding: 48px 40px;
        gap: 36px;
    }

    .blog__title {
        font-size: 32px;
    }

    .blog__cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog__card-image {
        height: 180px;
    }

    .reviews__container {
        padding: 48px 40px;
        gap: 40px;
    }

    .reviews__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .reviews__card {
        padding: 28px 24px 24px;
    }

    .cta {
        padding: 48px 40px;
    }

    .cta__title {
        font-size: 44px;
    }

    .cta__stats {
        gap: 36px;
    }

    .contact__container {
        padding: 64px 40px;
        gap: 40px;
    }

    .contact__title {
        font-size: 34px;
    }

    .contact__form {
        padding: 32px 28px;
    }
}

@media (max-width: 1024px) {
    :root {
        --padding-section: 48px 40px;
    }

    .navbar {
        padding: 14px 40px;
    }

    .navbar__link {
        font-size: 13px;
        padding: 9px 14px;
    }

    .hero__wrapper {
        grid-template-columns: 1fr;
        padding: 120px 40px 80px;
        text-align: center;
    }

    .hero__badge {
        margin: 0 auto;
    }

    .hero__content {
        align-items: center;
    }

    .hero__description {
        max-width: 560px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-col {
        display: none;
    }

    .hero__title {
        font-size: 48px;
    }

    .about {
        padding: 48px 40px;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .about__content {
        align-items: center;
        text-align: center;
    }

    .about__badge {
        margin: 0 auto;
    }

    .about__name-group {
        align-items: center;
    }

    .about__bio {
        text-align: center;
    }

    .about__highlight {
        text-align: left;
    }

    .about__name {
        font-size: 34px;
    }

    .operations {
        padding: 48px 40px;
    }

    .operations__container {
        gap: 36px;
    }

    .operations__title {
        font-size: 34px;
    }

    .showcase__container {
        padding: 0 40px;
    }

    .showcase__title {
        font-size: 32px;
    }

    .showcase__slide--active {
        grid-template-columns: 1fr 1.2fr;
    }

    .showcase__info {
        padding: 32px 28px;
    }

    .showcase__case-num {
        font-size: 44px;
    }

    .showcase__img {
        height: 300px;
    }

    .timeline {
        padding: 48px 40px;
    }

    .timeline__main-title {
        font-size: 36px;
    }

    .timeline__track::before {
        left: 20px;
    }

    .timeline__item {
        grid-template-columns: 40px 1fr;
    }

    .timeline__item--left,
    .timeline__item--right {
        grid-template-columns: 40px 1fr;
    }

    .timeline__spacer {
        display: none;
    }

    .timeline__item--left .timeline__card,
    .timeline__item--right .timeline__card {
        text-align: left;
        margin-left: 16px;
        margin-right: 0;
    }

    .timeline__item--left .timeline__badge,
    .timeline__item--right .timeline__badge {
        align-self: flex-start;
    }

    /* Reorder grid children for left items */
    .timeline__item--left .timeline__dot {
        order: -1;
    }

    .timeline__item--left .timeline__card {
        order: 1;
    }

    .reviews__grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .reviews__grid .reviews__card:last-child {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .gallery {
        padding: 56px 0 44px;
    }

    .gallery__header {
        padding: 0 40px;
        margin-bottom: 32px;
    }

    .gallery__title {
        font-size: 28px;
    }

    .gallery__viewport {
        padding: 0 0 0 40px;
    }

    .gallery__slide {
        width: 300px;
    }

    .gallery__img {
        height: 360px;
    }

    .gallery__progress {
        margin: 24px 40px 0;
    }

    .contact__container {
        grid-template-columns: 1fr;
        padding: 48px 40px;
    }

    .contact__form {
        width: 100%;
    }

    .cta {
        padding: 40px 20px;
    }

    .cta__container {
        min-height: 420px;
        border-radius: 24px;
    }

    .cta__content {
        padding: 48px 28px 28px;
        gap: 18px;
    }

    .cta__icon {
        width: 60px;
        height: 60px;
    }

    .cta__icon svg {
        width: 36px;
        height: 36px;
    }

    .cta__title {
        font-size: 32px;
    }

    .cta__description {
        font-size: 16px;
    }

    .cta__stats {
        gap: 24px;
        padding: 24px 20px;
        margin: 0 20px;
        width: calc(100% - 40px);
    }

    .cta__stat-num {
        font-size: 22px;
    }

    .cta__stat-label {
        font-size: 12px;
    }

    .navbar__links {
        display: none;
    }

    .navbar__menu.active .navbar__links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 16px 20px;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
        border: none;
        backdrop-filter: none;
    }

    .navbar__menu.active .navbar__link {
        padding: 14px 16px;
        border-radius: 12px;
    }

    .navbar__cta {
        display: none;
    }

    .navbar__burger {
        display: flex;
    }

    .navbar__burger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .navbar__burger.active span:nth-child(2) {
        opacity: 0;
    }

    .navbar__burger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

@media (max-width: 768px) {
    :root {
        --padding-section: 40px 20px;
    }

    .navbar {
        padding: 12px 20px;
    }

    .navbar__logo {
        width: 150px;
    }

    .hero {
        min-height: 100vh;
    }

    .hero__wrapper {
        padding: 100px 20px 60px;
    }

    .hero__title {
        font-size: 36px;
    }

    .hero__description {
        font-size: 15px;
    }

    .hero__stats {
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero__stat-num {
        font-size: 22px;
    }

    .hero__scroll-hint {
        bottom: 16px;
    }

    .hero__description {
        font-size: 16px;
    }

    .btn--outline {
        padding: 14px 22px;
        font-size: 14px;
    }

    .about {
        padding: 40px 20px;
    }

    .about__name {
        font-size: 28px;
    }

    .about__role {
        font-size: 15px;
    }

    .about__bio {
        font-size: 15px;
    }

    .about__highlight {
        padding: 14px 16px;
    }

    .about__highlight-icon {
        width: 38px;
        height: 38px;
    }

    .operations {
        padding: 40px 20px;
    }

    .operations__title {
        font-size: 28px;
    }

    .operations__grid {
        gap: 10px;
    }

    .accordion__trigger {
        padding: 18px 20px;
        gap: 14px;
    }

    .accordion__icon-box {
        width: 44px;
        height: 44px;
        border-radius: 12px;
    }

    .accordion__icon-box svg {
        width: 22px;
        height: 22px;
    }

    .accordion__heading {
        font-size: 16px;
    }

    .accordion__subtext {
        font-size: 12px;
    }

    .accordion__chevron {
        width: 32px;
        height: 32px;
    }

    .accordion__content p {
        padding: 0 20px 20px 78px;
        font-size: 14px;
    }

    .timeline {
        padding: 40px 20px;
    }

    .timeline__main-title {
        font-size: 32px;
    }

    .timeline__card {
        padding: 18px 20px;
    }

    .blog__container {
        padding: 40px 20px;
        gap: 28px;
    }

    .blog__title {
        font-size: 28px;
    }

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

    .blog__card-image {
        height: 180px;
    }

    .blog__card-body {
        padding: 20px;
    }

    .blog__card-title {
        font-size: 16px;
    }

    .articles {
        padding: 40px 20px;
    }

    .articles__title {
        font-size: 28px;
    }

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

    .articles__card {
        padding: 20px;
    }

    .articles__card-num {
        font-size: 28px;
        min-width: 36px;
    }

    .reviews__container {
        padding: 40px 20px;
        gap: 36px;
    }

    .reviews__title {
        font-size: 28px;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 480px;
        margin: 0 auto;
    }

    .reviews__card {
        padding: 28px 24px 22px;
        gap: 16px;
    }

    .reviews__quote-icon {
        width: 32px;
        height: 26px;
    }

    .cta__title {
        font-size: 26px;
    }

    .cta__description {
        font-size: 15px;
    }

    .cta__stats {
        flex-direction: column;
        gap: 16px;
    }

    .cta__stat-divider {
        width: 40px;
        height: 1px;
    }

    .btn--cta {
        font-size: 15px;
        padding: 16px 32px;
    }

    .contact__container {
        padding: 40px 20px;
        gap: 32px;
    }

    .contact__title {
        font-size: 28px;
    }

    .contact__form {
        padding: 28px 20px;
        border-radius: 22px;
    }

    .contact__card {
        padding: 14px 16px;
    }

    .contact__card-icon {
        width: 40px;
        height: 40px;
    }

    .btn--submit {
        font-size: 15px;
        padding: 14px;
    }

    .footer__container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        padding: 24px 20px;
    }

    .gallery {
        padding: 48px 0 36px;
    }

    .gallery__header {
        padding: 0 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 24px;
    }

    .gallery__title {
        font-size: 24px;
    }

    .gallery__nav-btn {
        width: 42px;
        height: 42px;
    }

    .gallery__viewport {
        padding: 0 0 0 20px;
    }

    .gallery__slide {
        width: 260px;
        border-radius: 16px;
    }

    .gallery__img {
        height: 300px;
    }

    .gallery__overlay {
        padding: 16px;
    }

    .gallery__overlay-tag {
        font-size: 12px;
        padding: 6px 14px;
    }

    .gallery__progress {
        margin: 20px 20px 0;
    }

    .showcase {
        padding: 48px 0 40px;
    }

    .showcase__container {
        padding: 0 20px;
    }

    .showcase__header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 32px;
    }

    .showcase__title {
        font-size: 28px;
    }

    .showcase__subtitle {
        font-size: 14px;
    }

    .showcase__controls {
        width: 100%;
        justify-content: space-between;
    }

    .showcase__nav-btn {
        width: 42px;
        height: 42px;
    }

    .showcase__carousel {
        border-radius: 20px;
        min-height: auto;
    }

    .showcase__slide--active {
        grid-template-columns: 1fr;
    }

    .showcase__info {
        padding: 24px 24px 16px;
        gap: 12px;
    }

    .showcase__case-num {
        font-size: 36px;
    }

    .showcase__desc {
        font-size: 14px;
    }

    .showcase__images {
        padding: 0 16px 16px;
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .showcase__img-wrap {
        flex: none;
        width: 100%;
    }

    .showcase__img {
        height: 180px;
        width: 100%;
        border-radius: 16px;
    }

    .showcase__img-divider {
        margin: -6px auto;
        transform: rotate(90deg);
        width: 36px;
        height: 36px;
        z-index: 3;
    }

    .showcase__img-badge {
        bottom: 10px;
        left: 10px;
        font-size: 11px;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .hero__wrapper {
        padding: 90px 16px 50px;
    }

    .hero__title {
        font-size: 28px;
    }

    .hero__badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .hero__buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }

    .hero__stat-divider {
        width: 40px;
        height: 1px;
    }

    .accordion__trigger {
        padding: 14px 16px;
        gap: 12px;
    }

    .accordion__icon-box {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .accordion__icon-box svg {
        width: 20px;
        height: 20px;
    }

    .accordion__heading {
        font-size: 15px;
    }

    .accordion__subtext {
        font-size: 11px;
    }

    .accordion__content p {
        padding: 0 16px 18px 68px;
        font-size: 14px;
    }

    .contact__social-link {
        width: 40px;
        height: 40px;
    }

    .contact__social-link svg {
        width: 18px;
        height: 18px;
    }
}
