/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --text-primary: #0f172a;
    --text-secondary: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo span {
    color: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
}

.hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--secondary-color);
    letter-spacing: -0.02em;
}

.highlight {
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.75;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Hero Illustration */
.hero-illustration {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05) !important;
}

.card-logo {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.card-1 {
    width: 240px;
    height: 160px;
    top: 20px;
    left: 0;
    animation-delay: 0s;
    background: #1434CB; /* Visa Blue */
}

.card-2 {
    width: 240px;
    height: 160px;
    top: 60px;
    right: 20px;
    animation-delay: 1.5s;
    background: #000000; /* Mastercard Black */
}

.card-3 {
    width: 240px;
    height: 160px;
    bottom: 80px;
    left: 60px;
    animation-delay: 3s;
    background: #006FCF; /* American Express Blue */
}

.card-4 {
    width: 240px;
    height: 160px;
    bottom: 20px;
    right: 80px;
    animation-delay: 4.5s;
    background: white; /* JCB White */
    border: 2px solid #e2e8f0;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
}

.stat-item {
    text-align: center;
    padding: 24px 16px;
    transition: var(--transition);
    border-radius: 12px;
}

.stat-item:hover {
    background: var(--bg-light);
    transform: translateY(-4px);
}

.stat-number {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1;
    white-space: nowrap;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #4FC3F7);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.services-grid .service-card:nth-child(1),
.services-grid .service-card:nth-child(2) {
    grid-column: span 6;
}

.services-grid .service-card:nth-child(3),
.services-grid .service-card:nth-child(4),
.services-grid .service-card:nth-child(5) {
    grid-column: span 4;
}

.service-card {
    background: var(--bg-white);
    padding: 48px 36px;
    border-radius: 16px;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    line-height: 1;
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    font-weight: 700;
    line-height: 1.3;
}

.service-image {
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--bg-white);
}

/* DTCGA Section */
.dtcga {
    padding: 0;
    background: var(--bg-white);
    position: relative;
}

.dtcga-banner-full {
    width: 100%;
    overflow: hidden;
}

.dtcga-banner-full img {
    width: 100%;
    height: auto;
    display: block;
}

.dtcga .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.dtcga-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 20px;
}

.dtcga-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #4FC3F7);
    border-radius: 2px;
}

.dtcga-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.dtcga-card {
    position: relative;
    height: 340px;
    perspective: 1000px;
    cursor: pointer;
}

.dtcga-front,
.dtcga-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    overflow: hidden;
}

