/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --font-display: 'Rajdhani', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --background: #0a0e1a;
    --foreground: #e8eaf0;
    --card: #12172b;
    --primary: #f59e0b;
    --primary-foreground: #0a0e1a;
    --secondary: #06b6d4;
    --muted-foreground: #9ca3af;
    --border: rgba(248, 158, 11, 0.15);
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(248, 158, 11, 0.1);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--background);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
}

.nav-links {
    display: flex;
    gap: 2rem;
    font-family: var(--font-display);
}

.nav-links a {
    color: var(--foreground);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.nav-cta:hover {
    background: rgba(245, 158, 11, 0.9);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 4rem;
}

.hero-slider {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--background), rgba(10, 14, 26, 0.6), transparent),
                linear-gradient(to top, var(--background), transparent);
}

.slide-grid {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    background-image:
        linear-gradient(rgba(245, 158, 11, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 158, 11, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.1);
    backdrop-filter: blur(8px);
}

.badge-text {
    color: var(--primary);
    font-size: 0.875rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
    background: linear-gradient(to right, var(--foreground), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(232, 234, 240, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: rgba(245, 158, 11, 0.9);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: var(--foreground);
    border: 2px solid rgba(232, 234, 240, 0.2);
    border-radius: 8px;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: rgba(232, 234, 240, 0.1);
    border-color: rgba(232, 234, 240, 0.3);
}

.slider-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.slider-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 2px solid rgba(245, 158, 11, 0.3);
    background: rgba(10, 14, 26, 0.2);
    backdrop-filter: blur(16px);
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
}

.dot {
    height: 6px;
    width: 32px;
    border-radius: 9999px;
    border: none;
    background: rgba(232, 234, 240, 0.2);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 48px;
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.5);
}

.dot:hover:not(.active) {
    background: rgba(245, 158, 11, 0.5);
}

/* Hero Image Card */
.hero-image-card {
    position: relative;
    animation: fadeInRight 0.8s ease-out 0.3s backwards;
}

.card-glow {
    position: absolute;
    inset: -1rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2));
    border-radius: 1.5rem;
    filter: blur(40px);
}

.card-inner {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    border: 2px solid rgba(245, 158, 11, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.card-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    background: linear-gradient(to top, var(--background), rgba(10, 14, 26, 0.9), transparent);
    backdrop-filter: blur(8px);
}

.card-label {
    font-size: 0.75rem;
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.card-progress {
    height: 4px;
    width: 100%;
    background: rgba(10, 14, 26, 0.3);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: var(--primary);
    width: 0%;
    animation: progress 5s linear infinite;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* Stats Bar */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin-top: 5rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 12px;
    background: rgba(10, 14, 26, 0.6);
    border: 1px solid rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(16px);
    text-align: center;
    transition: all 0.3s;
    animation: fadeInUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) { animation-delay: 0.5s; }
.stat-card:nth-child(2) { animation-delay: 0.6s; }
.stat-card:nth-child(3) { animation-delay: 0.7s; }
.stat-card:nth-child(4) { animation-delay: 0.8s; }

.stat-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    transition: transform 0.3s;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
}

.stat-label {
    font-family: var(--font-display);
    color: rgba(232, 234, 240, 0.7);
    letter-spacing: 0.05em;
}

/* Sections */
.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 8rem 1.5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 9999px;
    background: rgba(245, 158, 11, 0.05);
    color: var(--primary);
    font-size: 0.875rem;
    font-family: var(--font-display);
    letter-spacing: 0.15em;
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 800px;
    margin: 0 auto;
}

/* Features Section */
.features-section {
    background: linear-gradient(to bottom, var(--background), rgba(18, 23, 43, 0.3));
}

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

.feature-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    transition: all 0.3s;
    cursor: pointer;
}

.feature-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
    transform: translateY(-8px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.1) rotate(3deg);
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.feature-desc {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Systems Section */
.systems-section {
    background: var(--background);
}

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

.system-card {
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s;
}

.system-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
}

.system-image {
    position: relative;
    height: 256px;
    overflow: hidden;
}

.system-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.system-card:hover .system-image img {
    transform: scale(1.1);
}

.system-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--background), rgba(10, 14, 26, 0.5), transparent);
}

.system-content {
    padding: 2rem;
}

.system-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.system-desc {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.system-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: none;
    color: var(--primary);
    font-family: var(--font-display);
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: gap 0.3s;
}

.system-card:hover .system-btn {
    gap: 0.75rem;
}

/* About Section */
.about-section {
    background: linear-gradient(to bottom, var(--background), rgba(18, 23, 43, 0.3));
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-features {
    margin-bottom: 2rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.feature-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.2);
    position: relative;
}

.feature-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.about-stats {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.about-stat-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.about-stat-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.1);
}

.about-stat-card.large {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(6, 182, 212, 0.2));
    border-color: rgba(245, 158, 11, 0.3);
}

