:root {
    --primary: #4f46e5;
    --primary-light: #818cf8;
    --primary-dark: #3730a3;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --success: #10b981;
    --success-light: #34d399;
    --warning: #f59e0b;
    
    /* Sleek Neutrals */
    --navy-950: #0b0f19;
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --slate-700: #334155;
    --slate-600: #475569;
    --slate-400: #94a3b8;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    
    /* Backgrounds & Borders */
    --bg-white: #ffffff;
    --bg-soft: #f8fafc;
    --border-light: rgba(226, 232, 240, 0.8);
    --border-dark: rgba(51, 65, 85, 0.5);
    
    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px -2px rgba(15, 23, 42, 0.08), 0 2px 8px -1px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.12), 0 10px 20px -5px rgba(15, 23, 42, 0.06);
    --shadow-primary: 0 10px 25px -5px rgba(79, 70, 229, 0.25);
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-white);
    color: var(--slate-700);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    color: var(--navy-900);
    letter-spacing: -0.02em;
    font-weight: 700;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.padding-lg {
    padding: 120px 0;
}

.bg-soft {
    background-color: var(--slate-50);
}

/* Beautiful Ambient Mesh Gradients */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, rgba(6, 182, 212, 0.05) 50%, rgba(255, 255, 255, 0) 100%);
    top: -200px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.glow-bg-left {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, rgba(79, 70, 229, 0.03) 60%, rgba(255, 255, 255, 0) 100%);
    bottom: -150px;
    left: -200px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

/* Header & Glassmorphism Navbar */
header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    position: fixed;
    width: 100%;
    z-index: 2000;
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.05);
    border-bottom-color: rgba(226, 232, 240, 1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 88px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    gap: 3.5rem;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--navy-900);
    text-decoration: none;
    font-family: var(--font-heading);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo span {
    color: var(--primary);
}

.logo-brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 34px;
    width: auto;
    object-fit: contain;
    transition: transform 0.2s ease-in-out;
}

.logo-img:hover {
    transform: scale(1.02);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.25rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--slate-600);
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: all 0.2s ease;
}

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

.nav-links a i {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.nav-links li:hover a i {
    transform: translateY(2px);
}

.nav-right {
    gap: 1.5rem;
}

.nav-btn-link {
    text-decoration: none;
    color: var(--slate-700);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

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

/* Premium Buttons */
.btn {
    text-decoration: none;
    padding: 0.8rem 1.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px -5px rgba(79, 70, 229, 0.4);
}

.btn-outline {
    background: white;
    border: 1.5px solid var(--slate-200);
    color: var(--navy-900);
}

.btn-outline:hover {
    background: var(--slate-50);
    border-color: var(--slate-400);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding-top: 180px;
    padding-bottom: 120px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(243, 244, 246, 0.6) 0%, rgba(255, 255, 255, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 5rem;
    align-items: center;
}

.announcement {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(79, 70, 229, 0.08);
    border: 1px solid rgba(79, 70, 229, 0.15);
    color: var(--primary);
    padding: 0.4rem 1.1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
    transition: all 0.2s ease;
}

.announcement span:first-child {
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 1px 6px;
    border-radius: 4px;
    font-weight: 800;
}

.announcement i {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.announcement:hover i {
    transform: translateX(4px);
}

.hero h1 {
    font-size: 4.1rem;
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.75rem;
    color: var(--navy-900);
}

.hero h1 span {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2.75rem;
    max-width: 580px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    font-size: 0.95rem;
    color: var(--slate-600);
}

.user-avatars {
    display: flex;
}

.user-avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid white;
    margin-left: -12px;
    box-shadow: var(--shadow-sm);
}

.user-avatars img:first-child {
    margin-left: 0;
}

.hero-visual {
    position: relative;
    z-index: 10;
}

.hero-visual-wrapper {
    background: #ffffff;
    border-radius: var(--radius-xl);
    padding: 12px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-visual-wrapper:hover {
    transform: scale(1.02) rotate(1deg);
}

.hero-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

/* Social Proof logo bar */
.social-proof {
    padding: 50px 0;
    background: #ffffff;
    border-top: 1px solid var(--slate-100);
    border-bottom: 1px solid var(--slate-100);
    text-align: center;
}

.social-proof p {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--slate-400);
    letter-spacing: 0.12em;
    margin-bottom: 2.25rem;
}

.logo-cloud {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.client-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--slate-400);
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: default;
}

.client-logo:hover {
    opacity: 0.95;
    color: var(--primary);
}

/* Steps Section styling */
.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-center h2 {
    font-size: 2.75rem;
    margin-top: 1rem;
    color: var(--navy-900);
}

.sub-title {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    display: inline-block;
}

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

.step-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: var(--radius-md);
    text-align: center;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.step-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
    margin: 0 auto 2rem;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.step-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--navy-900);
}

