/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Colors */
    --primary: #044e32;
    --primary-light: #0B5A3E;
    --primary-dark: #023823;
    --accent: #E11D48;
    --accent-hover: #BE123C;
    --success: #10B981;
    --text-dark: #1E293B;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-accent-green: #ECFDF5;
    --bg-dark-section: #033f27;
    --border-color: #E2E8F0;
    --border-accent: #A7F3D0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.04);
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    
    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.no-scroll {
    overflow: hidden;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 2px solid transparent;
    gap: 0.5rem;
}

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

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-accent:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-accent {
    background-color: transparent;
    border-color: var(--accent);
    color: var(--accent);
}

.btn-outline-accent:hover {
    background-color: var(--accent);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-text {
    padding: 0;
    color: var(--accent);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 2px solid transparent;
}

.btn-text:hover {
    color: var(--accent-hover);
    border-bottom-color: var(--accent-hover);
}

.btn-text svg {
    transition: var(--transition-fast);
}

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

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
    height: var(--header-height);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 45px;
    height: 45px;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text span {
    color: var(--accent);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 2px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

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

.nav-link.active {
    color: var(--accent);
    font-weight: 600;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: 3px;
    transition: var(--transition-normal);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding-top: calc(var(--header-height) + 4rem);
    padding-bottom: 5rem;
    background: radial-gradient(circle at 85% 30%, rgba(167, 243, 208, 0.25) 0%, rgba(255, 255, 255, 0) 50%),
                linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-title span.highlight-green {
    color: var(--success);
}

.hero-title span.highlight-red {
    color: var(--accent);
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.benefit-icon-wrapper {
    color: var(--success);
    display: flex;
    align-items: center;
}

.benefit-icon-wrapper svg {
    width: 28px;
    height: 28px;
}

.benefit-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.hero-graphic {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-map {
    width: 100%;
    filter: drop-shadow(0 15px 30px rgba(4, 78, 50, 0.08));
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ==========================================================================
   SERVICES SECTION (4 CARDS)
   ========================================================================== */
.services-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

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

.service-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    background-color: var(--bg-accent-green);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary);
}

.service-desc {
    font-size: 0.925rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   MARKETS SECTION
   ========================================================================== */
.markets-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.markets-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.9fr;
    gap: 5rem;
    align-items: center;
}

.markets-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.markets-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.markets-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
}

.markets-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.interactive-map-container {
    width: 100%;
    position: relative;
    background-color: var(--bg-white);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.interactive-map-container svg {
    width: 100%;
    height: auto;
}

/* Market Map Pin Styles */
.map-pin {
    fill: var(--accent);
    stroke: var(--bg-white);
    stroke-width: 1.5;
    cursor: pointer;
    transition: var(--transition-fast);
}

.map-pin:hover {
    fill: var(--primary);
    transform: scale(1.3);
    transform-origin: center;
}

.map-pin-pulse {
    fill: var(--accent);
    opacity: 0.4;
    animation: pinPulse 2s infinite ease-out;
    transform-origin: center;
}

@keyframes pinPulse {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(2.5); opacity: 0; }
}

.markets-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.market-badge {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-normal);
}

.market-badge:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.badge-info {
    display: flex;
    flex-direction: column;
}

.badge-code {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.2;
}

.badge-name {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Color schemes for market badges */
.market-badge.eu .badge-icon { background-color: #EFF6FF; color: #1D4ED8; }
.market-badge.eu .badge-code { color: #1D4ED8; }

.market-badge.latam .badge-icon { background-color: #FEF2F2; color: #DC2626; }
.market-badge.latam .badge-code { color: #DC2626; }

.market-badge.balkans .badge-icon { background-color: #ECFDF5; color: #044e32; }
.market-badge.balkans .badge-code { color: #044e32; }

.market-badge.cis .badge-icon { background-color: #F0FDF4; color: #16A34A; }
.market-badge.cis .badge-code { color: #16A34A; }

.market-badge.apac .badge-icon { background-color: #FFFBEB; color: #D97706; }
.market-badge.apac .badge-code { color: #D97706; }

.market-badge.mena .badge-icon { background-color: #F0FDFA; color: #0D9488; }
.market-badge.mena .badge-code { color: #0D9488; }

.market-badge.africa .badge-icon { background-color: #F5F3FF; color: #7C3AED; }
.market-badge.africa .badge-code { color: #7C3AED; }

/* ==========================================================================
   SCOPE OF WORK SECTION
   ========================================================================== */
.scope-section {
    padding: 6.5rem 0;
    background-color: var(--bg-dark-section);
    background-image: radial-gradient(circle at 10% 90%, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0) 40%),
                      radial-gradient(circle at 90% 10%, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0) 40%);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.scope-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(16, 185, 129, 0.05) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.6;
    pointer-events: none;
}

.scope-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.scope-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--success);
    margin-bottom: 0.75rem;
    display: block;
}

.scope-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.scope-desc {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1.05rem;
    margin-bottom: 3rem;
}

.scope-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem 2.5rem;
}

.scope-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.scope-item-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.2);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.scope-item-icon svg {
    width: 14px;
    height: 14px;
}

.scope-item-text {
    font-size: 0.975rem;
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.4;
}

/* ==========================================================================
   PRICING SECTION
   ========================================================================== */
.pricing-section {
    padding: 6rem 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4.5rem;
}

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.pricing-card:hover {
    border-color: var(--border-accent);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card.premium {
    background-color: #FAF5FF;
    border-color: #E9D5FF;
}

.pricing-card.premium:hover {
    border-color: #C084FC;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.pricing-tag {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card:nth-child(1) .pricing-tag {
    background-color: #FEF2F2;
    color: var(--accent);
}

.pricing-card:nth-child(2) .pricing-tag {
    background-color: #ECFDF5;
    color: var(--success);
}

.pricing-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
}

.price-value {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.price-sub {
    font-size: 0.95rem;
    color: var(--primary-light);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.price-details {
    margin-top: auto;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.price-details-row {
    display: flex;
    justify-content: justify;
    align-items: center;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    border-bottom: 1px dashed var(--border-color);
}

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

.price-details-label {
    color: var(--text-muted);
}

.price-details-val {
    font-weight: 700;
    color: var(--text-dark);
    margin-left: auto;
}

.price-note {
    font-size: 0.775rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 1rem;
    display: block;
}

/* Recommended Project value box (Right pricing column) */
.rec-value-card {
    background-color: #FFFDF5;
    border: 1px solid #FEF3C7;
    border-radius: 12px;
    padding: 2.5rem 2.25rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-normal);
}

.rec-value-card:hover {
    border-color: #FCD34D;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.rec-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #B45309;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
    display: block;
}

.rec-amount {
    font-family: 'Outfit', sans-serif;
    font-size: 2.25rem;
    font-weight: 800;
    color: #92400E;
    line-height: 1.15;
    margin-bottom: 2rem;
}

.discounts-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    border-bottom: 1px solid #FCD34D;
    padding-bottom: 0.5rem;
    margin-bottom: 1.25rem;
}

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

.discount-item {
    background-color: var(--bg-white);
    border: 1px solid #FDE68A;
    border-radius: 8px;
    padding: 0.75rem 0.5rem;
    text-align: center;
}

.discount-pct {
    font-family: 'Outfit', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--success);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.discount-desc {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.2;
}

/* ==========================================================================
   PROCESS & APPROACH SECTION
   ========================================================================== */
.process-section {
    padding: 6rem 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/* Timeline Layout */
.timeline-container {
    position: relative;
    margin-bottom: 5rem;
    padding: 2rem 0;
}

.timeline-line {
    position: absolute;
    top: 52px;
    left: 10%;
    right: 10%;
    height: 4px;
    background-color: var(--border-accent);
    z-index: 1;
}

.timeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.timeline-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-node {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-white);
    border: 3px solid var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.timeline-step:hover .step-node {
    background-color: var(--primary);
    color: var(--bg-white);
    transform: scale(1.1);
    box-shadow: 0 0 0 8px rgba(4, 78, 50, 0.1);
}

.timeline-step:nth-child(1) .step-node { border-color: var(--accent); color: var(--accent); }
.timeline-step:nth-child(1):hover .step-node { background-color: var(--accent); color: var(--bg-white); box-shadow: 0 0 0 8px rgba(225, 29, 72, 0.1); }

.timeline-step:nth-child(2) .step-node { border-color: var(--success); color: var(--success); }
.timeline-step:nth-child(2):hover .step-node { background-color: var(--success); color: var(--bg-white); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0.1); }

.timeline-step:nth-child(3) .step-node { border-color: #2563EB; color: #2563EB; }
.timeline-step:nth-child(3):hover .step-node { background-color: #2563EB; color: var(--bg-white); box-shadow: 0 0 0 8px rgba(37, 99, 235, 0.1); }

.timeline-step:nth-child(4) .step-node { border-color: var(--primary); color: var(--primary); }
.timeline-step:nth-child(4):hover .step-node { background-color: var(--primary); color: var(--bg-white); box-shadow: 0 0 0 8px rgba(4, 78, 50, 0.1); }

.step-node svg {
    width: 24px;
    height: 24px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.step-title span {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.step-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    padding: 0 0.5rem;
}

/* Payment Terms & Timeline grid */
.process-details-grid {
    display: grid;
    grid-template-columns: 2.1fr 0.9fr;
    gap: 3rem;
}

.payment-terms-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.payment-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--success);
    margin-bottom: 1.5rem;
    display: block;
}

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

.payment-card {
    border-right: 1px solid var(--border-color);
    padding-right: 1.25rem;
}

.payment-card:last-child {
    border-right: none;
    padding-right: 0;
}

.payment-pct {
    font-family: 'Outfit', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.payment-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.payment-desc {
    font-size: 0.725rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.duration-box {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.duration-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--success);
    margin-bottom: 1.5rem;
    display: block;
}

.duration-content {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.duration-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--bg-accent-green);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.duration-icon svg {
    width: 24px;
    height: 24px;
}

.duration-info {
    display: flex;
    flex-direction: column;
}

.duration-value {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.duration-desc {
    font-size: 0.775rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================================================
   PARTNERS SECTION (LOGOS)
   ========================================================================== */
.partners-section {
    padding: 5rem 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.partners-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.partners-logos-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.partner-logo-item {
    width: 100%;
    max-width: 130px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.4;
    transition: var(--transition-normal);
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.partner-logo-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

/* Custom styling for different brand representations */
.partner-logo-item.grunenthal { color: #0284C7; }
.partner-logo-item.kyowa { color: #DC2626; }
.partner-logo-item.chemo { color: #0891B2; }
.partner-logo-item.glenmark { color: #EA580C; }
.partner-logo-item.medinfar { color: #0F766E; }
.partner-logo-item.huayi { color: #1E3A8A; }
.partner-logo-item.packom { color: #991B1B; }

/* ==========================================================================
   FOOTER & LET'S GROW TOGETHER
   ========================================================================== */
.footer {
    background-color: var(--primary-dark);
    color: var(--text-light);
    padding-top: 5rem;
    padding-bottom: 2rem;
    position: relative;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr 1.3fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo .logo-text {
    color: var(--bg-white);
}

.footer-brand-desc {
    color: rgba(248, 250, 252, 0.75);
    font-size: 0.925rem;
    line-height: 1.5;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--success);
    margin-bottom: 0.5rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}

.contact-icon {
    color: var(--success);
    display: flex;
    align-items: center;
    margin-top: 0.15rem;
}

.contact-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.contact-value {
    font-size: 0.925rem;
    color: rgba(248, 250, 252, 0.75);
}

.contact-value a:hover {
    color: var(--success);
}

/* Call to Action Card in footer (Let's Grow Together) */
.footer-cta-card {
    background-color: var(--accent);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    color: var(--bg-white);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    top: -50px;
    right: -50px;
}

.cta-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--bg-white);
    line-height: 1.25;
}

.cta-desc {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.footer-cta-card .btn-book-consultation {
    background-color: var(--bg-white);
    color: var(--accent);
    border: none;
    align-self: flex-start;
}

.footer-cta-card .btn-book-consultation:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    border-top: 1px solid rgba(248, 250, 252, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: rgba(248, 250, 252, 0.5);
}

/* ==========================================================================
   MODAL DIALOG - CONSULTATION FORM
   ========================================================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: var(--bg-white);
    border-radius: 16px;
    width: 100%;
    max-width: 500px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(30px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 1.5rem;
    line-height: 1;
    transition: var(--transition-fast);
}

.close-modal:hover {
    color: var(--accent);
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group.row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.925rem;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--success);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-textarea {
    resize: none;
    height: 100px;
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

/* Success Message inside modal */
.success-message {
    display: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    animation: fadeIn 0.4s ease forwards;
}

.success-message.active {
    display: flex;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--bg-accent-green);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.success-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   SCROLL REVEAL ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Delay modifiers */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1100px) {
    :root {
        --max-width: 950px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid > .rec-value-card {
        grid-column: span 2;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .process-details-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2.5rem 1.5rem;
    }
}

@media (max-width: 900px) {
    .header {
        position: absolute; /* fallback to non-sticky on small mobile to avoid layout shifts */
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background-color: var(--bg-white);
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1005;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: calc(var(--header-height) + 2rem) 2.5rem 2rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 2.5rem;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }
    
    .nav-link {
        font-size: 1.15rem;
        width: 100%;
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-graphic {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .markets-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .scope-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 15px;
    }
    
    .container {
        padding: 0 1.25rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-benefits {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .markets-badges {
        grid-template-columns: 1fr;
    }
    
    .scope-list {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid > .rec-value-card {
        grid-column: span 1;
    }
    
    .timeline-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .payment-card {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-right: 0;
        padding-bottom: 1.25rem;
    }
    
    .payment-card:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .partners-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.25rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        padding: 2.5rem 1.5rem;
    }
    
    .form-group.row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}
