/* ================================================
   DigiPay Website - Main Stylesheet
   ================================================ */

/* ================================================
   CSS Variables & Reset
   ================================================ */
:root {
    /* Brand Colors - DigiPay */
    --primary-blue: #004C97;
    /* 0066cc */
    --primary-dark: #004C97;
    --accent-orange: #FF8200;
    --text-black: #000000;
    --violet: #943CFF;
    --gold: #FDB022;
    --green: #10B981;
    --green-dark: #059669;

    /* Neutrals */
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E5E7EB;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --heading-weight: 700;
    --body-weight: 400;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
    --section-padding-mobile: 40px;

    /* Borders & Shadows */
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Remove list decorations from all menu items */
.nav-links li,
.nav-menu ul li,
.nav-menu li,
.submenu li,
#primary-menu li,
.menu li {
    list-style: none !important;
    list-style-type: none !important;
}

/* ================================================
   Container & Layout
   ================================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ================================================
   Hero (Responsive background images)
   ================================================ */
.hero.hero-desktop-bg {
    background-image: none;
    background-size: cover;
    background-position: center;
}

/* Hero image: hidden on desktop (bg image used instead), shown on tablet/mobile */
.hero-image.hero-image-mobile-tablet {
    display: none;
}

@media (min-width: 1200px) {
    .hero.hero-desktop-bg {
        background-image: url('../images/home-desktop.webp');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: right;
    }

    /* Single column so text uses full container width on desktop */
    .hero.hero-desktop-bg .hero-content {
        grid-template-columns: 1fr;
    }

    .hero.hero-desktop-bg .hero-text {
        max-width: 680px;
    }
}

@media (max-width: 1199px) {
    .hero.hero-desktop-bg .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-image.hero-image-mobile-tablet {
        display: flex;
        margin: 0 auto;
        width: 100%;
        max-width: 560px;
        overflow: hidden;
    }

    .hero-image-mobile-tablet .cards-img {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center;
    }

    .hero.hero-desktop-bg .hero-text {
        order: 2;
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {

    .hero-image.hero-image-mobile-tablet,
    .hero.hero-desktop-bg .hero-text {
        max-width: 760px;
    }
}

/* ================================================
   Navigation
   ================================================ */
.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-wrapper {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-text {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 800;
    text-transform: capitalize;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    order: 3;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-blue);
}

/* Dropdown Navigation */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.nav-item-dropdown:hover .submenu {
    opacity: 1;
    visibility: visible;
    margin-top: 12px;
}

.submenu li {
    list-style: none;
}

.submenu-link {
    display: block;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.submenu-link:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
    padding-left: 28px;
}

.app-buttons {
    display: flex;
    gap: 12px;
    align-items: center;
}

.app-btn {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.app-btn:hover {
    transform: translateY(-2px);
}

.app-store-badge {
    height: 40px;
    width: auto;
}

/* ================================================
   Hero Section
   ================================================ */
.hero {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    position: relative;
    overflow: hidden;
    /* width: 100%; */
    /* height: 90vh; */
}

.hero-content {
    /* display: grid; */
    /* grid-template-columns: 1fr 1fr; */
    /* gap: 60px; */
    align-items: center;
    width: 100%;
}

.hero-text {
    max-width: 700px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-description {
    display: inline-block;
    max-width: 37ch;

    /* background: rgba(255, 255, 255, 0.75); */
    /* backdrop-filter: blur(12px); */

    color: #1F2937;
    line-height: 1.75;
    font-size: 22px;

    padding: 4px 0px;
    border-radius: 10px;

    /* box-decoration-break: clone;
    -webkit-box-decoration-break: clone; */
}


.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background: var(--accent-orange);
    color: white;
}

.btn-primary:hover {
    background: #FF7622;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

.btn-outline:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.trust-badges {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.trust-text {
    font-size: 14px;
    color: var(--text-gray);
}

.trust-icons {
    display: flex;
    gap: 12px;
}

.trust-icon {
    height: 32px;
    width: auto;
}

.trust-icon-wrapper {
    position: relative;
    display: inline-block;
}

.trust-icon-link {
    cursor: pointer;
}

.trust-icon-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    line-height: 1.6;
    width: 400px;
    max-width: 90vw;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    margin-bottom: 8px;
    text-align: left;
}

.trust-icon-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #fff;
}

.trust-icon-link:hover+.trust-icon-tooltip,
.trust-icon-link:focus+.trust-icon-tooltip,
.trust-icon-link.active+.trust-icon-tooltip,
.trust-icon-tooltip:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    /* Removed negative margin to keep image inside container */
}

.cards-img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

.hero-bg-pattern {
    position: absolute;
    width: 400px;
    height: 400px;
    /* background: url('../images/grid.png') center/contain no-repeat; */
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    z-index: 1;
}

/* ================================================
   Section Headers
   ================================================ */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    line-height: 1.75;
    color: var(--text-gray);
    font-weight: 400;
}

/* ================================================
   DigiCard Section
   ================================================ */
.digicard-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 32px;
    margin-top: 60px;
}

@media (max-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }
}

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