.step-card p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Industry Solutions Section */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.industry-card {
    padding: 3.5rem 3rem;
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card:hover {
    background: white;
    box-shadow: var(--shadow-lg);
    border-color: var(--slate-200);
    transform: translateY(-6px);
}

.industry-card i {
    color: var(--primary);
    width: 48px;
    height: 48px;
    background: rgba(79, 70, 229, 0.06);
    padding: 12px;
    border-radius: 12px;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}

.industry-card:hover i {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.industry-card h3 {
    margin-bottom: 1rem;
    font-size: 1.45rem;
}

.industry-card p {
    color: var(--slate-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Feature Showcase Block styling */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.feature-block.h-reversed {
    grid-template-columns: 1.05fr 0.95fr;
}

.feature-text .tag {
    background: rgba(6, 182, 212, 0.08);
    color: var(--accent);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 1rem;
}

.feature-text h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 1.25rem 0;
    color: var(--navy-900);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--slate-600);
    margin-bottom: 2.25rem;
}

.check-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--navy-900);
}

.check-list li i {
    color: var(--success);
    margin-top: 4px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.link-btn {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    transition: transform 0.2s;
}

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

.feature-img {
    position: relative;
}

/* Beautiful Feature Mockups using SVGs and pure CSS */
.feature-img-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 12px;
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.feature-img img, .feature-img svg {
    width: 100%;
    border-radius: var(--radius-lg);
    display: block;
}

/* Split Grid for AI Automation */
.split-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 6rem;
    align-items: center;
}

.split-grid h2 {
    font-size: 2.75rem;
    line-height: 1.2;
    margin: 1.25rem 0 2rem;
}

.split-grid p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--slate-600);
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.ai-item {
    display: flex;
    gap: 1.75rem;
    background: white;
    padding: 2.25rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.ai-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateX(5px);
}

.ai-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-icon i {
    width: 24px;
    height: 24px;
}

.ai-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--navy-900);
}

.ai-item p {
    font-size: 0.95rem;
    color: var(--slate-600);
    line-height: 1.6;
}

