/* ==============================================
   SYSTEMFLARE LANDING PAGE - STYLES
   ============================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #1a1a1a;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333333;
}

p {
    color: #555555;
    margin-bottom: 1rem;
}

a {
    color: #0066CC;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #0052A3;
}

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

.section-intro {
    font-size: 1.1rem;
    color: #666666;
    margin-bottom: 3rem;
    max-width: 100%;
    line-height: 1.7;
}

/* Section header with visual layout */
.section-header-with-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.section-header-text h2 {
    margin-bottom: 1rem;
}

.section-header-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.section-header-visual img {
    max-width: 100%;
    height: auto;
}

.section-header-visual .architecture-image {
    max-height: 250px;
}

.section-header-visual .workflow-image {
    max-height: 180px;
}

@media (max-width: 1024px) {
    .section-header-with-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-header-visual {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .section-header-with-visual {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header-visual {
        min-height: 200px;
    }
}

/* ==============================================
   NAVIGATION
   ============================================== */

.navbar {
    background-color: #ffffff;
    border-bottom: 1px solid #E0E0E0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066CC;
}

.logo-link {
    color: #0066CC;
    font-weight: 700;
    transition: color 0.3s ease;
}

.logo-link:hover {
    color: #0052A3;
}

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

.nav-menu a {
    color: #555555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #0066CC;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.nav-dropdown-toggle::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid #555555;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.nav-dropdown-toggle:hover::after {
    border-top-color: #0066CC;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    list-style: none;
    min-width: 250px;
    margin-top: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu li {
    padding: 0;
}

.nav-dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #555555;
    font-weight: 500;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-dropdown-menu a:hover {
    background-color: #F5F9FF;
    color: #0066CC;
}

.nav-dropdown-menu li:first-child a {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.nav-dropdown-menu li:last-child a {
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.nav-cta {
    background-color: #0066CC;
    color: #ffffff !important;
    padding: 0.5rem 1.5rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.nav-cta:hover {
    background-color: #0052A3;
    color: #ffffff !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333333;
    margin: 5px 0;
    transition: 0.3s;
}

/* ==============================================
   HERO SECTION
   ============================================== */

.hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #F5F9FF 100%);
    min-height: 100vh;
}

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

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subheading {
    font-size: 1.3rem;
    color: #666666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.bullet {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.bullet-icon {
    color: #22C55E;
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.bullet span {
    color: #555555;
    font-size: 1rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.hero-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.15));
    border-radius: 12px;
}

.infrastructure-diagram {
    position: relative;
    width: 300px;
    height: 300px;
}

.node {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #ffffff;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.15);
    transition: transform 0.3s ease;
}

.node:hover {
    transform: scale(1.05);
}

.node.cloud {
    background-color: #FF9900;
    top: 10px;
    left: 20px;
}

.node.azure {
    background-color: #0078D4;
    top: 10px;
    right: 20px;
}

.node.gcp {
    background-color: #EA4335;
    bottom: 50px;
    right: 20px;
}

.node.onprem {
    background-color: #6366F1;
    bottom: 50px;
    left: 20px;
}

.connections {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ==============================================
   BUTTONS & CTAs
   ============================================== */

.cta-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.cta-primary {
    background-color: #0066CC;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.25);
}

.cta-primary:hover {
    background-color: #0052A3;
    box-shadow: 0 6px 16px rgba(0, 102, 204, 0.35);
    transform: translateY(-2px);
}

.cta-secondary {
    background-color: #E8F0FF;
    color: #0066CC;
    border: 1px solid #0066CC;
}

.cta-secondary:hover {
    background-color: #D4E5FF;
}

/* ==============================================
   PAIN POINTS SECTION
   ============================================== */

.pain-points {
    padding: 5rem 2rem;
    background-color: #FAFAFA;
}

.pain-points h2 {
    text-align: left;
}

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

.pain-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.pain-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #0066CC;
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.pain-card h3 {
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.pain-card p {
    color: #666666;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.consequence {
    color: #D32F2F;
    font-weight: 500;
}

/* ==============================================
   SOLUTIONS SECTION
   ============================================== */

.solutions {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.solutions h2 {
    text-align: left;
}

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

.solution-card {
    background: linear-gradient(135deg, #F8FBFF 0%, #F0F7FF 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #D4E5FF;
    transition: all 0.3s ease;
    text-align: center;
}

.solution-card:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    transform: translateY(-4px);
    border-color: #0066CC;
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    color: #0066CC;
    margin-bottom: 1rem;
}

.solution-card p {
    color: #666666;
    line-height: 1.7;
    text-align: left;
}

.outcome {
    background-color: #E8F0FF;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #0066CC;
}

.outcome strong {
    color: #0066CC;
}

/* ==============================================
   USE CASES SECTION
   ============================================== */

.use-cases {
    padding: 5rem 2rem;
    background-color: #FAFAFA;
}

.use-cases h2 {
    text-align: left;
}

.use-case-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.use-case-item {
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.use-case-header {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.use-case-header:hover {
    background-color: #F5F9FF;
}

.use-case-item.active .use-case-header {
    background-color: #E8F0FF;
}

.accordion-icon {
    font-size: 1.5rem;
    color: #0066CC;
    transition: transform 0.3s ease;
}

.use-case-item.active .accordion-icon {
    transform: rotate(45deg);
}

.use-case-content {
    display: none;
    padding: 2rem;
    border-top: 1px solid #E0E0E0;
    background-color: #ffffff;
}

.use-case-item.active .use-case-content {
    display: block;
}

.scenario, .solution, .outcome {
    margin-bottom: 1.5rem;
}

.scenario h4, .solution h4, .outcome h4 {
    color: #0066CC;
    margin-bottom: 0.75rem;
}

.scenario p, .solution p, .outcome p {
    color: #666666;
    line-height: 1.7;
}

/* ==============================================
   COMPARISON SECTION
   ============================================== */

.comparison {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.comparison h2 {
    text-align: left;
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #ffffff;
}

.comparison-table thead {
    background-color: #0066CC;
    color: #ffffff;
}

.comparison-table th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 600;
}

.comparison-table td {
    padding: 1.5rem;
    border-bottom: 1px solid #E0E0E0;
    color: #666666;
    line-height: 1.6;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: #F5F9FF;
}

.comparison-table tbody tr:hover {
    background-color: #E8F0FF;
}

.comparison-summary {
    background: linear-gradient(135deg, #E8F0FF 0%, #F0F7FF 100%);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0066CC;
}

.comparison-summary h3 {
    color: #0066CC;
}

/* ==============================================
   DIFFERENTIATORS SECTION
   ============================================== */

.differentiators {
    padding: 5rem 2rem;
    background-color: #FAFAFA;
}

.differentiators h2 {
    text-align: left;
}

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

.differentiator {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
    text-align: center;
    transition: all 0.3s ease;
}

.differentiator:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
    border-color: #0066CC;
}

.diff-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.differentiator h3 {
    color: #0066CC;
    margin-bottom: 1rem;
}

.differentiator p {
    color: #666666;
    text-align: left;
    line-height: 1.7;
}

/* ==============================================
   TRUST SIGNALS SECTION
   ============================================== */

.trust-signals {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #F5F9FF 100%);
}

.trust-signals h2 {
    text-align: left;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #E0E0E0;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.metric-card:hover {
    border-color: #0066CC;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.metric-card h3 {
    font-size: 2.5rem;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.metric-card p {
    color: #666666;
    font-size: 1rem;
    margin: 0;
}

.testimonial {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid #0066CC;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 1.1rem;
    color: #333333;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: #0066CC;
    font-weight: 600;
    font-style: normal;
    margin: 0;
}

.tech-stack {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #E0E0E0;
}

.tech-stack h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: #0066CC;
}

.stack-description {
    text-align: center;
    color: #666666;
    margin-bottom: 2rem;
}

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

.stack-category {
    padding: 1rem;
    background-color: #F5F9FF;
    border-radius: 8px;
    text-align: center;
    color: #333333;
    line-height: 1.6;
    border: 1px solid #D4E5FF;
}

/* ==============================================
   PROCESS SECTION
   ============================================== */

.process {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.process h2 {
    text-align: left;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.process-step {
    background: linear-gradient(135deg, #F8FBFF 0%, #F0F7FF 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #D4E5FF;
    border-left: 4px solid #0066CC;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover {
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
    transform: translateX(4px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #0066CC;
    color: #ffffff;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.process-step h3 {
    color: #0066CC;
    margin-bottom: 1rem;
}

.process-step p {
    color: #666666;
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.process-step p strong {
    color: #333333;
}

.process-connector {
    height: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.process-connector::before {
    content: "";
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, #0066CC 0%, #D4E5FF 100%);
}

.workflow-image {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.15));
}

.architecture-image {
    max-width: 100%;
    height: auto;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 102, 204, 0.15));
}

/* ==============================================
   CONTACT SECTION
   ============================================== */

.contact-section {
    padding: 5rem 2rem;
    background-color: #FAFAFA;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
    margin-bottom: 1rem;
    color: #0066CC;
}

.contact-info p {
    color: #666666;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

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

.contact-item {
    color: #666666;
}

.contact-item strong {
    color: #333333;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-item a {
    font-size: 1.1rem;
    font-weight: 500;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: #333333;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.75rem;
    border: 1px solid #D4E5FF;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066CC;
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-footer {
    color: #999999;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.form-success {
    text-align: center;
    padding: 3rem;
}

.success-message {
    background: linear-gradient(135deg, #E8F0FF 0%, #F0F7FF 100%);
    padding: 3rem;
    border-radius: 12px;
    border: 2px solid #0066CC;
}

.success-message h3 {
    color: #22C55E;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.success-message p {
    color: #333333;
    margin-bottom: 1.5rem;
}

/* ==============================================
   FOOTER
   ============================================== */

.footer {
    background-color: #1a1a1a;
    color: #E0E0E0;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #B0B0B0;
    margin-bottom: 0.75rem;
}

.footer-section em {
    color: #B0B0B0;
    font-style: italic;
}

.footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section ul li a,
.footer-links a {
    color: #B0B0B0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover,
.footer-links a:hover {
    color: #0099FF;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #333333;
    color: #E0E0E0;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-weight: bold;
}

.social-links a:hover {
    background-color: #0066CC;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 2rem;
    text-align: center;
    color: #B0B0B0;
}

/* ==============================================
   RESPONSIVE DESIGN
   ============================================== */

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: auto;
        padding: 3rem 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
        max-width: 100%;
    }

    .hero-visual {
        height: 250px;
    }

    .infrastructure-diagram {
        width: 200px;
        height: 200px;
    }

    .node {
        width: 60px;
        height: 60px;
        font-size: 0.8rem;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        margin: 0;
        border: none;
        box-shadow: none;
        background-color: #F5F9FF;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-dropdown-menu.active-mobile {
        opacity: 1;
        visibility: visible;
        max-height: 300px;
    }

    .nav-dropdown-menu.active-mobile a {
        padding: 0.75rem 1rem 0.75rem 2.5rem;
    }

    .pain-grid,
    .solutions-grid,
    .differentiators-grid {
        grid-template-columns: 1fr;
    }

    .section-header-with-visual {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .comparison-table-wrapper {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }

    .process-step {
        padding: 1.5rem;
    }

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

    .footer-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stack-logos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 16px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0;
    }

    .hero-inner {
        gap: 1.5rem;
    }

    .hero-bullets {
        gap: 1rem;
    }

    .pain-points,
    .solutions,
    .use-cases,
    .comparison,
    .differentiators,
    .trust-signals,
    .process {
        padding: 3rem 1rem;
    }

    .cta-button {
        width: 100%;
        padding: 0.85rem 1.5rem;
    }

    .contact-wrapper {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 0.65rem;
    }

    .testimonial {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* ==============================================
   ACCESSIBILITY
   ============================================== */

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus visible for keyboard navigation */
:focus-visible {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .pain-card,
    .solution-card,
    .differentiator,
    .metric-card {
        border-width: 2px;
    }
}

/* ==============================================
   LANGUAGE SWITCHER STYLES
   Language switcher uses nav-dropdown styles
   ============================================== */

/* Language toggle uses standard nav-dropdown-toggle styling */
.language-toggle {
    font-weight: 600;
    letter-spacing: 0.5px;
}