.digipay-app-hero .hero-description {
    max-width: 820px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--text-gray);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(240px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.price-card {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
    border: 1px solid rgba(15, 24, 40, 0.08);
    border-radius: calc(var(--border-radius-lg) * 1.2);
    padding: 34px 28px;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.price-card .card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.card-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.amount {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.03em;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-limit {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-top: 8px;
    letter-spacing: 0.02em;
}

.card-visual {
    margin: 24px 0 18px;
    padding: 24px;
    border-radius: var(--border-radius-lg);
    background: linear-gradient(180deg, rgba(240, 247, 255, 0.9) 0%, rgba(255, 255, 255, 0.9) 100%);
    min-height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual img {
    width: auto;
    max-width: 100%;
    max-height: 180px;
    display: block;
    object-fit: contain;
}

.card-subtitle {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-gray);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 45px rgba(15, 24, 40, 0.12);
    border-color: rgba(0, 102, 204, 0.2);
}

.card-price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 8px;
}

.card-price .amount {
    font-size: 34px;
}

.card-price .currency {
    font-size: 22px;
}

.card-visual {
    margin: 24px 0;
    padding: 0;
    border-radius: var(--border-radius);
    background: rgba(243, 244, 246, 0.9);
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-visual img {
    width: auto;
    max-width: 100%;
    max-height: 180px;
    display: block;
    object-fit: contain;
}

.card-subtitle {
    margin: 0;
    font-size: 0.97rem;
    line-height: 1.75;
    color: var(--text-gray);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-blue);
}

.price-card.featured {
    border: 2px solid var(--primary-blue);
    position: relative;
}

.price-card.featured::before {
    content: 'Populaire';
    position: absolute;
    top: -12px;
    right: 32px;
    background: var(--primary-blue);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.card-header {
    text-align: center;
    margin-bottom: 24px;
}

.card-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.amount {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
    letter-spacing: -0.02em;
}

.separator {
    font-size: 24px;
    color: var(--text-gray);
    font-weight: 400;
}

.currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
}

.card-limit {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 8px;
    letter-spacing: 0.01em;
}

.period {
    font-size: 18px;
    color: var(--text-gray);
    margin-top: 16px;
}

.card-subtitle {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    font-weight: 400;
}

.card-visual {
    margin: 24px 0;
    padding: 0;
    border-radius: var(--border-radius);
    background: transparent;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.virtual-card {
    width: 100%;
    aspect-ratio: 1.586;
    background: linear-gradient(135deg, #00376e 0%, var(--primary-blue) 80%, var(--primary-blue) 100%);
    border-radius: 16px;
    padding: 6%;
    color: white;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.3);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8%;
}

/* Decorative stripes */
.virtual-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 30%;
    height: 100%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(128, 179, 230, 0.15) 45%,
            rgba(128, 179, 230, 0.25) 50%,
            rgba(128, 179, 230, 0.15) 55%,
            transparent 100%);
    transform: skewX(-15deg);
    z-index: 0;
}

.virtual-card.violet {
    background: linear-gradient(135deg, #000000 0%, #3a3a3a 50%, #5d5c5d 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}


.virtual-card.violet::after {
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(70, 69, 70, 0.3) 45%,
            rgba(70, 69, 70, 0.4) 50%,
            rgba(70, 69, 70, 0.3) 55%,
            transparent 100%);
}

.virtual-card.gold {
    background: linear-gradient(135deg, #b98f29 0%, #ebc864 50%, #e6c670 100%);
    box-shadow: 0 8px 24px rgba(185, 143, 41, 0.4);
}

.virtual-card.gold::after {
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(240, 220, 167, 0.2) 45%,
            rgba(240, 220, 167, 0.3) 50%,
            rgba(240, 220, 167, 0.2) 55%,
            transparent 100%);
}

.virtual-card.platinum {
    background: linear-gradient(135deg, #000000 0%, #3a3a3a 50%, #464546 100%);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}


.virtual-card.platinum::after {
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(100, 100, 100, 0.3) 45%,
            rgba(100, 100, 100, 0.4) 50%,
            rgba(100, 100, 100, 0.3) 55%,
            transparent 100%);
}

/* Card Elements */
.card-type {
    position: absolute;
    top: 6%;
    right: 6%;
    font-size: clamp(9px, 1.1vw, 11px);
    text-transform: lowercase;
    letter-spacing: 1px;
    opacity: 0.9;
    z-index: 2;
    padding: 4px 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
}

.virtual-card.gold .card-type {
    color: #ffffff;
    border-color: rgba(255, 150, 58, 0.4);
}

.virtual-card.platinum .card-type {
    color: #ff963a;
    border-color: rgba(255, 150, 58, 0.4);
}

.card-logo-top {
    width: clamp(42px, 14.4%, 60px);
    height: auto;
    z-index: 2;
    position: relative;
    margin-bottom: auto;
}

.card-logo-top img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.virtual-card.gold .card-logo-top img,
.virtual-card.platinum .card-logo-top img {
    filter: none;
}

.card-number {
    font-size: clamp(16px, 1.5vw, 16px);
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.95;
    font-family: 'Courier New', monospace;
    z-index: 2;
    position: relative;
    margin: 0;
    margin-top: auto;
    white-space: nowrap;
}

.card-holder {
    font-size: clamp(10px, 1.2vw, 13px);
    text-transform: uppercase;
    opacity: 0.85;
    letter-spacing: 0.08em;
    z-index: 2;
    position: relative;
    margin: 0;
    margin-top: 8px;
}

.virtual-card.gold .card-number,
.virtual-card.gold .card-holder {
    color: #ffffff;
}

.virtual-card.platinum .card-number,
.virtual-card.platinum .card-holder {
    color: #ff963a;
}

.card-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    z-index: 2;
    position: relative;
}

.card-info {
    display: flex;
    gap: 20px;
}

.card-info-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.card-info-label {
    font-size: clamp(7px, 0.8vw, 8px);
    text-transform: uppercase;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.card-info-value {
    font-size: clamp(10px, 1.1vw, 12px);
    font-weight: 500;
    opacity: 0.9;
}

.virtual-card.gold .card-info-label,
.virtual-card.gold .card-info-value {
    color: #ffffff;
}

.virtual-card.platinum .card-info-label,
.virtual-card.platinum .card-info-value {
    color: #ff963a;
}

.card-logo {
    width: clamp(40px, 15%, 55px);
    height: auto;
    opacity: 0.95;
}

.card-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.card-features {
    margin-top: 24px;
}

.card-features li {
    padding: 10px 0;
    border-top: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    font-weight: 400;
}

.card-features li:first-child {
    border-top: none;
    padding-top: 0;
}

.card-features li::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 8px;
    font-size: 16px;
}

.section-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-lg {
    padding: 16px 48px;
    font-size: 18px;
}

/* ================================================
   DigiTransfer Section
   ================================================ */
.digitransfer-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

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

.transfer-subtitle {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 700;
    line-height: 1.35;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin: 24px 0;
}

.transfer-description {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.transfer-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.transfer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
}

.transfer-features svg {
    flex-shrink: 0;
    color: var(--green);
}

.transfer-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
}

.transfer-image::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.3;
    z-index: 1;
}

.app-mockup {
    max-width: 500px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

/* ================================================
   DigiTransfer Europe Section
   ================================================ */
.digitransfer-europe-section {
    /* padding: var(--section-padding) 0; */
    background: #fff;
}

.digitransfer-europe-section .transfer-content.reverse {
    grid-template-columns: 1fr 1fr;
}

.digitransfer-europe-section .app-mockup {
    max-width: 350px;
}

.transfer-stats-mini {
    display: flex;
    gap: 24px;
    padding: 20px 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #e8ecef;
}

.stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-value-mini {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
}

.stat-label-mini {
    font-size: 0.8125rem;
    color: var(--text-gray);
    font-weight: 500;
}

/* ================================================
   Partners Section
   ================================================ */
.partners-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #F0F4FF 0%, #E8EDFF 100%);
}

.partners-wrapper {
    /* display: flex;
    flex-direction: column;
    align-items: center; */
    text-align: center;
    width: 100%;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
    width: 100%;
}

.partners-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--bg-white);
    background: var(--primary-blue);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.partners-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text-dark);
    margin: 0;
}

.partners-subtitle {
    max-width: 760px;
    margin: 20px auto 0;
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.8;
    font-weight: 400;
    color: var(--text-secondary, #6B7280);
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px 32px;
    align-items: center;
    justify-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 100%;
}

.partner-logo:hover {
    transform: scale(1.05);
}

.partner-logo img {
    width: 100%;
    max-width: 120px;
    height: auto;
}

/* Cropped/zoomed logos — trims excess whitespace to balance visual size */
.partner-logo-zoom {
    overflow: hidden;
}

.partner-logo-zoom img {
    transform: scale(1.5);
    max-width: 120px;
}

@media (max-width: 1024px) {
    .partners-wrapper {
        margin-top: 40px;
    }

    .partners-header {
        text-align: center;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 24px;
    }
}

@media (max-width: 768px) {

    /* Full width buttons on mobile */
    .btn,
    .btn-primary,
    .btn-lg {
        width: 100%;
        text-align: center;
        display: block;
    }

    .partners-subtitle {
        max-width: 100%;
        font-size: 16px;
        line-height: 1.7;
        padding: 0 16px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .partner-logo img {
        max-width: 100px;
    }

    .digitransfer-europe-section .transfer-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .digitransfer-europe-section .transfer-image {
        order: -1;
    }

    .digitransfer-europe-section .app-mockup {
        max-width: 280px;
    }

    /* .transfer-stats-mini {
        flex-direction: column;
        gap: 16px;
    } */

    .stat-mini {
        width: 100%;
    }
}

/* Team avatar responsive tweak for small screens */
@media (max-width: 768px) {
    .team-photo {
        width: 120px;
        height: 120px;
        border-width: 2px;
    }

    .member-name {
        font-size: 1.125rem;
    }
}

/* ================================================
   Testimonials Section
   ================================================ */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.star {
    color: #FDB022;
    font-size: 20px;
}

.testimonial-title {
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-weight: 400;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

/* ================================================
   App CTA Section
   ================================================ */
.app-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    color: white;
    overflow: hidden;
}

.app-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-end;
    max-height: 500px;
}

.app-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 5vw, 50px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.app-cta-description {
    font-size: 17px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 32px;
    font-weight: 400;
}

.app-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin-bottom: 40px;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 500;
}