/* Strategic SaaS Comparison Section Styles */
.comparison-section {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.comparison-wrapper {
    background: #ffffff;
    border-radius: var(--radius-xl);
    border: 1px solid var(--slate-200);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-top: 4rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.comparison-table th, .comparison-table td {
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid var(--slate-100);
}

.comparison-table th {
    background: var(--slate-50);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--navy-900);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.comparison-table th.col-feature {
    width: 28%;
}

.comparison-table th.col-brand {
    width: 14%;
    text-align: center;
}

.comparison-table th.col-atoor {
    width: 16%;
    text-align: center;
    background: rgba(79, 70, 229, 0.04);
    color: var(--primary);
}

.comparison-table td.col-atoor {
    background: rgba(79, 70, 229, 0.02);
    font-weight: 700;
    color: var(--primary-dark);
    text-align: center;
}

.comparison-table td {
    font-size: 0.95rem;
}

.comparison-table td.cell-brand {
    text-align: center;
    color: var(--slate-600);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:hover td {
    background-color: var(--slate-50);
}

.comparison-table tr:hover td.col-atoor {
    background-color: rgba(79, 70, 229, 0.05);
}

/* Feature detail and tick/cross icons */
.feature-title {
    font-weight: 700;
    color: var(--navy-900);
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-subtitle {
    font-size: 0.8rem;
    color: var(--slate-600);
    display: block;
}

.comparison-table td i.x-red {
    color: #ef4444;
    width: 20px;
    height: 20px;
}

.comparison-table td i.check-green {
    color: var(--success);
    width: 20px;
    height: 20px;
}

/* Pricing Section: Sleek Branded Dark Mode */
.pricing-section {
    background: var(--navy-950);
    color: white;
    position: relative;
    overflow: hidden;
}

.pricing-section .glow-bg {
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, rgba(6, 182, 212, 0.08) 50%, rgba(255, 255, 255, 0) 100%);
    top: -100px;
    right: -50px;
}

.pricing-section .section-center h2 {
    color: white;
}

.price-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.price-card {
    background: var(--navy-900);
    border: 1px solid var(--border-dark);
    padding: 4.5rem 3.5rem;
    border-radius: var(--radius-md);
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.4);
    border-color: rgba(79, 70, 229, 0.3);
}

.price-card.p-featured {
    background: radial-gradient(100% 100% at 50% 0%, rgba(17, 24, 39, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
    border: 2px solid var(--primary);
    box-shadow: 0 20px 40px -10px rgba(79, 70, 229, 0.15);
}

.p-tag {
    position: absolute;
    top: -16px;
    right: 36px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 0.45rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.p-header h3 {
    font-size: 1.65rem;
    margin-bottom: 0.75rem;
    color: white;
}

.p-header p {
    color: var(--slate-400);
    font-size: 0.95rem;
    line-height: 1.6;
}

.p-amount {
    font-size: 3.5rem;
    font-weight: 800;
    margin: 2.5rem 0;
    color: white;
    font-family: var(--font-heading);
}

.p-amount .curr {
    font-size: 1.25rem;
    color: var(--slate-400);
    vertical-align: super;
    margin-right: 4px;
}

.p-amount .period {
    font-size: 1rem;
    color: var(--slate-400);
    font-weight: 400;
}

.p-features {
    list-style: none;
    margin-bottom: 3.5rem;
    flex-grow: 1;
}

.p-features li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: var(--slate-200);
}

.p-features li i {
    color: var(--accent);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.p-features li i.check-enterprise {
    color: var(--success);
}

/* Call To Action Form styles */
.footer-cta {
    background: radial-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(6, 182, 212, 0.03) 100%);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-xl);
    padding: 6rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-inner h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: var(--navy-900);
}

.cta-inner p {
    font-size: 1.2rem;
    color: var(--slate-600);
    max-width: 600px;
    margin: 0 auto;
}

/* Detailed Premium Footer */
.footer {
    padding-top: 120px;
    padding-bottom: 50px;
    background: #ffffff;
    border-top: 1px solid var(--slate-100);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 90px;
}

.f-brand p {
    color: var(--slate-600);
    margin: 1.75rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
}

.social-icons {
    display: flex;
    gap: 1.25rem;
    color: var(--slate-600);
}

.social-icons i {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: color 0.2s;
}

.social-icons i:hover {
    color: var(--primary);
}

.f-links h4 {
    margin-bottom: 2.25rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--navy-900);
}

.f-links ul {
    list-style: none;
}

.f-links ul li {
    margin-bottom: 1.1rem;
}

.f-links ul li a {
    text-decoration: none;
    color: var(--slate-600);
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.f-links ul li a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.f-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--slate-100);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--slate-400);
    font-size: 0.85rem;
}

.f-bottom-links {
    display: flex;
    gap: 2rem;
}

.f-bottom-links a {
    color: var(--slate-400);
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Redesigned Responsive Breakpoints */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero h1 {
        font-size: 3.25rem;
    }
    
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .steps-grid, .industry-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-block, .split-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .feature-block.h-reversed {
        grid-template-columns: 1fr;
    }
    
    .feature-img {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
    
    .check-list {
        display: inline-block;
        text-align: left;
    }
    
    .price-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .comparison-wrapper {
        overflow-x: auto;
    }
}

@media (max-width: 640px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo-cloud {
        gap: 1.5rem;
    }
    
    .footer-cta {
        padding: 4rem 2rem;
    }
    
    .cta-inner h2 {
        font-size: 2.25rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .f-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .comparison-table th, .comparison-table td {
        padding: 1rem;
    }
}

/* Interactive Calculator Glassmorphism Card styles */
.calculator-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}
.calculator-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(99, 102, 241, 0.15) !important;
    border-color: rgba(99, 102, 241, 0.4) !important;
}

/* Range input styling */
.calculator-card input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.1);
    height: 6px;
    border-radius: 3px;
    outline: none;
    transition: background 0.15s ease;
}
.calculator-card input[type="range"]:hover {
    background: rgba(255, 255, 255, 0.18);
}
.calculator-card input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #818cf8;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: transform 0.15s ease, background 0.15s ease;
}
.calculator-card input[type="range"]::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    background: #a5b4fc;
}
.calculator-card input[type="range"]::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border: none;
    border-radius: 50%;
    background: #818cf8;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    transition: transform 0.15s ease, background 0.15s ease;
}
.calculator-card input[type="range"]::-moz-range-thumb:hover {
    transform: scale(1.2);
    background: #a5b4fc;
}
