:root {
    --primary-orange: #F97B3D;
    --primary-green: #00C060;
    --bg-main: #FFFFFF;
    --bg-card: #F8FAFC;
    --bg-card-hover: #F1F5F9;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --gradient-orange: linear-gradient(135deg, #F97B3D, #FCA96E);
    --gradient-green: linear-gradient(135deg, #00C060, #4DD98A);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-main);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant', serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: var(--primary-orange);
    transition: var(--transition);
}

a:hover {
    color: #E86A2C;
}

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

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

/* Header */
header {
    padding: 2rem 0;
    width: 100%;
    background: transparent;
}

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

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

.logo-wrapper img {
    height: 55px;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Cormorant', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-main);
}

/* Hero Section */
.hero {
    padding: 4rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-subtitle {
    color: var(--primary-orange);
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-main);
    letter-spacing: -1px;
}

.hero h1 span {
    color: var(--primary-orange);
    font-style: italic;
}

.hero-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}

.highlight-box {
    background: var(--bg-main);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(to right, var(--primary-orange), var(--primary-green));
}

.highlight-box p {
    font-size: 1.8rem;
    font-family: 'Cormorant', serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

.highlight-box p:last-child {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Index Section */
.index-section {
    padding: 5rem 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(0,0,0,0.03);
    border-bottom: 1px solid rgba(0,0,0,0.03);
}

.index-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.index-item {
    background: var(--bg-main);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.index-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.06);
    border-color: rgba(249, 123, 61, 0.2);
}

.index-number {
    font-family: 'Cormorant', serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 192, 96, 0.15);
    line-height: 1;
}

.index-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-main);
}

.index-content p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Sections General */
section {
    scroll-margin-top: 40px;
}

.section-title {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 4rem;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* A Day in a Gate & Guide Community (Visual Workflow) */
.workflow-section {
    padding: 8rem 0;
    background: var(--bg-main);
}

.workflow-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
}

.workflow-step {
    background: var(--bg-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    width: calc(20% - 1.5rem);
    min-width: 180px;
    position: relative;
    transition: var(--transition);
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.workflow-step:hover {
    transform: translateY(-8px);
    border-color: var(--primary-green);
    box-shadow: 0 20px 40px rgba(0, 192, 96, 0.08);
}

.workflow-icon {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    background: var(--bg-main);
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
}

.workflow-step:nth-child(odd) .workflow-icon {
    color: var(--primary-orange);
}

.workflow-step:nth-child(even) .workflow-icon {
    color: var(--primary-green);
}

.workflow-step h4 {
    font-size: 1.15rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--text-main);
}

.workflow-arrow {
    color: #E2E8F0;
    font-size: 1.5rem;
}

/* Platforms Section */
.platforms-section {
    padding: 8rem 0;
    background: var(--bg-card);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.platform-card {
    background: var(--bg-main);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.platform-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.platform-logo {
    width: 85px;
    height: 85px;
    border-radius: 16px;
    margin-bottom: 1.5rem;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(0,0,0,0.06);
}

.platform-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.platform-card h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.badge {
    background: rgba(249, 123, 61, 0.1);
    color: var(--primary-orange);
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Features Grid */
.features-section {
    padding: 8rem 0;
    background: var(--bg-main);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.feature-card:hover {
    border-color: rgba(249, 123, 61, 0.3);
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    transform: translateY(-4px);
}

.feature-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Cormorant', serif;
}

.feature-card h3 i {
    color: var(--primary-orange);
    font-size: 1.4rem;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-family: 'Outfit', sans-serif;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.85rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-main);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
}

.feature-list li::before {
    content: '✓';
    color: var(--primary-green);
    font-weight: bold;
}

/* Solutions Modules */
.modules-section {
    padding: 8rem 0;
    background: var(--bg-card);
}

.module-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5rem;
    margin-bottom: 7rem;
}

.module-row:nth-child(even) {
    flex-direction: row-reverse;
}

.module-content {
    flex: 1;
    min-width: 300px;
}

.module-visual {
    flex: 1;
    min-width: 300px;
    background: var(--bg-main);
    border-radius: 24px;
    padding: 5rem;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 50px rgba(0,0,0,0.02);
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-visual::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 192, 96, 0.08), transparent 60%);
}