.app-features svg {
    flex-shrink: 0;
    color: white;
    opacity: 0.9;
}

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

.download-btn {
    display: inline-block;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-3px);
    opacity: 0.85;
}

.download-btn img {
    height: 52px;
    width: auto;
    display: block;
}

.coming-soon-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.app-cta-image {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    position: relative;
    height: 100%;
}

.app-cta-image::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.4;
    z-index: 1;
}

.app-screen {
    max-width: 350px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.app-screen:hover {
    transform: scale(1.02);
}

/* ================================================
   Footer
   ================================================ */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo {
    height: 70px;
    width: auto;
    /* margin-bottom: 20px; */
    display: block;
}

.footer-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.01em;
}

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

.footer-links a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 14px;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 14px;
    color: var(--text-light);
}

.footer-legal a:hover {
    color: white;
}

/* ================================================
   Responsive Design
   ================================================ */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .hero-content {
        gap: 40px;
    }

    .hero-image:not(.hero-image-mobile-tablet) {
        margin-right: -20px;
        overflow: hidden;
    }

    .cards-img {
        max-width: 105%;
    }

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

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

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

    .partners-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }

    .nav-menu {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: var(--shadow-lg);
        justify-content: flex-start;
        gap: 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-links>li {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-links>li:last-child {
        border-bottom: none;
    }

    .nav-link {
        width: 100%;
        padding: 18px 24px;
        display: block;
        font-size: 16px;
        border-bottom: none;
    }

    .nav-link.active {
        background: var(--bg-light);
        color: var(--primary-blue);
    }

    .nav-link.active::after {
        display: none;
    }

    /* Mobile Dropdown - Always visible */
    .nav-item-dropdown {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-item-dropdown .nav-link {
        border-bottom: none;
        padding: 18px 24px;
    }

    .nav-item-dropdown .submenu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        border: none;
        box-shadow: none;
        background: transparent;
        border-radius: 0;
        max-height: none;
        overflow: visible;
        padding: 0;
    }

    .dropdown-arrow {
        display: none;
    }

    .submenu li {
        border-bottom: none;
    }

    .submenu-link {
        padding: 14px 24px 14px 72px;
        font-size: 14px;
        display: block;
        background: transparent;
        color: var(--text-gray);
    }

    .submenu-link:hover {
        background: var(--bg-light);
        padding-left: 76px;
        color: var(--primary-blue);
    }

    /* Hide app buttons on mobile */
    .app-buttons {
        display: none;
    }

    .hero-content,
    .transfer-content,
    .app-cta-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-image:not(.hero-image-mobile-tablet) {
        margin-right: -20px;
        justify-content: center;
    }

    .hero-image-mobile-tablet {
        justify-content: center;
        margin-right: 0;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 17px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .section-description {
        font-size: 16px;
    }

    .section-label {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .transfer-subtitle {
        font-size: 24px;
        margin: 16px 0;
    }

    .transfer-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    /* Card optimizations */
    .card-label {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .amount {
        font-size: 28px;
    }

    .card-limit {
        font-size: 13px;
    }

    .card-features li {
        font-size: 14px;
        padding: 8px 0;
    }

    /* Button optimizations */
    .btn {
        padding: 12px 24px;
        font-size: 15px;
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 16px;
    }

    /* Testimonial optimizations */
    .testimonial-title {
        font-size: 17px;
        margin-bottom: 10px;
    }

    .testimonial-text {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .testimonial-author {
        font-size: 13px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Partners optimizations */
    .partners-label {
        font-size: 12px;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .partners-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .partners-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }

    .partner-logo img {
        max-width: 80px;
    }

    /* App CTA optimizations */
    .app-cta-section {
        padding: 40px 0;
    }

    .app-cta-content {
        max-height: none;
        align-items: center;
        gap: 32px;
    }

    .app-cta-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .app-cta-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .app-features li {
        font-size: 14px;
    }

    .app-screen {
        max-width: 280px;
    }

    .app-cta-image {
        align-items: center;
        margin-top: 20px;
    }

    .app-cta-image::before {
        width: 300px;
        height: 300px;
        bottom: auto;
    }

    /* Stats optimizations */
    .stat-value {
        font-size: 1.25rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .stat-value-mini {
        font-size: 1.125rem;
    }

    .stat-label-mini {
        font-size: 0.75rem;
    }

    /* Transfer features */
    .transfer-features li {
        font-size: 14px;
        gap: 10px;
    }

    /* Spacing adjustments */
    .section-cta {
        margin-top: 32px;
    }

    /* Footer optimizations */
    .footer-title {
        font-size: 15px;
        margin-bottom: 16px;
    }

    .footer-links a {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
        margin-bottom: 16px;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 24px;
    }

    .hero-image {
        margin-right: -15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .section-description {
        font-size: 15px;
    }

    .section-label {
        font-size: 11px;
    }

    .transfer-subtitle {
        font-size: 20px;
        margin: 14px 0;
    }

    .card-label {
        font-size: 16px;
    }

    .amount {
        font-size: 24px;
    }

    .card-limit {
        font-size: 12px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 15px;
    }

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

    .testimonial-text {
        font-size: 13px;
    }

    .partners-title {
        font-size: 20px;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 12px;
    }

    .partner-logo img {
        max-width: 70px;
    }

    .app-cta-title {
        font-size: 24px;
    }

    .app-download-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .download-btn img {
        height: 48px;
    }

    .coming-soon-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    /* Reduce all spacing */
    .container {
        padding: 0 16px;
    }

    section {
        padding: 48px 0 !important;
    }

    .hero-content,
    .transfer-content {
        gap: 24px;
    }

    .hero-image {
        margin-right: -20px;
    }
}

/* ================================================
   Animations
   ================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text,
.hero-image {
    animation: fadeIn 0.8s ease-out;
}

.hero-image {
    animation-delay: 0.2s;
}

/* ================================================
   Utility Classes
   ================================================ */
.text-center {
    text-align: center;
}

.mt-1 {
    margin-top: 8px;
}

.mt-2 {
    margin-top: 16px;
}

.mt-3 {
    margin-top: 24px;
}

.mt-4 {
    margin-top: 32px;
}

.mb-1 {
    margin-bottom: 8px;
}

.mb-2 {
    margin-bottom: 16px;
}

.mb-3 {
    margin-bottom: 24px;
}

/* ================================================
   Service Pages
   ================================================ */
.service-hero {
    padding: 120px 0 80px;
    background: var(--primary-blue);
    text-align: center;
}

.service-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.service-hero-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
}

.service-hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}

.cards-comparison-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: var(--accent-orange);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

/* Features Section */
.features-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9ff 100%);
}

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

.feature-item {
    text-align: center;
    padding: 32px 24px;
    background: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.1);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e8f2ff 0%, #d4e5ff 100%);
    border-radius: 50%;
    color: var(--primary-blue);
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-item:not(:last-child)::after {
    content: '→';
    position: absolute;
    top: 40px;
    right: -24px;
    font-size: 32px;
    color: var(--primary-blue);
    opacity: 0.3;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    border-radius: 50%;
    font-size: 32px;
    font-weight: 800;
    color: white;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.step-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.faq-item {
    padding: 32px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-blue);
}

.faq-question {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    color: white;
    text-align: center;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    margin-bottom: 20px;
}

.final-cta-description {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 40px;
}

/* Responsive - Service Pages */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .steps-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .service-hero {
        padding: 80px 0 60px;
    }

    .features-grid,
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .step-item:not(:last-child)::after {
        content: '↓';
        top: auto;
        bottom: -32px;
        right: 50%;
        transform: translateX(50%);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.mb-4 {
    margin-bottom: 32px;
}

/* ==================== Comparison Table Section ==================== */
.comparison-table-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.comparison-category {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.category-title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e8ecef;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #e8ecef;
}

.comparison-row:last-child {
    border-bottom: none;
}

.feature-info {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    color: #fff;
}

.feature-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 4px;
}

.feature-desc {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.feature-values {
    display: grid;
    grid-template-columns: repeat(3, 120px);
    gap: 24px;
    text-align: center;
}

.feature-values .value {
    font-size: 1rem;
    font-weight: 600;
    color: #495057;
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.feature-values .value.checkmark {
    color: #0066cc;
    font-size: 1.5rem;
}

/* ==================== Comparison Cards Grid ==================== */
.comparison-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 80px;
}

.comparison-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.comparison-card-header {
    margin-bottom: 24px;
}

.card-tier {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.tier-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

.tier-badge {
    background: linear-gradient(135deg, #ff963a 0%, #ff7a00 100%);
    color: #fff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.card-pricing {
    margin-bottom: 8px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
}

.price-period {
    font-size: 0.875rem;
    color: #6c757d;
    margin-left: 4px;
}

.card-description {
    font-size: 0.875rem;
    color: #6c757d;
    margin: 0;
}

.comparison-card .card-visual {
    margin: 32px 0;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ==================== Hero Split Layout ==================== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-left {
    max-width: 600px;
}

.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-cards-preview {
    width: 100%;
    max-width: 500px;
}

.cards-preview-img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* ==================== Contact CTA Section ==================== */
.contact-cta-section {
    padding: 80px 0;
}

.contact-cta-box {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 20px;
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-content {
    text-align: left;
}

.cta-title {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-actions {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap;
}

.cta-contact-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.cta-contact-item svg {
    color: #fff;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.cta-contact-item>div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-value {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #fff;
}

.contact-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: capitalize;
    letter-spacing: 0.02em;
}

.btn-dark {
    background: #000;
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

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

.btn-orange {
    background: var(--accent-orange);
    color: #fff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
    display: inline-block;
    white-space: nowrap;
}

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

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .feature-values {
        grid-template-columns: repeat(3, 100px);
        gap: 16px;
    }

    .comparison-cards-grid {
        gap: 24px;
    }

    .hero-split {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .comparison-table-section {
        padding: 60px 0;
    }

    .comparison-category {
        padding: 24px;
        margin-bottom: 24px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px 0;
    }

    .feature-info {
        gap: 16px;
    }

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

    .feature-values {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .feature-values .value {
        font-size: 0.875rem;
        padding: 6px 12px;
    }

    .comparison-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .hero-split {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .hero-right {
        order: -1;
    }

    .contact-cta-section {
        padding: 60px 0;
    }

    .contact-cta-box {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .btn-dark {
        width: 100%;
        text-align: center;
    }
}

/* ==================== DigiTransfer Page Styles ==================== */
.digitransfer-hero {
    padding: 50px 0;
    background: #fff;
}

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

.digitransfer-hero .transfer-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 118, 206, 0.1) 0%, rgba(0, 118, 206, 0.05) 100%);
    border: 1px solid rgba(0, 118, 206, 0.2);
    border-radius: 24px;
    color: var(--primary-blue);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-badge svg {
    color: var(--primary-blue);
}

.digitransfer-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.digitransfer-hero .transfer-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.35;
    letter-spacing: -0.01em;
}

.digitransfer-hero .transfer-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    margin-bottom: 32px;
    border: 1px solid #e8ecef;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e8ecef;
}

.hero-stats>div {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}

.cgs-note {
    margin: 0.75rem 0 0 0;
    font-size: 0.813rem;
    color: var(--text-gray);
    opacity: 0.8;
}

.cgs-note a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.cgs-note a:hover {
    color: var(--primary-blue);
    opacity: 1;
    text-decoration: underline;
}

.digitransfer-hero .transfer-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.digitransfer-hero .transfer-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: #000;
}

.digitransfer-hero .transfer-features svg {
    color: var(--primary-blue);
    flex-shrink: 0;
}

.digitransfer-hero .transfer-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.digitransfer-hero .transfer-img {
    width: 100%;
    max-width: 500px;
    max-height: 600px;
    height: auto;
    object-fit: contain;
    border-radius: 16px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
    .digitransfer-hero .transfer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .digitransfer-hero .transfer-img {
        max-width: 420px;
        max-height: 520px;
    }
}

@media (max-width: 768px) {
    .digitransfer-hero {
        padding: 60px 0;
    }

    .digitransfer-hero .transfer-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .digitransfer-hero .transfer-image {
        order: -1;
    }

    .digitransfer-hero .transfer-img {
        max-width: 400px;
    }

    .hero-badge {
        font-size: 0.8125rem;
        padding: 6px 12px;
    }

    .hero-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .stat-divider {
        width: 100%;
        height: 1px;
    }

    .stat-item {
        width: 100%;
    }

    .stat-value {
        font-size: 1.125rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    .digitransfer-hero .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .digitransfer-hero .transfer-subtitle {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }

    .hero-stats>div {
        align-items: center;
    }

    .cgs-note {
        text-align: center;
        width: 100%;
    }

    .digitransfer-hero .transfer-description {
        font-size: 1rem;
        margin-bottom: 24px;
    }

    .zone-title {
        font-size: 1.25rem;
        margin-bottom: 6px;
    }

    .zone-subtitle {
        font-size: 0.8125rem;
        margin-bottom: 12px;
    }

    .zone-countries {
        font-size: 0.875rem;
    }
}

/* ==================== Zones Section ==================== */
.zones-section {
    padding: 80px 0;
    background: #fff;
}

.section-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
}

.zones-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.zone-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    background: #fff;
}

.zone-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.zone-icon svg {
    color: #fff;
}

.zone-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.zone-subtitle {
    font-size: 0.875rem;
    color: var(--primary-blue);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.zone-countries {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 400;
}

/* ==================== DigiTransfer About Section ==================== */
.digitransfer-about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.digitransfer-about-section .section-header {
    max-width: 900px;
    margin: 0 auto;
}

.digitransfer-about-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 48px;
    line-height: 1.2;
}

.about-content {
    max-width: 80%;
    margin: 0 auto;
}

.about-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-conclusion {
    font-size: 1.125rem;
    font-weight: 600;
    color: #000;
    font-style: italic;
    padding: 24px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecef 100%);
    border-left: 4px solid var(--primary-blue);
    border-radius: 8px;
    margin-top: 32px;
}

@media (max-width: 768px) {
    .digitransfer-about-section {
        padding: 60px 0;
    }

    .digitransfer-about-section .section-title {
        font-size: 1.875rem;
    }

    .about-intro {
        font-size: 1.125rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .about-conclusion {
        font-size: 1rem;
    }
}

/* ==================== Why Choose Section ==================== */
.why-choose-section {
    padding: 80px 0;
    background: #fff;
}

.why-choose-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 64px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 48px;
}

.feature-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 118, 206, 0.15);
    border-color: var(--primary-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    color: #fff;
}

.feature-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.feature-description {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .features-grid {
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }

    .why-choose-section .section-title {
        font-size: 1.875rem;
        margin-bottom: 40px;
    }

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

    .feature-card {
        padding: 32px;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-title {
        font-size: 1.25rem;
    }
}

/* ==================== Coming Soon Section ==================== */
.coming-soon-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
}

.coming-soon-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coming-soon-content {
    color: #fff;
}

.coming-soon-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.coming-soon-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 48px;
    line-height: 1.6;
}

.app-stores {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.app-store-link {
    display: inline-block;
    transition: all 0.3s ease;
}

.app-store-link:hover {
    transform: translateY(-4px);
    filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.3));
}

.app-store-link img {
    height: 50px;
    width: auto;
}

@media (max-width: 768px) {
    .coming-soon-section {
        padding: 60px 0;
    }

    .coming-soon-title {
        font-size: 1.875rem;
    }

    .coming-soon-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .app-stores {
        gap: 16px;
    }

    .app-store-link img {
        height: 45px;
    }
}

/* ==================== App Features Section ==================== */
.app-features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecef 100%);
}

.app-features-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 60px;
    align-items: center;
}

