/* Color Palette from Image */
:root {
    --primary-purple: #5B4E7C;
    --deep-blue: #2B3A5C;
    --navy: #0A1628;
    --cream: #D9CABF;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-light: #666666;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Promotional Banner */
.promo-banner {
    background: var(--navy);
    color: var(--white);
    text-align: center;
    padding: 12px 24px;
    position: relative;
    z-index: 100;
    font-size: 14px;
}

.promo-code {
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}

.close-banner {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.close-banner:hover {
    opacity: 0.7;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0);
    border-bottom: 1px solid transparent;
    padding: 12px 0;
    z-index: 99;
    max-height: 130px;
    transition: background 0.3s ease, border-bottom 0.3s ease, backdrop-filter 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo img {
    height: 60px;
    width: auto;
    object-fit: contain;
    object-position: left center;
    margin-top: 8px;
}

.nav-menu {
    display: flex;
    gap: 32px;
    margin-left: auto;
}

.nav-dropdown {
    display: none; /* Hide old buttons */
}

/* Hamburger Menu */
.hamburger-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 101;
}

.hamburger-menu span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--navy); /* Dark blue */
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu:hover span {
    background-color: var(--primary-purple);
}

.nav-actions {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

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

.btn-primary:hover {
    background: var(--deep-blue);
}

.btn-hero {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 24px 120px;
    overflow: hidden;
    margin-top: -130px; /* Pull hero up behind header */
    padding-top: 210px; /* Add padding to compensate */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Added lighter sky-blue mix at 0% for logo contrast */
    background: linear-gradient(135deg, #8FA6CB 0%, var(--primary-purple) 40%, var(--deep-blue) 70%, var(--navy) 100%);
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(91, 78, 124, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(10, 22, 40, 0.4) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* 10% opacity */
    z-index: 0; /* Sit on top of gradient but behind content */
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 0;
}

.hero-title {
    font-size: clamp(64px, 10vw, 100px);
    font-weight: 100; /* Very thin font */
    color: #A7C7E7; /* Light blue color */
    margin-bottom: 40px;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subtitle {
    display: none;
}

/* Preview Cards */
.preview-cards {
    display: none;
}

.preview-card {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    width: 320px;
    animation: float 6s ease-in-out infinite;
}

.card-1 {
    left: 10%;
    top: 0;
    animation-delay: 0s;
}

.card-2 {
    left: 50%;
    transform: translateX(-50%);
    top: 20px;
    animation-delay: 2s;
}

.card-3 {
    right: 10%;
    top: 0;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-1 {
    transform: translateY(0px);
}

.card-2 {
    transform: translateX(-50%) translateY(0px);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-2 {
    animation-name: floatCenter;
}

@keyframes floatCenter {
    0%, 100% { transform: translateX(-50%) translateY(0px); }
    50% { transform: translateX(-50%) translateY(-20px); }
}

.card-badge {
    display: inline-block;
    background: var(--cream);
    color: var(--navy);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.card-content h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 8px;
}

.card-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.5;
}

/* Stats Section */
.stats-section {
    background: var(--navy);
    color: var(--white);
    padding: 80px 24px;
    text-align: center;
}

.stats-intro {
    font-size: 20px;
    margin-bottom: 60px;
    color: var(--cream);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-number {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--white), var(--cream));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 18px;
    color: var(--cream);
}

/* Solutions Section */
.solutions-section {
    padding: 120px 24px;
    background: var(--light-gray);
}

.section-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--navy);
}

.section-subtitle {
    font-size: 20px;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 60px;
}

.tabs-container {
    max-width: 900px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.tab {
    background: var(--white);
    border: 2px solid transparent;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    border-radius: 30px;
    transition: all 0.3s;
}

.tab:hover {
    background: var(--cream);
}

.tab.active {
    background: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.tab-content {
    display: none;
    background: var(--white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.tab-inner h3 {
    font-size: 32px;
    color: var(--navy);
    margin-bottom: 20px;
}

.tab-inner p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.tab-use-case {
    font-size: 16px;
    color: var(--text-dark);
}

.tab-use-case span {
    color: var(--primary-purple);
    font-weight: 500;
}

.tab-link {
    display: inline-block;
    margin-top: 24px;
    color: var(--navy);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.tab-link:hover {
    color: var(--primary-purple);
}

/* Features Section */
.features-section {
    padding: 120px 24px;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.feature-card {
    text-align: center;
    padding: 40px 24px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 24px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-blue));
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 20px;
    color: var(--cream);
    margin-bottom: 40px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 24px;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-top: 20px;
    line-height: 1.6;
    font-style: normal;
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-bottom: 20px;
}

.card-header strong {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
}

.card-header span {
    color: var(--primary-purple);
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.testimonial-author {
    display: none;
}

/* Footer */
.footer {
    background: var(--navy);
    color: var(--cream);
    padding: 80px 24px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 48px;
    margin-bottom: 60px;
}

.footer-column h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--cream);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(217, 202, 191, 0.2);
    color: var(--cream);
    font-size: 14px;
}

/* Problem Section - Dark dramatic styling */
.problem-section {
    background: linear-gradient(180deg, var(--navy) 0%, #0d1f3c 100%);
    color: var(--white);
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(91, 78, 124, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(43, 58, 92, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.problem-section .container {
    position: relative;
    z-index: 1;
}

.problem-section .section-title {
    color: var(--white);
    font-size: clamp(42px, 6vw, 64px);
    margin-bottom: 24px;
}

.problem-section .section-subtitle {
    color: var(--cream);
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 500;
    margin-bottom: 80px;
    letter-spacing: -0.02em;
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.problem-left {
    text-align: left;
}

.problem-intro {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

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

.problem-list li {
    font-size: 20px;
    color: var(--white);
    padding: 24px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
    padding-left: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.problem-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 10px;
}

.problem-right {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    padding: 60px 48px;
    backdrop-filter: blur(10px);
}

.problem-statement {
    font-size: 28px;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 16px;
    line-height: 1.4;
}

.problem-statement.highlight {
    font-size: 32px;
    font-weight: 600;
    color: var(--cream);
    margin-bottom: 0;
}

/* Difference Section - Clean modern cards */
.difference-section {
    padding: 140px 24px;
    background: var(--white);
    position: relative;
}

.difference-section .section-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--primary-purple);
    margin-bottom: 24px;
}

.difference-intro {
    font-size: 20px;
    color: var(--text-light);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 72px;
    line-height: 1.7;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.capability-card {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0,0,0,0.04);
}

.capability-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary-purple), var(--deep-blue));
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0 0 4px 0;
}

.capability-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(10, 22, 40, 0.12);
    background: var(--white);
}

.capability-card:hover::before {
    height: 100%;
}

.capability-card .card-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(91, 78, 124, 0.1);
    position: absolute;
    top: 20px;
    right: 28px;
    line-height: 1;
}

.capability-card h3 {
    font-size: 20px;
    color: var(--navy);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.difference-conclusion {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--deep-blue) 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.difference-conclusion::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.difference-conclusion p {
    font-size: 26px;
    color: var(--white);
    font-weight: 500;
    margin: 0;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

/* Pipeline Section - Visual flow */
.pipeline-section {
    padding: 140px 24px;
    background: linear-gradient(180deg, #f8f9fc 0%, var(--white) 100%);
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 80px;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.pipeline-step {
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.pipeline-step::after {
    content: "";
    position: absolute;
    top: 48px;
    right: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--deep-blue));
    opacity: 0.3;
}

.pipeline-step:last-child::after {
    display: none;
}

.pipeline-step::before {
    content: "";
    position: absolute;
    top: 48px;
    left: 0;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--deep-blue));
    opacity: 0.3;
}

.pipeline-step:first-child::before {
    display: none;
}

.pipeline-number {
    width: 96px;
    height: 96px;
    margin: 0 auto 32px;
    background: var(--white);
    border: 3px solid var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--navy);
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.pipeline-step:hover .pipeline-number {
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-blue));
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(91, 78, 124, 0.35);
}

.pipeline-step h3 {
    font-size: 22px;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 700;
}

.pipeline-step p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* Deliverables Section - Premium checklist */
.deliverables-section {
    padding: 140px 24px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.deliverables-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.deliverables-section .section-title {
    color: var(--white);
}

.deliverables-section .section-subtitle {
    color: var(--cream);
}

.deliverables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 64px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.deliverable-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 28px 32px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.deliverable-item:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(12px);
}

.deliverable-check {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-blue));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    flex-shrink: 0;
}

.deliverable-item p {
    font-size: 18px;
    color: var(--white);
    font-weight: 500;
    margin: 0;
}

.deliverables-conclusion {
    font-size: 24px;
    color: var(--cream);
    font-weight: 500;
    text-align: center;
    margin-top: 64px;
    position: relative;
    z-index: 1;
}

/* Use Cases Section - Elegant cards */
.use-cases-section {
    padding: 140px 24px;
    background: var(--white);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.use-case-card {
    background: var(--white);
    padding: 56px 48px;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(0,0,0,0.06);
}

.use-case-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-purple), var(--deep-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 32px 64px rgba(10, 22, 40, 0.15);
}

.use-case-card:hover::before {
    opacity: 1;
}

.use-case-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(91, 78, 124, 0.1), rgba(43, 58, 92, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 28px;
}

.use-case-card h3 {
    font-size: 24px;
    color: var(--navy);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.use-case-card p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: flex; /* Changed to show hamburger on mobile */
    }
    
    .preview-cards {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }
    
    .preview-card {
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        width: 100%;
        animation: none;
    }
    
    .card-2 {
        transform: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 60px 24px 80px;
    }
    
    .tabs {
        flex-direction: column;
    }
    
    .tab {
        width: 100%;
    }
    
    .tab-content {
        padding: 32px 24px;
    }
}

@media (max-width: 900px) {
    .problem-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .problem-right {
        padding: 40px 32px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .pipeline-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
    
    .pipeline-step::after,
    .pipeline-step::before {
        display: none;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 40px;
    }
    
    .btn-hero {
        padding: 16px 32px;
        font-size: 16px;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .pipeline-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-section .section-subtitle {
        font-size: 22px;
    }
    
    .problem-statement {
        font-size: 22px;
    }
    
    .problem-statement.highlight {
        font-size: 24px;
    }
    
    .deliverables-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-card {
        padding: 40px 32px;
    }
}