.about-stat-card svg {
    color: var(--primary);
    margin: 0 auto 1rem;
}

.about-stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.about-stat-card .stat-number.large {
    font-size: 2.5rem;
}

.about-stat-card .stat-label {
    font-family: var(--font-display);
    color: var(--muted-foreground);
}

.about-stat-card .stat-label.large {
    font-size: 1.125rem;
    color: var(--foreground);
}

/* Contact Section */
.contact-section {
    background: var(--background);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-card {
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.contact-info-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.1);
}

.contact-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 12px;
    background: rgba(245, 158, 11, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
    background: var(--primary);
    color: var(--primary-foreground);
    transform: scale(1.1);
}

.contact-label {
    font-family: var(--font-display);
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-value {
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 1rem;
    background: var(--card);
    border: 1px solid var(--border);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem 1rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(245, 158, 11, 0.05);
}

.form-textarea {
    resize: none;
}

.full-width {
    width: 100%;
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: var(--card);
    border-top: 1px solid var(--border);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
}

.footer-copyright {
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-family: var(--font-display);
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: color 0.3s;
}

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

    .hero-image-card {
        display: none;
    }

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

    .nav-links {
        display: none;
    }
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}

:root {
  --container: 1280px;
}

* { box-sizing: border-box; }
html, body { overflow-x: hidden; }
img { max-width: 100%; height: auto; }
body { background: #0a0e1a; }
a { transition: all .25s ease; }
.nav-logo { text-decoration: none; color: var(--foreground); }
.topbar {
  position: relative;
  z-index: 60;
  background: rgba(9, 12, 19, 0.94);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar .wrap,
.page-wrap,
.section-container,
.nav-container,
.hero-container,
.footer-wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.topbar .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  flex-wrap: wrap;
}
.topbar-left { color: rgba(232,234,240,.84); display: flex; gap: 10px; flex-wrap: wrap; }
.sep { opacity: .45; }
.mini-cta { display: flex; gap: 10px; flex-wrap: wrap; }
.mini-chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.24);
  color: var(--foreground);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: .04em;
  font-size: .85rem;
}
.mini-chip:hover { background: rgba(245,158,11,.18); }
.navbar { backdrop-filter: blur(18px); background: rgba(10,14,26,0.78); }
.nav-container { position: relative; }
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
  color: #fff;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
  display: block;
  transition: .25s ease;
}
.nav-toggle.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2){ opacity: 0; }
.nav-toggle.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.nav-links a.active,
.nav-links a:hover { color: var(--primary); }
.page-hero {
  padding: 150px 0 72px;
  background: linear-gradient(180deg, rgba(10,14,26,1) 0%, rgba(17,24,39,1) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 1.02;
  margin: 0 0 16px;
}
.page-hero p {
  max-width: 780px;
  color: rgba(232,234,240,.78);
  line-height: 1.8;
}
.content-section { padding: 88px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.glass-card {
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.22);
  backdrop-filter: blur(12px);
}
.muted { color: rgba(232,234,240,.72); line-height: 1.8; }
.post-card img,.reference-card img,.system-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 16px;
}
.hero-content { padding-top: 72px; align-items: flex-start; }
.hero-container { padding-top: 5rem; padding-bottom: 2rem; }
.hero-image-card { align-self: center; }
.stats-bar {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.stat-card {
  min-height: 132px;
  background: linear-gradient(180deg, rgba(15,18,33,.92), rgba(10,13,24,.92));
  border: 1px solid rgba(245, 158, 11, 0.18);
  backdrop-filter: blur(10px);
}
.cta-band {
  margin: 84px auto 0;
  max-width: var(--container);
  padding: 0 24px;
}
.cta-band-inner {
  padding: 34px;
  border-radius: 28px;
  background: linear-gradient(135deg,#6b1a12,#ef6c00);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-band h3 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.5rem); margin: 0 0 8px; }
.cta-band p { margin: 0; color: #ffe8d0; }
.btn-white {
  padding: 14px 22px;
  border-radius: 12px;
  background: #fff;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
}
.footer {
  padding: 70px 0 40px;
  background: #090c13;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 84px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 28px;
}
.footer a { color: rgba(232,234,240,.82); text-decoration: none; }
.footer-brand { margin-bottom: 12px; }
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  padding: 16px 20px;
  font-weight: 700;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.contact-form-wrap input,
.contact-form-wrap textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,.08);
  background: #0f1116;
  color: #fff;
  margin-bottom: 14px;
}
.contact-form-wrap button {
  padding: 14px 18px;
  background: var(--primary);
  border: none;
  color: #18120b;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}
.contact-form-wrap button:hover { opacity: .94; }
.success-alert {
  display: inline-flex;
  margin-bottom: 14px;
}
@media (max-width: 1199px) {
  .hero-container { grid-template-columns: 1fr 0.95fr; gap: 32px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 991px) {
  .topbar .wrap,
  .page-wrap,
  .section-container,
  .nav-container,
  .hero-container,
  .footer-wrap,
  .cta-band,
  .stats-bar { padding-left: 20px; padding-right: 20px; }
  .nav-toggle { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    gap: 0;
    background: rgba(10,14,26,.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,.35);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 16px 18px; border-bottom: 1px solid rgba(255,255,255,.06); }
  .nav-links a:last-child { border-bottom: 0; }
  .hero-section, .hero-content { min-height: auto; }
  .hero-container { grid-template-columns: 1fr; gap: 28px; padding-top: 3rem; }
  .hero-image-card { order: 2; }
  .hero-text { order: 1; }
  .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 16px; }
  .cards-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 767px) {
  .topbar-left { font-size: .9rem; }
  .hero-buttons { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .stats-bar { gap: 12px; }
  .stat-card { min-height: 112px; }
  .stat-number { font-size: 2.25rem; }
  .feature-card, .glass-card { padding: 22px; }
  .cards-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band-inner { padding: 24px; }
}
@media (max-width: 575px) {
  .topbar .wrap,
  .page-wrap,
  .section-container,
  .nav-container,
  .hero-container,
  .footer-wrap,
  .cta-band,
  .stats-bar { padding-left: 16px; padding-right: 16px; }
  .hero-section { padding-top: 3.5rem; }
  .hero-container { padding-top: 2.5rem; padding-bottom: 1.25rem; }
  .hero-title { font-size: 3rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-image-card { width: 100%; }
  .card-image { min-height: 300px; object-fit: cover; }
  .slider-controls { margin-top: 2rem; }
  .stats-bar { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat-card { padding: 20px 16px; border-radius: 18px; }
  .stat-number { font-size: 2rem; }
  .stat-label { font-size: .9rem; }
  .page-hero { padding: 130px 0 56px; }
  .content-section { padding: 64px 0; }
  .whatsapp-float { right: 14px; bottom: 14px; padding: 14px 18px; }
}


/* Hero centering + stats under slider */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
}
.hero-content {
  width: 100%;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  justify-items: center;
}
.hero-text {
  width: 100%;
  max-width: 620px;
  justify-self: start;
}
.hero-image-card {
  width: min(100%, 560px);
  justify-self: center;
  align-self: center;
}
.stats-section {
  position: relative;
  z-index: 15;
  margin-top: -84px;
}
.stats-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: stretch;
}
@media (max-width: 991px) {
  .hero-section { padding-bottom: 28px; }
  .hero-content { padding-top: 0; }
  .hero-container { justify-items: stretch; }
  .hero-image-card { width: 100%; }
  .stats-section { margin-top: 20px; }
}
@media (max-width: 575px) {
  .stats-section { margin-top: 16px; }
}

.hero-badge-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(239,108,0,.28);
  background: rgba(239,108,0,.08);
  color: #ffb36b;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 18px;
}
.contact-hero p { max-width: 860px; }
.contact-page-section { padding-top: 74px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, .85fr);
  gap: 24px;
  align-items: start;
}
.contact-form-card,
.contact-info-panel,
.discovery-card,
.contact-map-card { overflow: hidden; }
.section-kicker {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .82rem;
  margin-bottom: 10px;
}
.form-intro { margin-bottom: 18px; }
.contact-form-grid .field-row.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.contact-form-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.contact-side-stack {
  display: grid;
  gap: 24px;
}
.contact-info-list {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}
.contact-info-item {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
}
.contact-info-title {
  color: rgba(232,234,240,.58);
  font-size: .9rem;
  margin-bottom: 6px;
}
.contact-info-value {
  color: #fff;
  font-weight: 600;
  line-height: 1.7;
}
.discovery-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.btn-solid,
.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
}
.btn-solid {
  background: var(--primary);
  color: #18120b;
}
.btn-outline-light {
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
}
.contact-map-card {
  margin-top: 24px;
  padding: 0;
}
.contact-map-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 24px;
  padding: 26px 26px 0;
}
.contact-map-frame {
  margin-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-map-frame iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}
@media (max-width: 991px) {
  .contact-page-grid,
  .contact-map-head {
    grid-template-columns: 1fr;
  }
  .contact-map-head {
    padding: 24px 24px 0;
  }
}
@media (max-width: 767px) {
  .contact-page-section { padding-top: 56px; }
  .contact-form-grid .field-row.two-col { grid-template-columns: 1fr; }
  .contact-form-actions,
  .discovery-actions { flex-direction: column; align-items: stretch; }
  .btn-solid,
  .btn-outline-light,
  .contact-form-actions .mini-chip,
  .contact-form-wrap button { width: 100%; justify-content: center; }
  .contact-map-frame iframe { height: 300px; }
}