.app-mockup {
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-mockup-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 550px;
    max-width: 480px;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.12));
}

.features-list {
    padding: 24px;
}

.features-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.features-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 48px;
}

.features-grid-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.feature-icon-img {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon-img {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.feature-icon-img svg {
    color: var(--primary-blue);
    width: 48px;
    height: 48px;
}

.feature-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    line-height: 1.4;
}

@media (max-width: 1024px) {
    .app-features-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .app-mockup-img {
        max-height: 460px;
        max-width: 400px;
    }

    .features-title {
        font-size: 1.875rem;
    }
}

@media (max-width: 768px) {
    .app-features-section {
        padding: 60px 0;
    }

    .app-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .app-mockup {
        order: -1;
    }

    .app-mockup-img {
        max-height: 400px;
        max-width: 320px;
    }

    .features-list {
        padding: 0;
    }

    .features-title {
        font-size: 1.75rem;
    }

    .features-subtitle {
        font-size: 1.125rem;
        margin-bottom: 32px;
    }

    .features-grid-icons {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

/* ==================== Partners Section (DigiTransfer) ==================== */
.partners-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
    align-items: center;
}

.partner-logo {
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.partner-logo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    max-height: 60px;
    object-fit: contain;
}

/* ==================== Responsive (DigiTransfer) ==================== */
@media (max-width: 768px) {
    .hero-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .zones-section {
        padding: 60px 0;
    }

    .zones-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .partners-section {
        padding: 60px 0;
    }

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

    .partner-logo {
        padding: 24px;
        min-height: 100px;
    }
}

/* ==================== About Page Styles ==================== */
.about-hero {
    padding: 50px 0;
    background: #fff;
}

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

/* .about-hero .about-text {
    max-width: 600px;
} */

.about-hero .about-text .section-label {
    margin-bottom: 24px;
}

.about-hero .about-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-black);
    margin-bottom: 32px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    /* background: linear-gradient(135deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
}

.about-hero .about-description {
    font-size: 1.0625rem;
    line-height: 1.75;
    color: var(--text-gray);
    margin-bottom: 24px;
    font-weight: 400;
}

.about-hero .about-description:last-child {
    margin-bottom: 0;
}

.about-hero .about-image {
    display: grid;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
    width: 100%;
    max-height: 75vh;
    justify-items: center;
}

.about-hero .about-img {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    object-fit: contain;
    border-radius: 24px;
    box-shadow: 0 16px 64px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease;
}

.about-image-legend {
    text-align: center;
    width: 100%;
}

.about-image-legend a {
    display: inline-block;
    color: var(--text-blue);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s ease, color 0.2s ease;
}

.about-image-legend a:hover,
.about-image-legend a:focus {
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.about-hero .about-img:hover {
    transform: scale(1.02);
}

/* ==================== Values Section ==================== */
.values-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 48px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e8ecef;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.value-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    position: relative;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
}