.dtcga-front {
    transform: rotateY(0deg);
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.dtcga-front::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(66, 165, 245, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.dtcga-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #42A5F5 0%, #4FC3F7 100%);
}

.dtcga-card:hover .dtcga-front {
    transform: rotateY(-180deg);
}

.dtcga-card:hover .dtcga-back {
    transform: rotateY(0deg);
}

.dtcga-icon {
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.dtcga-front .dtcga-icon {
    background: white;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(66, 165, 245, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.dtcga-back .dtcga-icon {
    background: transparent;
    width: auto;
    height: auto;
}

.dtcga-card:hover .dtcga-front .dtcga-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(66, 165, 245, 0.4);
}

.dtcga-front h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin: 0;
    font-weight: 700;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.dtcga-back h3 {
    font-size: 1.3rem;
    color: white;
    margin: 0 0 15px 0;
    font-weight: 700;
    flex-shrink: 0;
}

.dtcga-desc {
    color: white;
    font-size: 0.9rem;
    line-height: 1.65;
    text-align: center;
    overflow-y: auto;
    max-height: 200px;
    padding: 0 12px;
}

.dtcga-desc::-webkit-scrollbar {
    width: 4px;
}

.dtcga-desc::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.dtcga-desc::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.dtcga-desc::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .dtcga-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dtcga-card {
        height: 280px;
    }
    
    .dtcga-desc {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .dtcga-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .dtcga-card {
        height: 300px;
    }
    
    .dtcga-desc {
        font-size: 0.85rem;
        max-height: 200px;
    }
}

.features-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.features-gallery {
    background: var(--bg-white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-color);
}

.features-gallery-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.features-gallery-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #4FC3F7);
    border-radius: 2px;
}

.features-images-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.feature-image-item {
    position: relative;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.feature-image-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.feature-image-item:hover img {
    transform: scale(1.1);
}

/* Image Modal */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    animation: zoomIn 0.3s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes zoomIn {
    from {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0;
    }
    to {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 30px;
    right: 45px;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 300;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10000;
    line-height: 1;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
}

/* Responsive for Features Gallery */
@media (max-width: 992px) {
    .features-images-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .features-gallery {
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    .features-images-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .features-gallery {
        padding: 30px 20px;
    }
    
    .features-gallery-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .modal-close {
        top: 15px;
        right: 25px;
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .features-images-row {
        grid-template-columns: 1fr;
    }
}

.features-certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cert-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(to right, var(--primary-color), #4FC3F7);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.cert-card:hover::before {
    transform: scaleX(1);
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.cert-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.cert-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 12px;
    padding: 10px;
    transition: var(--transition);
}

.cert-card:hover .cert-logo {
    transform: scale(1.1);
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.cert-logo svg {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.cert-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.cert-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Responsive for Certifications */
@media (max-width: 992px) {
    .features-certifications {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cert-card {
        padding: 30px 25px;
    }
    
    .cert-title {
        font-size: 1.1rem;
    }
    
    .cert-description {
        font-size: 0.9rem;
    }
}

.features-platforms {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.platform-section {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.platform-section:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.platform-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px;
    text-align: center;
    color: white;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.platform-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.platform-subtitle {
    font-size: 1rem;
    opacity: 0.95;
    line-height: 1.6;
}

.platform-logos {
    padding: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: white;
}

.platform-single-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    min-height: 300px;
}

.platform-single-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: 400px;
}

.platform-logo-item {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    aspect-ratio: 1.5;
}

.platform-logo-item:hover {
    transform: scale(1.05);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.platform-logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(20%);
    transition: var(--transition);
}

.platform-logo-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Responsive for Platforms */
@media (max-width: 992px) {
    .features-platforms {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .platform-logos {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .platform-header {
        padding: 25px 20px;
        height: auto;
        min-height: 120px;
    }
    
    .platform-title {
        font-size: 1.25rem;
    }
    
    .platform-subtitle {
        font-size: 0.9rem;
    }
    
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px;
    }
    
    .platform-single-image {
        padding: 30px;
        min-height: 200px;
    }
    
    .platform-logo-item {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .platform-logos {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tab Component Styles */
.tab-container {
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 30px;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.tab-button:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.tab-button.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #4FC3F7 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.tab-content-wrapper {
    position: relative;
    min-height: 400px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tab-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    background: white;
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-color);
}

.tab-layout.icon-left {
    grid-template-columns: auto 1fr;
}

.tab-layout.icon-right {
    grid-template-columns: 1fr auto;
}

.tab-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.tab-icon svg {
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.tab-layout:hover .tab-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.tab-text h4 {
    font-size: 1.85rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
    line-height: 1.3;
}

.tab-text p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.tab-features {
    list-style: none;
    padding: 0;
}

.tab-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 30px;
    font-size: 0.95rem;
}

.tab-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Responsive for Tabs */
@media (max-width: 992px) {
    .tab-layout {
        grid-template-columns: 1fr !important;
        gap: 30px;
        padding: 30px;
    }
    
    .tab-icon svg {
        width: 150px;
        height: 150px;
    }
    
    .tab-text h4 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .tab-buttons {
        gap: 8px;
    }
    
    .tab-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .tab-layout {
        padding: 25px 20px;
    }
    
    .tab-icon svg {
        width: 120px;
        height: 120px;
    }
    
    .tab-text h4 {
        font-size: 1.25rem;
    }
    
    .tab-text p {
        font-size: 0.95rem;
    }
    
    .tab-features li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .tab-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .tab-content-wrapper {
        min-height: 300px;
    }
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.feature-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.pricing-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.pricing-price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.custom {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 10px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 48px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-values {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.value-item {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.value-item strong {
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}

.value-item span {
    color: var(--text-secondary);
}

.about-illustration {
    height: 100%;
    min-height: 400px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text Section Box */
.text-section-box {
    margin-top: 64px;
    padding: 56px;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.text-section-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.text-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 20px;
}

.text-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), #4FC3F7);
    border-radius: 2px;
}

.text-section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.text-section-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    margin-bottom: 16px;
    padding: 20px 24px;
    background: var(--bg-light);
    border-radius: 8px;
    position: relative;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.text-section-content p:hover {
    background: #e0f2fe;
    border-left-color: var(--primary-color);
    transform: translateX(4px);
}

.text-section-content p:last-child {
    margin-bottom: 0;
}

/* Responsive for Text Section */
@media (max-width: 992px) {
    .text-section-box {
        padding: 40px 30px;
        margin-top: 60px;
    }
    
    .text-section-title {
        font-size: 2rem;
    }
    
    .text-section-content p {
        font-size: 1.05rem;
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .text-section-box {
        padding: 40px 32px;
        margin-top: 48px;
    }
    
    .text-section-title {
        font-size: 1.75rem;
        margin-bottom: 32px;
    }
    
    .text-section-content p {
        font-size: 1rem;
        line-height: 1.8;
        padding: 15px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .text-section-box {
        padding: 25px 20px;
    }
    
    .text-section-content p {
        font-size: 0.95rem;
        padding: 12px;
    }
}

/* Image Carousel (inside About Section) */
.carousel-container {
    max-width: 100%;
    margin: 64px 0 0;
    position: relative;
    padding: 0 80px;
}

.carousel-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
}

.carousel-slide.active {
    display: flex;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 99, 235, 0.9);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-btn-prev {
    left: 10px;
}

.carousel-btn-next {
    right: 10px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.indicator:hover {
    background: var(--text-secondary);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
    border-color: var(--primary-color);
}

/* Responsive for Carousel */
@media (max-width: 992px) {
    .carousel-container {
        padding: 0 60px;
        margin-top: 60px;
    }
    
    .carousel-btn {
        width: 50px;
        height: 50px;
    }
    
    .carousel-btn svg {
        width: 25px;
        height: 25px;
    }
    
    .carousel-slide img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        padding: 0 50px;
        margin-top: 50px;
    }
    
    .carousel-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-btn svg {
        width: 22px;
        height: 22px;
    }
    
    .carousel-slide img {
        max-height: 400px;
    }
    
    .carousel-indicators {
        margin-top: 25px;
        gap: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
    
    .indicator.active {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        padding: 0 40px;
        margin-top: 40px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .carousel-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .carousel-btn-prev {
        left: 5px;
    }
    
    .carousel-btn-next {
        right: 5px;
    }
    
    .carousel-slide img {
        max-height: 300px;
    }
    
    .carousel-indicators {
        margin-top: 20px;
        gap: 8px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
    
    .indicator.active {
        width: 24px;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-top: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
    color: var(--secondary-color);
}

.contact-item p {
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: var(--bg-white);
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.partners-slider {
    overflow: hidden;
    margin-top: 60px;
    position: relative;
}

.partners-slider::before,
.partners-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-slider::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-white), transparent);
}

.partners-slider::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-white), transparent);
}

.partners-track {
    display: flex;
    gap: 40px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
    min-height: 120px;
    min-width: 200px;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.partner-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.partner-logo img {
    max-width: 150px;
    max-height: 80px;
    object-fit: contain;
    opacity: 1;
    transition: var(--transition);
}

.partner-logo:hover img {
    transform: scale(1.05);
}

.logo-placeholder {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-align: center;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
}

.footer-section h3 span {
    color: var(--primary-color);
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #94a3b8;
}

/* GLP Section */
.glp {
    padding: 0;
    background: var(--bg-white);
}

.glp .container {
    padding-top: 100px;
    padding-bottom: 100px;
}

.glp-content-box {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 56px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glp-content-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.glp-content-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(37, 99, 235, 0.2);
}

.glp-text-wrapper {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.glp-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: justify;
    padding: 28px 32px;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.glp-description::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.glp-image-wrapper {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.glp-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(79, 195, 247, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.glp-image-wrapper:hover::before {
    opacity: 1;
}

.glp-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.glp-image-wrapper:hover img {
    transform: scale(1.05);
}

/* Responsive for GLP */
@media (max-width: 992px) {
    .glp-content-box {
        padding: 40px 30px;
    }
    
    .glp-description {
        font-size: 1rem;
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .glp-content-box {
        padding: 30px 20px;
    }
    
    .glp-description {
        font-size: 0.95rem;
        padding: 20px;
        line-height: 1.8;
    }
    
    .glp-text-wrapper {
        margin-bottom: 30px;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        max-width: 1200px;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-illustration {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 60px auto 0;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-layout {
        gap: 40px;
        padding: 40px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .service-card {
        padding: 36px 28px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid .service-card:nth-child(1),
    .services-grid .service-card:nth-child(2),
    .services-grid .service-card:nth-child(3),
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: span 1;
    }
    
    .features-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .btn {
        width: 100%;
    }
}
