:root {
    --primary: #E63946;
    --primary-dark: #b4252f;
    --primary-light: #FFF0F1;
    --secondary: #1D3557;
    --secondary-light: #457B9D;
    --accent: #F4A261;
    --dark:  #212b35;;
    --text: #383e75;
    --text-light: #6C757D;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --gradient-primary: linear-gradient(135deg, hsla(227.8, 57.5%, 47.1%, 0.4) 0%, hsl(350, 100%, 51.8%) 100%);
    --gradient-dark: linear-gradient(135deg, #1D3557 0%, #0D1B2A 100%);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

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

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

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}

.logo svg { width: 44px; height: 44px; }

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

/* .nav-links a {
    text-decoration: none;
    color: var(--secondary);
    font-weight: 500;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
} */

/* .nav-links a:hover {
    background: var(--primary-light);
    color: var(--primary);
} */

.nav-cta {
    display: flex;
    gap: 12px;
    margin-left: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--secondary);
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--white);
}

.btn-ghost {
    background: transparent;
    color: var(--secondary);
}

.btn-ghost:hover { background: var(--off-white); }

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
}

.btn-white-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
    margin: 5px 0;
    transition: var(--transition);
}

/* Product Hero */
.product-hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(120px);
    opacity: 0.1;
    top: -200px;
    right: -100px;
}

.product-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.product-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.product-badge svg { width: 18px; height: 18px; }

.product-hero h1 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--dark);
    margin-bottom: 24px;
}

.product-hero p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.product-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.product-hero-visual { position: relative; }

.product-screenshot {
    background: var(--gradient-dark);
    border-radius: var(--radius-xl);
    padding: 24px;
    box-shadow: var(--shadow-xl);
}