.value-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card:hover .value-icon::after {
    opacity: 1;
}

.value-icon svg {
    color: #fff;
    width: 48px;
    height: 48px;
}

.value-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.value-description {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--text-gray);
    font-weight: 400;
}

/* ==================== Team Section ==================== */
.team-section {
    padding: 80px 0;
    background: #fff;
}

/* Founder Grid Section */
.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 48px;
    margin-top: 48px;
    margin-bottom: 64px;
}

.founder-member {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    padding: 32px;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8ecef 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.founder-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 48px rgba(0, 102, 204, 0.15);
}

.founder-photo {
    flex-shrink: 0;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 8px 32px rgba(0, 102, 204, 0.25);
    transition: all 0.3s ease;
    position: relative;
}

.founder-photo::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.founder-member:hover .founder-photo::before {
    opacity: 1;
}

.founder-member:hover .founder-photo {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.01em;
    text-transform: capitalize;
    margin: 0;
}

.founder-role {
    font-size: 1.125rem;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.01em;
    margin: 0;
}

.founder-country {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    margin: 0;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
    margin: 8px 0 0 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-top: 48px;
    justify-items: center;
}

.team-member {
    text-align: center;
    transition: transform 0.3s ease;
}

/* .team-member:nth-last-child(-n+2) {
    grid-column: span 2;
    justify-self: center;
} */

.team-member:hover {
    transform: translateY(-8px);
}

.team-photo {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.team-photo::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .team-photo::before {
    opacity: 1;
}

.team-member:hover .team-photo {
    border-color: var(--accent-orange);
    transform: scale(1.05);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
}

.member-role {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    letter-spacing: 0.01em;
}

.member-country {
    font-size: 0.95rem;
    color: var(--text-gray);
    font-weight: 500;
    margin-top: 4px;
}



.team-full-photo {
    margin-top: 64px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0, 102, 204, 0.15);
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
}

.team-full-photo:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 64px rgba(0, 102, 204, 0.2);
}

.team-image {
    width: 100%;
    height: auto;
    display: block;
}

.team-cta {
    margin-top: 64px;
    text-align: center;
    padding: 56px 48px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: 24px;
    border: 2px solid var(--primary-blue);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-cta:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
}

.team-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--accent-orange) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.team-cta:hover::before {
    transform: scaleX(1);
}

.team-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
    line-height: 1.3;
}

.team-cta-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ==================== Responsive (About Page) ==================== */
@media (max-width: 768px) {
    .about-hero {
        padding: 60px 0;
    }

    .about-hero .about-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-hero .about-image {
        order: -1;
    }

    .about-hero .about-img {
        /* max-width: 400px; */
        border-radius: 12px;
    }

    .values-section {
        padding: 60px 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .value-card {
        padding: 32px;
    }

    .value-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .value-description {
        font-size: 0.9375rem;
    }

    .about-hero .about-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .about-hero .about-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .team-section {
        padding: 60px 0;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 48px;
    }

    .founder-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        padding: 24px;
    }

    .founder-photo {
        width: 140px;
        height: 140px;
    }

    .founder-name {
        font-size: 1.25rem;
    }

    .founder-role {
        font-size: 1rem;
    }

    .founder-country {
        font-size: 0.9375rem;
    }

    .founder-bio {
        font-size: 0.9rem;
        text-align: left;
        line-height: 1.6;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .team-photo {
        width: 120px;
        height: 120px;
        margin-bottom: 16px;
    }

    .member-name {
        font-size: 1.125rem;
        margin-bottom: 4px;
    }

    .member-role {
        font-size: 0.875rem;
    }

    .team-full-photo {
        margin-top: 48px;
    }

    .team-cta {
        margin-top: 48px;
        padding: 32px 24px;
    }

    .team-cta-title {
        font-size: 1.5rem;
    }

    .team-cta-description {
        font-size: 1rem;
    }
}

/* ==================== Agencies Page Styles ==================== */
.agencies-hero {
    padding: 100px 0 60px;
    background: var(--primary-blue);
    text-align: center;
}

.agencies-hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.agencies-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.agencies-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 900px;
    margin: 0 auto;
}

