/*
Theme Name: Stipendia Final
Theme URI: https://stipendia.co
Description: Complete multi-lingual Stipendia theme with contact form, Google Analytics, and 8 language support including RTL
Author: Stipendia
Author URI: https://stipendia.co
Version: 3.0
License: GNU General Public License v2 or later
Text Domain: stipendia
*/

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Asian Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@400;500;600;700;900&display=swap');

:root {
    --navy: #0C1F38;
    --teal: #55AEA8;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #2A3F5F;
    --font-display: 'Outfit', sans-serif;
    --font-body: 'DM Sans', sans-serif;
}

/* Language-specific fonts */
html:lang(zh-Hans),
html:lang(zh) {
    --font-display: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
    --font-body: 'Noto Sans SC', 'Microsoft YaHei', sans-serif;
}

html:lang(ja) {
    --font-display: 'Noto Sans JP', 'Yu Gothic', sans-serif;
    --font-body: 'Noto Sans JP', 'Yu Gothic', sans-serif;
}

html:lang(ar) {
    --font-display: 'Noto Sans Arabic', 'Tajawal', sans-serif;
    --font-body: 'Noto Sans Arabic', 'Tajawal', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(12, 31, 56, 0.05);
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

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

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

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Language Switcher */
.language-switcher {
    position: relative;
}

.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.language-toggle:hover {
    border-color: var(--teal);
    background: rgba(85, 174, 168, 0.05);
}

.current-language {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.language-toggle:hover .dropdown-arrow {
    transform: translateY(2px);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(12, 31, 56, 0.15);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.language-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-region {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.language-region:last-child {
    border-bottom: none;
}

.region-label {
    padding: 0.5rem 1rem;
    font-size: 11px;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--navy);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.language-dropdown a:hover {
    background: rgba(85, 174, 168, 0.1);
    color: var(--teal);
    padding-left: 1.5rem;
}

.language-dropdown a.active {
    background: rgba(85, 174, 168, 0.15);
    color: var(--teal);
    font-weight: 700;
}

/* Buttons */
.btn, .btn-primary, .btn-secondary, .btn-white {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    font-family: var(--font-body);
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal) 0%, #4a9d98 100%);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(85, 174, 168, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(85, 174, 168, 0.4);
    color: var(--white);
    text-decoration: none;
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--navy);
    text-decoration: none;
}

.btn-white {
    background: var(--white);
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 50%, var(--navy) 100%);
    color: var(--white);
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(85, 174, 168, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(85, 174, 168, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(85, 174, 168, 0.15);
    color: var(--teal);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(85, 174, 168, 0.3);
    animation: fadeInDown 0.8s ease;
}

.hero-badge-icon {
    height: 24px;
    width: auto;
}

.hero-title, .hero h1 {
    font-family: var(--font-display);
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    animation: fadeInUp 0.8s ease 0.2s both;
    color: var(--white);
}

.hero-highlight {
    background: linear-gradient(135deg, var(--teal) 0%, #7cd9d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle, .hero p {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.4s both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Stats Section */
.stats {
    background: var(--light-gray);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

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

.stat-number {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 18px;
    color: var(--dark-gray);
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(12, 31, 56, 0.08);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--teal) 0%, #7cd9d3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-method-text strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.25rem;
}

.contact-method-text span {
    font-size: 14px;
    color: var(--dark-gray);
}

.contact-method-text a {
    color: var(--teal);
    text-decoration: none;
    font-weight: 600;
}

.contact-method-text a:hover {
    text-decoration: underline;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(12, 31, 56, 0.1);
}

.contact-form-container h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

/* Contact Form 7 Styling */
.wpcf7-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wpcf7-form label {
    display: block;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--navy);
    transition: all 0.3s ease;
}

.wpcf7-form input:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(85, 174, 168, 0.1);
}

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

.wpcf7-form input[type="submit"] {
    background: linear-gradient(135deg, var(--teal) 0%, #4a9d98 100%);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(85, 174, 168, 0.3);
}

.wpcf7-form input[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(85, 174, 168, 0.4);
}

.wpcf7-checkbox {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.wpcf7-list-item {
    margin: 0;
}

.wpcf7-list-item-label {
    margin-left: 0.5rem;
    font-weight: 500;
}

/* Continue with existing styles from previous version... */
/* (Including platform, features, pillars, solutions, etc.) */

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        padding: 1rem;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .language-dropdown {
        right: auto;
        left: 0;
    }
}

/* Platform Overview - continuing from contact section */
.platform {
    padding: 120px 0;
    background: var(--white);
}

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

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(85, 174, 168, 0.1) 0%, rgba(85, 174, 168, 0.2) 100%);
    color: var(--teal);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.section-header p {
    font-size: 20px;
    color: var(--dark-gray);
    line-height: 1.7;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(12, 31, 56, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(85, 174, 168, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, #7cd9d3 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(85, 174, 168, 0.2);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--teal) 0%, #7cd9d3 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(85, 174, 168, 0.3);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.feature-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

/* Image CTA */
.image-cta {
    background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.image-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(85, 174, 168, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.image-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.image-cta-text h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.image-cta-text p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.image-cta-image {
    background: linear-gradient(135deg, rgba(85, 174, 168, 0.2) 0%, rgba(85, 174, 168, 0.05) 100%);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(85, 174, 168, 0.3);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.console-preview {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
}

.console-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.console-dots {
    display: flex;
    gap: 8px;
}

.console-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.console-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.console-dot:nth-child(1) { background: #FF5F57; }
.console-dot:nth-child(2) { background: #FFBD2E; }
.console-dot:nth-child(3) { background: #28CA42; }

.console-stat {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--light-gray);
}

.console-stat:last-child {
    border-bottom: none;
}

.console-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
}

.console-value {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
}

/* Pillars */
.pillars {
    padding: 120px 0;
    background: var(--light-gray);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.pillar-card {
    background: var(--white);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(12, 31, 56, 0.08);
    transition: all 0.4s ease;
    text-align: center;
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(85, 174, 168, 0.2);
}

.pillar-number {
    font-family: var(--font-display);
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--teal) 0%, #7cd9d3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.pillar-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.pillar-card p {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
}

.pillar-features {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pillar-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}

.pillar-feature::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--teal);
    color: var(--white);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    flex-shrink: 0;
}

/* Expanding Section */
.expanding {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    text-align: center;
}

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

.expanding-intro {
    font-size: 20px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 2rem 0 3rem;
}

/* Solutions Detail */
.solutions-detail {
    padding: 120px 0;
    background: var(--white);
}

.solution-block {
    margin-top: 6rem;
    padding: 4rem 0;
    border-top: 1px solid rgba(85, 174, 168, 0.1);
}

.solution-block:first-of-type {
    border-top: none;
}

.solution-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.solution-block-reverse .solution-content {
    grid-template-columns: 1fr 1.2fr;
}

.solution-block-reverse .solution-text {
    order: 2;
}

.solution-block-reverse .solution-visual {
    order: 1;
}

.solution-icon-large {
    font-size: 64px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.solution-text h3 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.solution-benefits {
    list-style: none;
    margin-bottom: 2.5rem;
}

.solution-benefits li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.solution-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--teal);
    font-weight: 900;
    font-size: 18px;
}

.solution-benefits strong {
    color: var(--navy);
    font-weight: 700;
}

.solution-visual {
    position: sticky;
    top: 120px;
}

.visual-card {
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(12, 31, 56, 0.1);
    border: 2px solid rgba(85, 174, 168, 0.2);
}

.visual-header {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(85, 174, 168, 0.3);
}

.visual-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(85, 174, 168, 0.1);
}

.visual-item:last-child {
    border-bottom: none;
}

.visual-label {
    font-size: 14px;
    color: var(--dark-gray);
    font-weight: 600;
}

.visual-value {
    font-size: 16px;
    color: var(--navy);
    font-weight: 700;
}

.visual-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal) 0%, #7cd9d3 100%);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.visual-total {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--teal);
}

.visual-total .visual-value {
    font-size: 24px;
    color: var(--teal);
}

/* Checkout Preview */
.checkout-preview {
    padding-top: 1rem;
}

.checkout-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(85, 174, 168, 0.1);
}

.checkout-product {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.checkout-product-img {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(85, 174, 168, 0.2) 0%, rgba(85, 174, 168, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.checkout-product-name {
    font-weight: 700;
    color: var(--navy);
    font-size: 15px;
}

.checkout-product-qty {
    font-size: 13px;
    color: var(--dark-gray);
}

.checkout-price {
    font-weight: 700;
    color: var(--navy);
    font-size: 18px;
}

.checkout-line {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    font-size: 15px;
    color: var(--dark-gray);
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    padding: 1.5rem 0;
    margin-top: 1rem;
    border-top: 2px solid var(--teal);
    font-size: 18px;
    color: var(--navy);
}

.checkout-badge {
    text-align: center;
    margin-top: 1.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(85, 174, 168, 0.1) 0%, rgba(85, 174, 168, 0.05) 100%);
    border-radius: 12px;
    color: var(--teal);
    font-weight: 700;
    font-size: 14px;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, var(--teal) 0%, #4a9d98 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-banner-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-banner h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-banner p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: var(--navy);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.8;
}

.footer-section h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--teal);
}

.footer-copy {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 14px;
    opacity: 0.7;
}

/* More Responsive Adjustments */
@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .image-cta-content {
        grid-template-columns: 1fr;
    }

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

    .solution-content {
        grid-template-columns: 1fr !important;
    }

    .solution-block-reverse .solution-text {
        order: 1;
    }

    .solution-block-reverse .solution-visual {
        order: 2;
    }
}

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

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

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

    .solution-visual {
        position: static;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}
