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

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

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

/* Modern Typography */
h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #1a1f3a;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 600;
    line-height: 1.3;
    color: #1a1f3a;
    margin-bottom: 1rem;
}

p {
    font-size: 1.1rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    max-width: 65ch;
}

/* Brand and Logo */
.brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.brand-name {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1f3a;
    letter-spacing: -0.01em;
}

.logo {
    flex-shrink: 0;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

/* Hero Section - Modern Design */
.hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    padding: 8rem 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 127, 57, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero .brand {
    margin-bottom: 4rem;
}

.hero .brand-name {
    color: white;
    font-size: 2rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

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

.hero-text h1 {
    color: #1a1f3a;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 3rem;
    max-width: none;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-top: 3rem;
}

.cta-primary, .cta-secondary {
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
}

.cta-primary {
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    color: white;
    box-shadow: 0 10px 25px rgba(255, 127, 57, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 127, 57, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

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

.hero-image {
    width: 100%;
    max-width: 550px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.risk-map-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    background: rgba(15, 23, 42, 0.95);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #ff7f39;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.map-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.risk-node {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    position: relative;
    animation: pulse 2s infinite;
}

.risk-node.high {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.6);
}

.risk-node.medium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
}

.risk-node.low {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

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

/* Modern Section Styling */
section {
    padding: 8rem 0;
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* What We Do Section */
.what-we-do {
    text-align: center;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
}

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

.feature {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff7f39 0%, #4ade80 100%);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(255, 127, 57, 0.3);
}

.feature h3 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.feature p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto;
}

/* Risk Analysis Section */
.risk-analysis {
    text-align: center;
}

.analysis-grid {
    display: grid;
    gap: 6rem;
    margin-top: 4rem;
}

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

.analysis-item.reverse {
    direction: rtl;
}

.analysis-item.reverse > * {
    direction: ltr;
}

.analysis-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.analysis-content {
    text-align: left;
}

.analysis-content h3 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.analysis-content p {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.analysis-content ul {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 1rem;
}

.analysis-content li {
    padding: 1rem 0;
    color: #374151;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
    border-left: 3px solid #4ade80;
    padding-left: 1.5rem;
    background: rgba(74, 222, 128, 0.05);
    border-radius: 8px;
    padding: 1rem 1rem 1rem 2rem;
}

.analysis-content li::before {
    content: "✓";
    color: #4ade80;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    font-size: 1.2rem;
}

/* Architecture Section */
.architecture {
    text-align: center;
}

.architecture-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.arch-feature {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.arch-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.arch-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.arch-feature h3 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.arch-feature p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto;
}

/* Technical Debt Section */
.technical-debt {
    text-align: center;
}

.debt-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.debt-info {
    text-align: left;
}

.debt-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.debt-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.debt-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

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

.metric {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.metric-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ff7f39;
    margin-bottom: 0.5rem;
    display: block;
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.metric-label {
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
    display: block;
}

/* Products Section */
.products {
    text-align: center;
}

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

.product-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card.featured {
    border: 2px solid #ff7f39;
    transform: scale(1.05);
    background: linear-gradient(135deg, #ffffff 0%, #fef7f0 100%);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 127, 57, 0.4);
}

.product-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: #ff7f39;
    margin-bottom: 0.5rem;
    display: block;
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    padding: 0.75rem 0;
    color: #374151;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.features-list li::before {
    content: "✓";
    color: #4ade80;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.product-btn {
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    color: white;
    padding: 1.25rem 2rem;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 127, 57, 0.3);
}

.product-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 127, 57, 0.4);
}

/* How It Works Section */
.how-it-works {
    text-align: center;
}

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

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff7f39 0%, #e56b2b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(255, 127, 57, 0.3);
}

.step-content h3 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.step-content p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto;
}

/* Benefits Section */
.benefits {
    text-align: center;
}

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

.benefit {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.benefit:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 25px rgba(74, 222, 128, 0.3);
}

.benefit h3 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.benefit p {
    color: #64748b;
    line-height: 1.7;
    margin: 0 auto;
}

/* Integrations Section */
.integrations {
    text-align: center;
}

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

.integration-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.integration-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.integration-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #374151;
    font-size: 0.9rem;
    border: 2px solid #e2e8f0;
}

.integration-item p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.integrations-visual {
    margin-top: 4rem;
    text-align: center;
}

.integrations-image {
    width: 100%;
    max-width: 900px;
    height: 350px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

/* Contacts Section */
.contacts {
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin: 0 auto;
    max-width: 1200px;
}

.contact-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.contact-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.contact-details h3 {
    color: #1a1f3a;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-details p {
    color: #64748b;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.contact-details a {
    color: #ff7f39;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #e56b2b;
    text-decoration: underline;
}

/* Modern Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #ff7f39 50%, transparent 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 5rem;
    margin-bottom: 3rem;
}

.footer-brand .brand {
    justify-content: flex-start;
    margin-bottom: 2rem;
}

.footer-brand .brand-name {
    color: white;
    font-size: 1.75rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.1rem;
    max-width: 400px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #ff7f39;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: #94a3b8;
    margin: 0;
    font-size: 1rem;
}

.disclaimer {
    font-size: 0.9rem;
    color: #64748b;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .analysis-item {
        gap: 3rem;
    }
    
    .debt-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 5rem 0;
    }
    
    .hero {
        padding: 5rem 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .risk-map-overlay {
        position: static;
        margin-top: 2rem;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .analysis-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .analysis-item.reverse {
        direction: ltr;
    }
    
    .debt-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .debt-info {
        text-align: center;
    }
    
    .debt-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card.featured {
        transform: none;
    }
    
    .product-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .feature, .arch-feature, .benefit {
        padding: 2rem;
    }
    
    .product-card {
        padding: 2rem;
    }
    
    .contact-item {
        padding: 2rem;
    }
    
    .debt-metrics {
        grid-template-columns: 1fr;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}