.agencies-section {
    padding: 80px 0;
    background: #fff;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    /* ensure all grid items (cards) share same row height */
    grid-auto-rows: 1fr;
    margin-top: 60px;
}

.agency-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.agency-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.agency-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.25);
}

.agency-icon svg {
    color: #fff;
}

.agency-name {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    text-align: center;
    margin-bottom: 8px;
}

.agency-country {
    font-size: 1rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-align: center;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* reserve space for two lines so all cards align when some country names wrap */
    min-height: 2.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agency-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
    /* allow details area to grow so buttons sit at the card bottom and cards are equal height */
    flex: 1 1 auto;
}

/* keep CTA button at the bottom of the card */
.agency-card>.btn {
    margin-top: auto;
}

.agency-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.agency-detail-item:hover {
    background: #e8ecef;
}

.agency-detail-item svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.agency-detail-item>div {
    flex: 1;
}

.detail-label {
    font-size: 0.75rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    margin-bottom: 4px;
}

.detail-value {
    font-size: 0.9375rem;
    color: #000;
    font-weight: 500;
    line-height: 1.5;
}

/* Ensure the address (first detail) reserves space so all cards align when one address wraps to multiple lines */
.agency-details .agency-detail-item:first-child .detail-value {
    /* ~2 lines at 15px font with 1.5 line-height -> ~45px */
    min-height: 2.8rem;
}

/* ==================== Responsive (Agencies Page) ==================== */
@media (max-width: 1024px) {
    .agencies-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .agencies-hero {
        padding: 60px 0 40px;
    }

    .agencies-hero-title {
        font-size: 1.75rem;
    }

    .agencies-hero-description {
        font-size: 1rem;
    }

    .agencies-section {
        padding: 60px 0;
    }

    .agency-card {
        padding: 32px 24px;
    }

    .agency-name {
        font-size: 1.5rem;
    }

    .agency-country {
        /* slightly reduce reserved height on small screens */
        min-height: 2.2rem;
        margin-bottom: 24px;
    }

    .agency-details .agency-detail-item:first-child .detail-value {
        min-height: 2.4rem;
    }
}

/* ==================== Contact Page Styles ==================== */
.contact-hero {
    padding: 100px 0 60px;
    background: var(--primary-blue);
    text-align: center;
}

.contact-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.contact-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
}

.contact-main-section {
    padding: 80px 0;
    background: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Form */
.contact-form-container {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 48px;
    border: 2px solid #e8ecef;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.01em;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Contact Form 7 Specific Styles */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wpcf7-form .ue {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.wpcf7-space {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.wpcf7-sm {
    display: flex;
    flex-direction: column;
}

.wpcf7-form p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.01em;
    margin: 0 0 8px 0;
}

.wpcf7-form .wpcf7-input {
    padding: 16px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    width: 100%;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    padding: 16px;
    border: 2px solid #e8ecef;
    border-radius: 12px;
    font-size: 1rem;
    line-height: 1.6;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
    font-weight: 400;
    width: 100%;
}

.wpcf7-form .wpcf7-input:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.wpcf7-form textarea {
    resize: vertical;
    min-height: 120px;
}

.wpcf7-form .wpcf7-submit {
    padding: 18px 36px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-heading);
    letter-spacing: 0.01em;
    background-color: var(--primary-blue);
    color: white;
    width: 100%;
}

.wpcf7-form .wpcf7-submit:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 102, 204, 0.25);
}

.wpcf7-form .wpcf7-submit.primary {
    background-color: var(--primary-blue);
}

/* CF7 Response Messages */
.wpcf7-response-output {
    margin: 16px 0 0 0;
    padding: 16px;
    border-radius: 12px;
    font-size: 0.9375rem;
}

.wpcf7-mail-sent-ok {
    border: 2px solid #4caf50;
    background: #e8f5e9;
    color: #2e7d32;
}

.wpcf7-validation-errors,
.wpcf7-mail-sent-ng {
    border: 2px solid #f44336;
    background: #ffebee;
    color: #c62828;
}

.wpcf7-not-valid-tip {
    color: #c62828;
    font-size: 0.875rem;
    margin-top: 4px;
}

.wpcf7-spinner {
    margin-left: 16px;
}

/* Contact Information */
.contact-info-container {
    padding: 20px 0;
}

.contact-info-header {
    margin-bottom: 40px;
}

.contact-info-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.contact-info-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: #e8ecef;
    transform: translateY(-4px);
}

.method-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
}

.method-icon.email {
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    color: #fff;
}

.method-icon.phone {
    background: linear-gradient(135deg, var(--accent-orange) 0%, #ff7a00 100%);
    color: #fff;
}

.method-content {
    flex: 1;
}

.method-title {
    font-size: 1rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 8px;
}

.method-description {
    font-size: 0.9375rem;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.method-link {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: var(--accent-orange);
}

/* Offices Section */
.offices-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecef 100%);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.office-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
}

.office-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.15);
    border-color: var(--primary-blue);
}

.office-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, #004d99 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #fff;
}

.office-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 16px;
}

.office-address {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Global Reach Section */
.global-reach-section {
    padding: 60px 0;
    background: #fff;
}

.global-reach-content {
    text-align: center;
}

.global-reach-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
}