.screenshot-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.screenshot-dot.red { background: #FF5F57; }
.screenshot-dot.yellow { background: #FFBD2E; }
.screenshot-dot.green { background: #28CA41; }

.screenshot-content {
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    padding: 20px;
    min-height: 300px;
}

.screenshot-nav {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.screenshot-nav span {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.screenshot-nav span.active {
    color: var(--white);
    font-weight: 600;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.screenshot-card {
    background: rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    padding: 16px;
}

.screenshot-card.highlight {
    background: rgba(230, 57, 70, 0.2);
    border: 1px solid rgba(230, 57, 70, 0.3);
}

.screenshot-card h4 {
    color: rgba(255,255,255,0.6);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.screenshot-card .value {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
}

.screenshot-table { margin-top: 16px; }

.screenshot-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.8rem;
}

.screenshot-row.header {
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.screenshot-row span { color: rgba(255, 154, 154, 0.84); }

.status-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-badge.complete {
    background: rgba(40, 202, 65, 0.2);
    color: #28CA41;
}

.status-badge.progress {
    background: rgba(255, 189, 46, 0.2);
    color: #FFBD2E;
}

.status-badge.pending {
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: var(--white);
}
.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: #dee3e8;
  margin-bottom: 16px;
}
.section-header {
    text-align: center;
    color: #fbfcff85;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--dark);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: var(--off-white);
    transition: var(--transition);
    border: 1px solid transparent;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    background: transparent;
    color: #31676D;
}

.feature-card:hover .feature-icon {
    background: transparent;
    color: #31676D;
}

.feature-card h3 {
    font-size: 1.2rem;
    color: #ca2323;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: hsl(221.6, 45%, 21.4%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    bottom: -100px;
    left: -100px;
}

.benefits-section .section-header h2,
.benefits-section .section-header p { color: #ffffff; }

.benefits-section .section-tag {
    background: rgba(255,255,255,0.1);
    color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.benefit-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.benefit-card:hover {
    /* background: rgba(255,255,255,0.08); */
    border-color: var(--primary);
}

.benefit-number {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.benefit-content p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
}

/* Compliance Section */
.compliance-section {
    padding: 100px 0;
    background: var(--off-white);
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.compliance-content h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--dark);
    margin-bottom: 24px;
}

.compliance-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.compliance-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.compliance-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.compliance-item:hover { box-shadow: var(--shadow-md); }

.compliance-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.compliance-item span {
    font-weight: 600;
    color: var(--dark);
}

.compliance-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.compliance-card {
    background: hsl(var(--card));
    border: 1.5px solid hsl(var(--border));
    border-radius: 1.25rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
}

/* Shimmer effect background */
.compliance-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, hsl(0 76% 59% / 0.15), transparent);
    transition: left 0.7s ease;
    z-index: 1;
}

/* Gradient border effect on hover */
.compliance-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, hsl(0 76% 59% / 0), hsl(0 76% 59% / 0.1));
    border-radius: 1.5rem;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.compliance-card:hover {
    transform: translateY(-8px);
    border-color: hsl(var(--primary));
    box-shadow: 0 12px 30px rgba(235, 36, 79, 0.15);
}

.compliance-card:hover::before {
    left: 100%;
}

.compliance-card:hover::after {
    opacity: 1;
}

.compliance-card:nth-child(2) { margin-top: 0; }
.compliance-card:nth-child(3) { margin-top: 0; }
.compliance-card:nth-child(4) { margin-top: 0; }

.compliance-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, rgba(235, 36, 79, 0.1) 0%, rgba(235, 36, 79, 0.05) 100%);
    border-radius: 1rem;
    margin: 0 auto 1.25rem;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    border: 1.5px solid rgba(235, 36, 79, 0.15);
    color: hsl(var(--primary));
    flex-shrink: 0;
}

/* SVG stroke animation */
.compliance-card svg {
    stroke: currentColor;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 2px 4px hsl(0 76% 59% / 0.15));
    width: 28px;
    height: 28px;
}

.compliance-card:hover svg {
    filter: drop-shadow(0 6px 12px hsl(0 76% 59% / 0.3));
}

/* Glow effect for icon */
.compliance-card-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: radial-gradient(circle, hsl(0 76% 59% / 0.25), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.compliance-card:hover .compliance-card-icon {
    background: linear-gradient(135deg, #eb244f 0%, #C8102E 100%);
    transform: scale(1.12);
    color: white;
    border-color: #eb244f;
    box-shadow: 0 8px 20px rgba(235, 36, 79, 0.3);
}

.compliance-card:hover .compliance-card-icon::before {
    opacity: 0;
}

.compliance-card-icon svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
}

.compliance-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    color: hsl(var(--foreground));
    font-weight: 700;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 2;
    line-height: 1.4;
}

.compliance-card:hover h4 {
    color: hsl(var(--primary));
}

.compliance-card p {
    color: hsl(var(--muted-foreground));
    font-size: 0.875rem;
    line-height: 1.6;
    transition: all 0.6s ease;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.compliance-card:hover p {
    color: hsl(var(--muted-foreground));
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    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.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Related Products */
.related-section {
    padding: 100px 0;
    background: var(--white);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    background: var(--off-white);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    text-decoration: none;
    border: 1px solid transparent;
}

.related-card:hover {
    background: var(--white);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.related-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.related-card h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.related-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.related-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 60px 0 32px;
    color: var(--white);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer .logo { color: var(--white); }

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    padding: 100px 24px 40px;
    transform: translateX(100%);
    transition: var(--transition);
}

.mobile-menu.active { transform: translateX(0); }
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { margin-bottom: 16px; }

.mobile-menu ul a {
    font-size: 1.3rem;
    color: var(--dark);
    text-decoration: none;
    font-weight: 600;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Container */
.container-xl {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container-xl {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container-xl {
        padding: 0 2rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .product-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .product-hero-cta { justify-content: center; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: 1fr; }
    .compliance-grid { grid-template-columns: 1fr; }
    .compliance-visual { order: -1; }
    
    /* Container adjustments */
    .container {
        padding: 0 1.5rem;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Hero sections */
    .product-hero {
        padding: 6rem 0 4rem;
        min-height: auto;
    }
    
    .product-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .navbar .nav-links, .navbar .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .mobile-menu { display: block; }
    
    /* Container */
    .container {
        padding: 0 1rem;
    }
    
    /* Hero sections */
    .product-hero {
        padding: 5rem 0 3rem;
    }
    
    .product-hero h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .product-hero p {
        font-size: 1rem;
    }
    
    .product-hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .product-hero-cta .btn {
        width: 100%;
    }
    
    /* Grid layouts */
    .features-grid, 
    .related-grid,
    .benefits-grid,
    .compliance-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .compliance-list { 
        grid-template-columns: 1fr; 
    }
    
    .compliance-visual { 
        grid-template-columns: 1fr; 
    }
    
    .compliance-card:nth-child(2), 
    .compliance-card:nth-child(3) { 
        margin-top: 0; 
    }
    
    /* Screenshot grids and tables */
    .screenshot-grid { 
        grid-template-columns: 1fr; 
    }
    
    .screenshot-row { 
        grid-template-columns: 1fr 1fr; 
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .screenshot-table {
        overflow-x: auto;
    }
    
    /* Section headers */
    .section-header {
        margin-bottom: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Feature cards */
    .feature-card,
    .benefit-card {
        padding: 1.5rem;
    }
    
    .feature-card h3,
    .benefit-card h3 {
        font-size: 1.125rem;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    .btn-lg {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    /* CTA sections */
    .cta-section {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
    
    /* Workflow steps */
    .workflow-step {
        flex-direction: column;
        text-align: center;
    }
    
    /* Tables - horizontal scroll on mobile */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    /* Images */
    img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 640px) {
    /* Further mobile adjustments */
    .product-hero h1 {
        font-size: 1.75rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card,
    .benefit-card,
    .compliance-card {
        padding: 1.25rem;
    }
    
    .feature-card h3,
    .benefit-card h3 {
        font-size: 1rem;
    }
    
    .screenshot-row {
        grid-template-columns: 1fr;
        font-size: 0.75rem;
    }
    
    .btn {
        padding: 0.625rem 1rem;
        font-size: 0.8125rem;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Small mobile devices */
    .container {
        padding: 0 0.75rem;
    }
    
    .product-hero {
        padding: 4rem 0 2.5rem;
    }
    
    .product-hero h1 {
        font-size: 1.5rem;
    }
    
    .product-hero p {
        font-size: 0.9375rem;
    }
    
    .section-header h2 {
        font-size: 1.375rem;
    }
    
    .section-header p {
        font-size: 0.9375rem;
    }
    
    .feature-card,
    .benefit-card,
    .compliance-card {
        padding: 1rem;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.375rem;
    }
    
    .cta-content p {
        font-size: 0.9375rem;
    }
}