.module-row:nth-child(even) .module-visual::before {
    background: radial-gradient(circle at top left, rgba(249, 123, 61, 0.08), transparent 60%);
}

.module-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 192, 96, 0.1);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: var(--primary-green);
}

.standalone-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    background: linear-gradient(135deg, var(--primary-orange), #FCA96E);
    color: #fff;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    margin-left: 1rem;
    box-shadow: 0 4px 10px rgba(249, 123, 61, 0.25);
    vertical-align: middle;
}

.module-row:nth-child(even) .module-tag {
    color: var(--primary-orange);
    background: rgba(249, 123, 61, 0.1);
}

.module-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-family: 'Cormorant', serif;
}

.module-content p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-family: 'Outfit', sans-serif;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--bg-main);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    border: 1px solid rgba(0,0,0,0.03);
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.benefit-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Comparison Table */
.comparison-section {
    padding: 8rem 0;
    background: var(--bg-main);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    border-radius: 20px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-main);
    overflow: hidden;
}

.comparison-table th, .comparison-table td {
    padding: 1.8rem 2rem;
    text-align: left;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-family: 'Outfit', sans-serif;
}

.comparison-table th {
    font-family: 'Cormorant', serif;
    font-size: 1.5rem;
    background: var(--bg-card);
    color: var(--text-main);
}

.comparison-table th.gg-col {
    color: #fff;
    background: var(--primary-green);
}

.comparison-table td {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.comparison-table td.gg-col {
    background: rgba(0, 192, 96, 0.03);
    font-weight: 700;
    color: var(--text-main);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

/* CTA & Special Offer */
.cta-section {
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-card);
}

.cta-box {
    background: var(--gradient-orange);
    border-radius: 24px;
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(249, 123, 61, 0.2);
    position: relative;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CjxjaXJjbGUgY3g9IjIiIGN5PSIyIiByPSIyIiBmaWxsPSJyZ2JhKDI1NSwyNTUsMjU1LDAuMSkiLz4KPC9zdmc+') repeat;
    opacity: 0.5;
    border-radius: 24px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.offer-badge {
    display: inline-block;
    background: var(--bg-main);
    color: var(--primary-orange);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

.btn {
    display: inline-block;
    padding: 1.1rem 3.5rem;
    background: var(--bg-main);
    color: var(--primary-orange);
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    border-radius: 50px;
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 192, 96, 0.2);
}

.terms {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 1;
}

.ecosystem-summary {
    margin-top: 8rem;
}

.ecosystem-summary h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.ecosystem-summary p {
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2.5rem;
    font-size: 1.2rem;
    font-family: 'Outfit', sans-serif;
}

.ecosystem-summary .badge {
    font-size: 1.05rem;
    padding: 0.75rem 1.5rem;
    background: var(--bg-main);
    border: 1px solid rgba(0,0,0,0.05);
    color: var(--text-main);
}

/* Premium Footer */
.premium-footer {
    background: #F8FAFC;
    padding: 6rem 0 3rem;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-primary-logo {
    height: 70px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.brand-text h3 {
    font-family: 'Cormorant', serif;
    font-size: 2.2rem;
    color: var(--text-main);
    margin-bottom: 0.2rem;
}

.brand-text p {
    font-family: 'Outfit', sans-serif;
    color: var(--text-muted);
    font-size: 1.05rem;
}

.footer-company {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.75rem;
}

.powered-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.footer-vts-logo {
    height: 55px;
    object-fit: contain;
    border-radius: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright {
    color: var(--text-muted);
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

.website-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    background: var(--primary-green);
    padding: 1.2rem 3rem;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(0, 192, 96, 0.25);
}

.website-link:hover {
    background: #00A651;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 192, 96, 0.35);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 3rem; }
    .workflow-step { width: calc(50% - 1.5rem); }
    .workflow-arrow { display: none; }
    .module-row { flex-direction: column !important; gap: 2rem; }
    .benefits-grid { grid-template-columns: 1fr; }
    .index-grid { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; align-items: flex-start; }
    .footer-company { align-items: flex-start; }
    .footer-bottom { flex-direction: column-reverse; align-items: center; text-align: center; }
}
@media (max-width: 480px) {
    .workflow-step { width: 100%; }
}