.countries-flags {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.flag-item {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.flag-item:hover {
    transform: scale(1.2);
}

/* Responsive - Contact Page */
@media (max-width: 1024px) {
    .contact-grid {
        gap: 60px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

    .contact-hero-title {
        font-size: 1.75rem;
    }

    .contact-hero-description {
        font-size: 1rem;
    }

    .contact-main-section {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form-container {
        padding: 32px 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .offices-section {
        padding: 60px 0;
    }

    .office-card {
        padding: 32px 24px;
    }

    .countries-flags {
        gap: 16px;
    }

    .flag-item {
        font-size: 2rem;
    }
}

/* ================================================
   Legal Pages Styles
   ================================================ */
.legal-content-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--border-color);
}

/* ================================================
   Blog Archive (List) Styles
   ================================================ */
.blog-hero {
    padding: 60px 0 40px;
    background: var(--primary-blue);
    text-align: center;
}

.blog-hero-content {
    max-width: 960px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-blue);
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Section label on solid blue hero backgrounds */
.agencies-hero .section-label,
.contact-hero .section-label,
.blog-hero .section-label,
.service-hero .section-label {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.blog-hero-title {
    font-size: clamp(1.7rem, 5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.blog-hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    max-width: 960px;
    margin: 0 auto;
}

.blog-hero-media-partners {
    margin-top: 40px;
}

.blog-hero-media-label {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 24px;
}

.blog-hero-media-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.blog-hero-media-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.blog-hero-media-logo--invert {
    filter: brightness(0) invert(1);
}

.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 32px !important;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e8ecef;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: #d1d5db;
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
    background: #f8f9fa;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.blog-card-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-card-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.blog-card-category:hover {
    background: var(--primary-blue);
    color: #fff;
}

.blog-card-date {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: #6b7280;
}

.blog-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-title a {
    color: #000;
    transition: color 0.3s ease;
}

.blog-card-title a:hover {
    color: var(--primary-blue);
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
    flex: 1;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--primary-dark);
}

.blog-card-link svg {
    transition: transform 0.3s ease;
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 64px;
}

.pagination .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 16px;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-dark);
    background: #fff;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
}

.pagination .page-numbers:hover,
.pagination .page-numbers.current {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

.pagination .page-numbers.dots {
    border: none;
    background: transparent;
}

.pagination .prev,
.pagination .next {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ================================================
   Single Article Styles
   ================================================ */
.single-article {
    background: #fff;
}

.article-header {
    padding: 80px 0 60px;
    background: #fff;
    text-align: center;
}

.article-header-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-meta-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.article-categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.article-category {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary-blue);
    font-size: 0.8125rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.article-category:hover {
    background: var(--primary-blue);
    color: #fff;
}

.article-date {
    display: none;
}

.article-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    font-weight: 700;
    color: #000;
    line-height: 1.3;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.article-excerpt {
    font-size: 1.0625rem;
    line-height: 1.7;
    color: var(--text-gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.article-featured-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 80px;
    overflow: hidden;
    padding: 0 20px;
}

.article-featured-image img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: cover;
    display: block;
    border-radius: 24px;
}

.article-content-wrapper {
    padding: 0 0 80px;
    background: #fff;
}

.article-content {
    max-width: 1100px;
    margin: 0 auto 60px;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    padding: 0 20px;
}

.article-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 48px 0 24px;
    color: #000;
    line-height: 1.3;
}

.article-content h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #000;
    line-height: 1.4;
}

.article-content p {
    margin-bottom: 24px;
    color: #4a5568;
    text-align: justify;
}

.article-content ul,
.article-content ol {
    margin: 24px 0;
    padding-left: 32px;
    color: #4a5568;
}

.article-content li {
    margin-bottom: 12px;
    list-style: disc;
}

.article-content a {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--primary-dark);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    margin: 32px 0;
}

.article-content blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    border-left: 4px solid var(--primary-blue);
    background: #f8f9fa;
    border-radius: 8px;
    font-style: italic;
    color: var(--text-gray);
}

.article-content code {
    padding: 2px 8px;
    background: #f8f9fa;
    border-radius: 4px;
    font-size: 0.9em;
    font-family: 'Courier New', monospace;
}

.article-content pre {
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    overflow-x: auto;
    margin: 24px 0;
}

.article-content pre code {
    padding: 0;
    background: none;
}

/* Share Article */
.article-share {
    max-width: 700px;
    margin: 40px auto 0;
    padding: 32px 20px;
    text-align: center;
    border-top: 1px solid #e8ecef;
}

.share-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.share-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f8f9fa;
    color: #4a5568;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: var(--primary-blue);
    color: #fff;
    transform: translateY(-2px);
}

/* Article Tags */
.article-tags {
    max-width: 700px;
    margin: 0 auto;
    padding: 32px 20px;
    border-top: 1px solid #e8ecef;
    display: none;
}

.tags-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.tags-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.article-tag {
    display: inline-block;
    padding: 8px 20px;
    background: #f8f9fa;
    color: var(--text-dark);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: 24px;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
}

.article-tag:hover {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* Related Articles Section */
.related-articles-section {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #e8ecef;
}

.related-articles-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.related-articles-title {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
}

.view-all-link:hover {
    gap: 12px;
}

.view-all-link svg {
    transition: transform 0.3s ease;
}

.view-all-link:hover svg {
    transform: translateX(4px);
}

/* Post Navigation */
.post-navigation-wrapper {
    padding: 60px 0;
    background: #f8f9fa;
    display: none;
}

.post-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.nav-previous,
.nav-next {
    display: block;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    border: 2px solid #e8ecef;
    transition: all 0.3s ease;
}

.nav-previous:hover,
.nav-next:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 8px 24px rgba(0, 102, 204, 0.1);
    transform: translateY(-4px);
}

.nav-previous {
    text-align: left;
}

.nav-next {
    text-align: right;
}

.nav-direction {
    display: block;
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.nav-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    line-height: 1.3;
}

.nav-previous:hover .nav-title,
.nav-next:hover .nav-title {
    color: var(--primary-blue);
}

/* ================================================
   Blog Responsive Styles
   ================================================ */
@media (max-width: 1200px) {

    /* Slightly tighten spacing on large tablets / small desktops */
    .blog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .blog-card-content {
        padding: 26px;
    }
}

@media (max-width: 992px) {

    /* Two column layout for medium screens */
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 24px;
    }

    .blog-hero {
        padding: 50px 0 30px;
    }

    .blog-hero-title {
        font-size: clamp(1.9rem, 4.5vw, 2.25rem);
    }

    .blog-card-content {
        padding: 22px;
    }

    .blog-card-title {
        font-size: 1.25rem;
    }

    .article-featured-image {
        max-width: 1000px;
        padding: 0 16px;
        margin-bottom: 64px;
    }

    .article-content {
        max-width: 680px;
        padding: 0 16px;
    }
}

@media (max-width: 768px) {

    /* Single column for phones */
    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .blog-hero {
        padding: 40px 0 24px;
    }

    .blog-hero-title {
        font-size: 1.5rem;
    }

    .blog-hero-description {
        font-size: 1rem;
    }

    .blog-card-content {
        padding: 18px;
    }

    .blog-card-image {
        aspect-ratio: 16/9;
    }

    .blog-card-title {
        font-size: 1.125rem;
    }

    .article-header {
        padding: 40px 0 0;
    }

    .article-header-container {
        padding-bottom: 32px;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .article-excerpt {
        font-size: 1rem;
    }

    .article-content-wrapper {
        padding: 40px 0;
    }

    .article-content {
        font-size: 0.98rem;
        margin-bottom: 32px;
        padding: 0 16px;
    }

    .article-content h2 {
        font-size: 1.25rem;
        margin: 28px 0 14px;
    }

    .share-buttons {
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }

    .share-btn {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 28px 0 20px;
    }

    .blog-hero-title {
        font-size: 1.25rem;
    }

    .blog-card-content {
        padding: 14px;
    }

    .blog-card-excerpt {
        font-size: 0.95rem;
    }

    .article-featured-image {
        padding: 0 12px;
        margin-bottom: 40px;
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 40px;
    }

    .founder-member {
        padding: 20px;
        gap: 16px;
    }

    .founder-photo {
        width: 120px;
        height: 120px;
    }

    .founder-name {
        font-size: 1.125rem;
    }

    .founder-role {
        font-size: 0.95rem;
    }

    .founder-country {
        font-size: 0.875rem;
    }

    .founder-bio {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-member:first-child {
        max-width: 100%;
    }

    .team-photo {
        width: 100px;
        height: 100px;
    }

    .member-name {
        font-size: 1rem;
    }

    .member-role {
        font-size: 0.8125rem;
    }

    .member-country {
        font-size: 0.85rem;
    }
}

.article-content h3 {
    font-size: 1.25rem;
    margin: 24px 0 12px;
}

.post-navigation {
    grid-template-columns: 1fr;
    gap: 24px;
}

.nav-next {
    text-align: left;
}

.pagination {
    gap: 8px;
    margin-top: 48px;
}

.pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 0.875rem;
}


.legal-intro p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.legal-intro p:last-child {
    margin-bottom: 0;
}

.legal-block {
    margin-bottom: 48px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.legal-block:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 24px;
    line-height: 1.3;
}

.legal-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 24px;
    line-height: 1.4;
}

.legal-block p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.legal-block p:last-child {
    margin-bottom: 0;
}

.legal-block p strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-block ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.legal-block ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 1.25rem;
    line-height: 1.8;
}

.legal-block a {
    color: var(--primary-blue);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.legal-block a:hover {
    color: var(--primary-dark);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content-section {
        padding: 60px 0;
    }

    .legal-intro {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .legal-intro p {
        font-size: 1rem;
    }

    .legal-block {
        margin-bottom: 32px;
        padding-bottom: 24px;
    }

    .legal-block h2 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }

    .legal-block h3 {
        font-size: 1.25rem;
        margin-bottom: 12px;
        margin-top: 20px;
    }

    .legal-block p,
    .legal-block ul li {
        font-size: 0.9375rem;
    }

    .legal-block ul {
        padding-left: 16px;
    }

    .legal-block ul li {
        padding-left: 16px;
    }
}

/* ==================== Belmoney Tooltip ==================== */
.belmoney-info {
    position: relative;
    display: inline;
}

.belmoney-link {
    color: var(--primary-blue);
    text-decoration: underline;
    cursor: pointer;
    position: relative;
}

.belmoney-link:hover {
    color: var(--primary);
}

.belmoney-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    color: #333;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    font-size: 0.875rem;
    line-height: 1.6;
    width: 400px;
    max-width: 90vw;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
    margin-bottom: 8px;
    text-align: left;
}

.belmoney-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top-color: #fff;
}

.belmoney-link:hover+.belmoney-tooltip,
.belmoney-link:focus+.belmoney-tooltip,
.belmoney-link.active+.belmoney-tooltip,
.belmoney-tooltip:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.section-services-title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.section-services-link:hover {
    color: var(--primary-blue);
}

/* ================================================
   DigiPay App Section (Homepage)
   ================================================ */
.digipay-app-section {
    padding: calc(var(--section-padding) * 0.85) 0 3rem;
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 72%);
}

.services-page-part {
    background: #ffffff;
    border-radius: calc(var(--border-radius-lg) * 1.1);
    padding: 48px;
    box-shadow: 0 28px 60px rgba(15, 24, 40, 0.08);
    margin-bottom: 56px;
}



.digipay-app-section .transfer-subtitle {
    font-size: 22px;
    margin: 16px 0;
}

.app-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    align-self: center;
}

.app-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.app-image-wrapper {
    width: 100%;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    align-self: center;
}

.app-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.app-slider-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    align-self: center;
    width: 100%;
}

.app-slides-track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-slide {
    /* Square aspect-ratio matches the square slide images */
    aspect-ratio: 1 / 1;
    min-width: 100%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    overflow: hidden;
}

.app-slide img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    /* never crop, always show full image */
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 22px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
    transition: all 0.25s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.slider-btn:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-50%) scale(1.08);
}

.slider-prev {
    left: 12px;
}

.slider-next {
    right: 12px;
}

.slider-dots {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid rgba(255, 255, 255, 0.85);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ================================================
   Offer Banner
   ================================================ */
.offer-banner-section {
    background: var(--primary-blue);
    padding: 48px 0;
}

.offer-banner-title {
    color: #fff;
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
}

.offer-banner-body {
    display: grid;
    grid-template-columns: 1fr 1px 1fr;
    gap: 40px;
}

.offer-banner-separator {
    width: 1px;
    background: rgba(255, 255, 255, 0.35);
    align-self: stretch;
}

.offer-banner-col-title {
    font-size: 30px;
    color: #fff;
}

.offer-banner-col p {
    color: #fff;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 12px;
}

.offer-banner-col strong {
    font-weight: 700;
}

.offer-banner-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-banner-list li {
    color: #fff;
    font-size: 1rem;
    line-height: 1.75;
    padding-left: 20px;
    position: relative;
}

.offer-banner-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #f5a623;
}

@media (max-width: 768px) {
    .offer-banner-body {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .offer-banner-separator {
        display: none;
    }

    .offer-banner-title {
        font-size: 1.5rem;
    }

    .offer-banner-col-title {
        color: #fff;
        font-size: 1rem;
    }
}

/* DigiTransfer slider: darker dots for light-background images */
#dtSliderDots .slider-dot {
    background: rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(0, 0, 0, 0.45);
}

#dtSliderDots .slider-dot.active {
    background: var(--primary-blue, #0066cc);
    border-color: var(--primary-blue, #0066cc);
}

.app-section-tagline {
    font-size: 15.5px;
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 28px;
    padding: 14px 20px;
    background: #fff;
    border-left: 3px solid var(--primary-blue);
    border-radius: 0 8px 8px 0;
    line-height: 1.7;
}

.app-store-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
    margin-bottom: 32px;
}

.store-badge-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.store-badge-wrapper img {
    height: 44px;
    width: auto;
    display: block;
}

.badge-coming-soon {
    font-size: 11px;
    color: var(--text-gray);
    background: #f3f4f6;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

/* ================================================
   DigiPay App Product Page
   ================================================ */
.digipay-app-hero {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #f9fafb 100%);
}

.digipay-app-hero .hero-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 48px;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.app-presentation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    margin-bottom: 64px;
}

.app-presentation-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-xl);
}

.app-presentation-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.app-presentation-text p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
}

.app-guarantees {
    background: #fff;
    border-radius: var(--border-radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
    margin-bottom: 56px;
}

.app-guarantees h2 {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.guarantees-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.guarantee-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.guarantee-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.guarantee-item-digitransfer {
    background: var(--primary-blue);
}

.guarantee-icon svg {
    color: #fff;
}

.guarantee-item p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-gray);
}

.app-page-download {
    text-align: center;
    padding: 48px 0 16px;
}

.app-page-download h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.app-page-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-end;
}

.app-page-badges-classic {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Responsive – DigiPay App Section */
.service-section-intro {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0 0 8px;
    margin-bottom: 16px;
}

.service-section-intro h2 {
    margin-bottom: 8px;
}

.service-section-intro-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 14px;
}

.service-audience-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    align-items: start;
}

.service-audience-item {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
}

.service-audience-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.service-audience-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
}

.digistable-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
    align-items: stretch;
    margin-bottom: 32px;
}

.digistable-column {
    background: linear-gradient(135deg, #f8fbff 0%, #eef6ff 100%);
    border: 1px solid #e9f2ff;
    border-radius: 18px;
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 16px 36px rgba(15, 24, 40, 0.06);
}

.service-highlight-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 24px;
}

.service-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 24px;
}

.service-notice-card {
    background: #fff8ef;
    border: 1px solid #ffe1bf;
    border-radius: 18px;
    padding: 28px;
    margin-top: 8px;
}

@media (max-width: 1024px) {
    .app-presentation-grid {
        gap: 48px;
    }
}

@media (max-width: 768px) {
    .digipay-app-section .transfer-content {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .digistable-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-audience-list {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .digipay-app-section .app-image-wrapper {
        order: 2;
    }

    .digipay-app-section .transfer-text {
        order: 1;
    }

    .app-slider-wrapper {
        max-width: 100%;
    }

    .app-presentation-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .app-guarantees {
        padding: 28px 20px;
    }

    .app-guarantees h2 {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .belmoney-tooltip {
        width: 320px;
        font-size: 0.8125rem;
        padding: 12px;
        position: fixed;
        bottom: auto;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        margin-bottom: 0;
    }

    .belmoney-tooltip::after {
        display: none;
    }
}

.underlined-link {
    color: var(--primary-blue);
    text-decoration: underline;
    /* cursor:  */
}

.content-centered {
    text-align: center;
}