* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
--bg-light: #ffffff;
--bg-secondary: #f8fafc;
--bg-card: #ffffff;
--accent-blue: #2563eb;
--accent-cyan: #0ea5e9;
--text-primary: #0f172a;
--text-secondary: #64748b;
--border: rgba(15, 23, 42, 0.08);
--spacing-sm: 0.5rem;
--spacing-md: 1rem;
--spacing-lg: 2rem;
--spacing-xl: 3rem;
--spacing-2xl: 4rem;
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background: var(--bg-light);
color: var(--text-primary);
line-height: 1.6;
overflow-x: hidden;
font-weight: 400;
}
/* Skip to content for accessibility */
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: var(--accent-blue);
color: white;
padding: 8px;
text-decoration: none;
z-index: 200;
}
.skip-to-content:focus {
top: 0;
}
/* Subtle gradient background */
body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
radial-gradient(circle at 50% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 40%);
z-index: 0;
pointer-events: none;
}
/* Animated mesh background */
@keyframes meshMove {
0% { background-position: 0 0; }
100% { background-position: 100px 100px; }
}
@media (prefers-reduced-motion: reduce) {
body::after {
animation: none !important;
}
}
body::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image:
linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
background-size: 100px 100px;
z-index: 0;
pointer-events: none;
animation: meshMove 20s linear infinite;
}
/* Navigation */
nav {
position: fixed;
top: 0;
width: 100%;
background: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
z-index: 100;
padding: 1.5rem 0;
border-bottom: 1px solid var(--border);
}
.nav-container {
max-width: 1400px;
margin: 0 auto;
padding: 0 var(--spacing-xl);
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-size: 1.25rem;
font-weight: 600;
color: var(--text-primary);
letter-spacing: -0.02em;
}
.logo span {
color: var(--accent-blue);
}
.nav-links {
display: flex;
gap: var(--spacing-xl);
list-style: none;
}
.nav-links a {
color: var(--text-secondary);
text-decoration: none;
transition: color 0.2s;
font-weight: 500;
font-size: 0.95rem;
letter-spacing: -0.01em;
}
.nav-links a:hover {
color: var(--text-primary);
}
/* Hamburger Menu */
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
z-index: 101;
background: transparent;
border: none;
padding: 0;
}
.hamburger span {
width: 25px;
height: 3px;
background: var(--text-primary);
transition: all 0.3s;
border-radius: 2px;
}
.hamburger.active span:nth-child(1) {
transform: rotate(45deg) translate(8px, 8px);
}
.hamburger.active span:nth-child(2) {
opacity: 0;
}
.hamburger.active span:nth-child(3) {
transform: rotate(-45deg) translate(7px, -7px);
}
/* Mobile Menu Overlay */
.mobile-menu {
display: none;
position: fixed;
top: 0;
right: -100%;
width: 70%;
height: 100vh;
background: var(--bg-light);
z-index: 100;
padding: 6rem var(--spacing-lg) var(--spacing-lg);
box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
transition: right 0.3s ease;
border-left: 1px solid var(--border);
}
.mobile-menu.active {
right: 0;
}
.mobile-menu ul {
list-style: none;
display: flex;
flex-direction: column;
gap: var(--spacing-lg);
}
.mobile-menu ul li a {
color: var(--text-primary);
text-decoration: none;
font-size: 1.25rem;
font-weight: 500;
transition: color 0.2s;
}
.mobile-menu ul li a:hover {
color: var(--accent-blue);
}
/* Overlay backdrop */
.menu-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.5);
z-index: 99;
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
}
.menu-overlay.active {
opacity: 1;
pointer-events: auto;
}
/* Trust Badges */
.trust-badges {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: var(--spacing-lg);
max-width: 1200px;
margin: var(--spacing-2xl) auto 0;
padding: 0 var(--spacing-lg);
}
.trust-badge {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 0.75rem;
}
.trust-icon {
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
border-radius: 12px;
display: flex;
align-items: center;
justify-content: center;
}
.trust-icon svg {
width: 24px;
height: 24px;
stroke: white;
fill: none;
}
.trust-badge p {
color: var(--text-secondary);
font-size: 0.95rem;
line-height: 1.5;
margin: 0;
}
/* Container */
.container {
position: relative;
z-index: 1;
max-width: 1400px;
margin: 0 auto;
padding: 0 var(--spacing-xl);
}
/* Hero Section */
.hero {
min-height: 100vh;
display: flex;
align-items: center;
padding: 8rem 0 var(--spacing-2xl);
}
.hero-content {
max-width: 900px;
}
.hero h1 {
font-size: 5rem;
font-weight: 700;
margin-bottom: var(--spacing-lg);
line-height: 1.1;
letter-spacing: -0.03em;
color: var(--text-primary);
}
.hero .tagline {
font-size: 1.5rem;
color: var(--accent-blue);
margin-bottom: var(--spacing-lg);
font-weight: 500;
letter-spacing: -0.01em;
}
.hero p {
font-size: 1.15rem;
color: var(--text-secondary);
max-width: 650px;
margin-bottom: var(--spacing-xl);
line-height: 1.7;
}
.cta-button {
display: inline-flex;
align-items: center;
gap: 0.75rem;
padding: 1rem var(--spacing-lg);
background: var(--accent-blue);
color: white;
text-decoration: none;
border-radius: 6px;
font-weight: 500;
font-size: 1rem;
transition: all 0.2s;
border: 1px solid var(--accent-blue);
cursor: pointer;
}
.cta-button:hover {
background: #1d4ed8;
transform: translateY(-1px);
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}
.cta-button:disabled {
opacity: 0.6;
cursor: not-allowed;
transform: none;
}
.cta-button::after {
content: '→';
font-size: 1.2rem;
}
/* Loading spinner */
.button-spinner {
display: inline-block;
width: 14px;
height: 14px;
border: 2px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
border-top-color: white;
animation: spin 0.6s linear infinite;
}
@keyframes spin {
to { transform: rotate(360deg); }
}
/* Micro-interactions - Fade in animations */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes fadeIn {
from {
opacity: 0;
}
to {
opacity: 1;
}
}
/* Elements that animate on scroll */
.animate-on-scroll {
opacity: 0;
}
.animate-on-scroll.animated {
animation: fadeInUp 0.6s ease forwards;
}
/* Stagger animation delays for trust badges */
.trust-badge:nth-child(1) { animation-delay: 0.1s; }
.trust-badge:nth-child(2) { animation-delay: 0.2s; }
.trust-badge:nth-child(3) { animation-delay: 0.3s; }
.trust-badge:nth-child(4) { animation-delay: 0.4s; }
/* Enhanced service card hover with glow */
.service-card {
position: relative;
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 12px;
opacity: 0;
transition: opacity 0.3s ease;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
pointer-events: none;
}
.service-card:hover::before {
opacity: 1;
}
/* Scroll to top button */
.scroll-to-top {
position: fixed;
bottom: 2rem;
right: 2rem;
width: 50px;
height: 50px;
background: var(--accent-blue);
color: white;
border: none;
border-radius: 50%;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
z-index: 99;
}
.scroll-to-top.visible {
opacity: 1;
visibility: visible;
}
.scroll-to-top:hover {
background: #1d4ed8;
transform: translateY(-3px);
box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}
.scroll-to-top svg {
width: 24px;
height: 24px;
stroke: white;
}
/* Sticky Mobile CTA */
.sticky-mobile-cta {
position: fixed;
bottom: 0;
left: 0;
right: 0;
padding: 1rem;
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-top: 1px solid var(--border);
box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
z-index: 98;
opacity: 0;
visibility: hidden;
transform: translateY(100%);
transition: all 0.3s ease;
display: none;
}
.sticky-mobile-cta.visible {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
.sticky-mobile-cta .cta-button {
width: 100%;
justify-content: center;
padding: 1rem;
font-size: 1.05rem;
margin: 0;
}
/* Section Styles */
section {
padding: 8rem 0;
position: relative;
}
.section-header {
margin-bottom: 5rem;
}
.section-header h2 {
font-size: 3rem;
margin-bottom: 1rem;
color: var(--text-primary);
font-weight: 700;
letter-spacing: -0.02em;
}
.section-header p {
font-size: 1.15rem;
color: var(--text-secondary);
}
/* Services Grid */
.services-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 2rem;
}
.service-card {
background: var(--bg-card);
padding: 3rem;
border-radius: 12px;
border: 1px solid var(--border);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
text-decoration: none;
color: inherit;
display: block;
cursor: pointer;
}
.service-card::after {
content: '';
position: absolute;
bottom: 0;
right: 0;
width: 120px;
height: 120px;
background: radial-gradient(circle at center, rgba(37, 99, 235, 0.05), transparent 70%);
border-radius: 50%;
transform: translate(30%, 30%);
transition: all 0.3s ease;
}
.card-arrow {
position: absolute;
bottom: 2rem;
right: 2rem;
font-size: 1.5rem;
color: var(--accent-blue);
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
}
.service-card:hover .card-arrow {
opacity: 1;
transform: translateX(0);
}
.service-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 2px;
background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease;
}
.service-card:hover::before {
transform: scaleX(1);
}
.service-card:hover {
border-color: rgba(37, 99, 235, 0.2);
transform: translateY(-4px);
box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.service-number {
font-size: 0.875rem;
color: var(--accent-blue);
font-weight: 600;
margin-bottom: 1.5rem;
letter-spacing: 0.05em;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 1rem;
color: var(--text-primary);
font-weight: 600;
letter-spacing: -0.01em;
}
.service-card p {
color: var(--text-secondary);
line-height: 1.7;
font-size: 1rem;
}
/* About Section */
#about {
background: var(--bg-secondary);
}
.about-grid {
display: grid;
grid-template-columns: 1fr;
gap: var(--spacing-2xl);
align-items: start;
}
.about-content h2 {
font-size: 3rem;
font-weight: 700;
margin-bottom: var(--spacing-lg);
line-height: 1.2;
letter-spacing: -0.02em;
}
.about-content p {
font-size: 1.125rem;
color: var(--text-secondary);
line-height: 1.8;
margin-bottom: var(--spacing-lg);
}
.founders-grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-lg);
}
.founder-card {
background: var(--bg-card);
padding: var(--spacing-lg);
border-radius: 16px;
border: 1px solid var(--border);
}
.founder-card h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: var(--spacing-sm);
}
.founder-card .title {
color: var(--accent-blue);
font-size: 0.95rem;
font-weight: 500;
margin-bottom: var(--spacing-md);
}
.founder-card ul {
list-style: none;
}
.founder-card li {
display: flex;
align-items: center;
gap: 0.75rem;
padding: 0.75rem 0;
color: var(--text-secondary);
font-size: 0.95rem;
}
.founder-card li svg {
color: var(--accent-blue);
flex-shrink: 0;
}
/* FAQ Section */
#faq {
background: var(--bg-light);
}
.faq-grid {
max-width: 100%;
}
.faq-item {
background: var(--bg-card);
padding: 0;
border-radius: 12px;
border: 1px solid var(--border);
margin-bottom: var(--spacing-lg);
overflow: hidden;
transition: all 0.3s ease;
}
.faq-item:last-child {
margin-bottom: 0;
}
.faq-item:hover {
border-color: rgba(37, 99, 235, 0.2);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
.faq-question {
display: flex;
justify-content: space-between;
align-items: center;
width: 100%;
padding: var(--spacing-lg);
background: transparent;
border: none;
cursor: pointer;
text-align: left;
transition: background 0.2s ease;
}
.faq-question:hover {
background: var(--bg-secondary);
}
.faq-item h3 {
font-size: 1.25rem;
font-weight: 600;
margin: 0;
color: var(--text-primary);
padding-right: var(--spacing-md);
}
.faq-icon {
flex-shrink: 0;
width: 24px;
height: 24px;
color: var(--accent-blue);
transition: transform 0.3s ease;
}
.faq-item.active .faq-icon {
transform: rotate(180deg);
}
.faq-answer {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
max-height: 500px;
}
.faq-answer p {
padding: 0 var(--spacing-lg) var(--spacing-lg);
color: var(--text-secondary);
line-height: 1.8;
margin: 0;
}
/* Contact Section */
#contact {
background: var(--bg-secondary);
padding: 6rem 0;
}
.contact-section {
text-align: center;
max-width: 700px;
margin: 0 auto;
}
.contact-section h2 {
font-size: 3rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
}
.contact-section p {
font-size: 1.25rem;
color: var(--text-secondary);
margin-bottom: var(--spacing-lg);
}
/* Modal */
.modal {
display: none;
position: fixed;
z-index: 1000;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(4px);
}
.modal-content {
background-color: var(--bg-light);
margin: 5% auto;
padding: var(--spacing-xl);
border-radius: 16px;
max-width: 600px;
width: 90%;
position: relative;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: slideDown 0.3s ease;
}
@keyframes slideDown {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.modal-close {
color: var(--text-secondary);
position: absolute;
top: 1.5rem;
right: 1.5rem;
font-size: 2rem;
font-weight: 300;
cursor: pointer;
transition: color 0.3s ease;
line-height: 1;
background: transparent;
border: none;
}
.modal-close:hover,
.modal-close:focus {
color: var(--text-primary);
}
.modal-content h2 {
margin-bottom: var(--spacing-sm);
color: var(--text-primary);
}
.modal-content > p {
margin-bottom: var(--spacing-lg);
color: var(--text-secondary);
}
.contact-form {
max-width: 100%;
}
.form-group {
margin-bottom: 1.5rem;
text-align: left;
}
.form-group label {
display: block;
margin-bottom: var(--spacing-sm);
font-weight: 500;
color: var(--text-primary);
font-size: 0.95rem;
}
.form-group input,
.form-group textarea {
width: 100%;
padding: 0.875rem var(--spacing-md);
border: 1px solid var(--border);
border-radius: 6px;
font-size: 1rem;
font-family: inherit;
transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-blue);
box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
border-color: #dc2626;
}
/* Real-time validation styles */
.form-group input.valid {
border-color: #10b981;
background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2310b981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
background-repeat: no-repeat;
background-position: right 12px center;
padding-right: 40px;
}
.form-group input.invalid {
border-color: #dc2626;
}
.form-error {
display: none;
color: #dc2626;
font-size: 0.875rem;
margin-top: 0.25rem;
}
.form-error.show {
display: block;
}
.form-submit {
width: 100%;
}
.form-message {
margin-top: var(--spacing-md);
padding: var(--spacing-md);
border-radius: 6px;
text-align: center;
display: none;
}
.form-message.show {
display: block;
}
.form-message.success {
background: #d1fae5;
color: #065f46;
border: 1px solid #6ee7b7;
}
.form-message.error {
background: #fee2e2;
color: #991b1b;
border: 1px solid #fca5a5;
}
/* Responsive */
@media (max-width: 768px) {
.nav-container {
padding: 0 1.5rem;
}
.container {
padding: 0 1.5rem;
}
.main-content .container {
padding: 0;
}
.main-content {
padding: 6rem 1.5rem 3rem;
}
.nav-links {
display: none;
}
.hamburger {
display: flex;
}
.mobile-menu {
display: block;
}
.menu-overlay {
display: block;
}
.hero h1 {
font-size: 3rem;
}
.hero .tagline {
font-size: 1.25rem;
}
.section-header h2 {
font-size: 2.5rem;
}
.services-grid {
grid-template-columns: 1fr;
}
.about-grid {
grid-template-columns: 1fr;
gap: var(--spacing-lg);
}
.founders-grid {
grid-template-columns: 1fr;
}
.trust-badges {
grid-template-columns: repeat(2, 1fr);
gap: var(--spacing-md);
}
.scroll-to-top {
bottom: 1.5rem;
right: 1.5rem;
width: 45px;
height: 45px;
}
.sticky-mobile-cta {
display: block;
}
.roi-step {
flex-direction: column;
gap: 1rem;
}
.comparison-table {
font-size: 0.85rem;
}
.comparison-table th,
.comparison-table td {
padding: 0.5rem 0.35rem;
font-size: 0.8rem;
}
.comparison-table .column-subtitle,
.comparison-table .note {
font-size: 0.7rem;
}
.comparison-table table {
min-width: 100%;
}
}
@media (max-width: 480px) {
.hero h1 {
font-size: 2.5rem;
}
.section-header h2 {
font-size: 2rem;
}
.trust-badges {
grid-template-columns: 1fr;
}
.comparison-table table {
min-width: 550px;
}
.comparison-table th,
.comparison-table td {
padding: 0.4rem 0.25rem;
font-size: 0.75rem;
}
.comparison-table .column-subtitle {
display: none;
}
.comparison-table .note {
font-size: 0.65rem;
}
}

/* International phone input styling */
.iti {
width: 100%;
}
.iti__flag-container {
padding: 0 !important;
}
.iti__selected-flag {
padding: 0 8px !important;
}
.iti__country-list {
max-height: 200px;
}
input.valid {
border-color: #10b981 !important;
}
input.invalid {
border-color: #ef4444 !important;
}
.form-error {
display: none;
color: #ef4444;
font-size: 0.875rem;
margin-top: 0.25rem;
}
.form-error.show {
display: block;
}

/* ========================================
   SERVICES PAGE SPECIFIC STYLES
   ======================================== */

/* Main Content */
.main-content {
min-height: 100vh;
padding: 8rem var(--spacing-lg) var(--spacing-2xl);
}

/* Page Header */
.page-header {
text-align: center;
margin-bottom: 5rem;
padding-top: var(--spacing-lg);
}

.page-header h1 {
font-size: 3rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}

.page-header .subtitle {
font-size: 1.25rem;
color: var(--text-secondary);
max-width: 700px;
margin: 0 auto;
}

/* Service Sections */
.service-section {
margin-bottom: 6rem;
padding: var(--spacing-xl);
background: var(--bg-secondary);
border-radius: 16px;
border: 1px solid var(--border);
}

.section-header {
margin-bottom: 2.5rem;
}

.service-number {
display: inline-block;
background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
color: white;
font-weight: 700;
font-size: 0.875rem;
padding: var(--spacing-sm) var(--spacing-md);
border-radius: 50px;
margin-bottom: var(--spacing-md);
}

.section-header h2 {
font-size: 2.5rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}

.section-intro {
font-size: 1.125rem;
color: var(--text-secondary);
line-height: 1.7;
max-width: 800px;
}

.service-content {
background: white;
padding: var(--spacing-lg);
border-radius: 12px;
border: 1px solid var(--border);
margin-bottom: var(--spacing-lg);
}

.service-content:last-of-type {
margin-bottom: 0;
}

.service-content h3 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: var(--text-primary);
}

.service-goal {
background: #fef3c7;
border-left: 4px solid #f59e0b;
padding: var(--spacing-md);
margin-bottom: 1.5rem;
border-radius: 6px;
font-size: 0.95rem;
color: var(--text-primary);
}

.service-features {
list-style: none;
padding: 0;
}

.service-features li {
padding: 0.875rem 0;
border-bottom: 1px solid var(--border);
font-size: 1rem;
line-height: 1.6;
color: var(--text-primary);
}

.service-features li:last-child {
border-bottom: none;
}

.service-features li strong {
color: var(--accent-blue);
font-weight: 600;
}

/* Outcome Badges */
.outcome-badges {
display: flex;
flex-wrap: wrap;
gap: 1rem;
margin: 1.5rem 0;
}

.outcome-badge {
display: inline-flex;
align-items: center;
gap: 0.5rem;
padding: 0.75rem 1.25rem;
background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
border: 1px solid rgba(37, 99, 235, 0.2);
border-radius: 8px;
font-size: 0.95rem;
font-weight: 500;
color: var(--accent-blue);
}

/* ROI Steps */
.roi-steps {
margin-top: 2rem;
}

.roi-step {
display: flex;
gap: 1.5rem;
margin-bottom: 2rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border);
}

.roi-step:last-child {
border-bottom: none;
margin-bottom: 0;
padding-bottom: 0;
}

.roi-step-no-number {
margin-bottom: 2rem;
}

.roi-step-no-number:last-child {
margin-bottom: 0;
}

.step-number {
flex-shrink: 0;
width: 48px;
height: 48px;
background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 1.25rem;
font-weight: 700;
}

.step-content {
flex: 1;
}

.step-content h4 {
font-size: 1.25rem;
margin-bottom: 0.75rem;
color: var(--text-primary);
font-weight: 600;
}

.step-content p {
margin-bottom: 0.75rem;
color: var(--text-secondary);
line-height: 1.7;
}

.step-content ul {
list-style: none;
padding: 0;
margin-top: 1rem;
}

.step-content ul li {
padding: 0.5rem 0;
padding-left: 1.5rem;
position: relative;
color: var(--text-secondary);
}

.step-content ul li::before {
content: '•';
position: absolute;
left: 0;
color: var(--accent-blue);
font-weight: bold;
}

/* Comparison Table */
.comparison-table {
overflow-x: auto;
margin-top: 1.5rem;
-webkit-overflow-scrolling: touch;
}

.comparison-table::-webkit-scrollbar {
height: 8px;
}

.comparison-table::-webkit-scrollbar-track {
background: var(--bg-secondary);
border-radius: 4px;
}

.comparison-table::-webkit-scrollbar-thumb {
background: var(--accent-blue);
border-radius: 4px;
}

.comparison-table table {
width: 100%;
min-width: 600px;
border-collapse: collapse;
background: var(--bg-card);
border-radius: 12px;
overflow: hidden;
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.comparison-table thead {
background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
color: white;
}

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

.comparison-table .column-subtitle {
display: block;
font-size: 0.85rem;
font-weight: 400;
margin-top: 0.25rem;
opacity: 0.9;
}

.comparison-table td {
padding: 1rem;
border-bottom: 1px solid var(--border);
}

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

.comparison-table .metric-name {
font-weight: 600;
color: var(--text-primary);
}

.comparison-table .pain-column {
background: rgba(239, 68, 68, 0.05);
}

.comparison-table .gain-column {
background: rgba(34, 197, 94, 0.05);
}

.comparison-table .gain-highlight {
background: rgba(34, 197, 94, 0.15);
color: #16a34a;
}

.comparison-table .note {
display: block;
font-size: 0.85rem;
color: var(--text-secondary);
font-weight: 400;
margin-top: 0.25rem;
font-style: italic;
}

.comparison-table .highlight-row {
background: var(--bg-secondary);
}

.comparison-table .highlight-row td {
padding: 1.5rem 1rem;
font-size: 1.05rem;
}

/* Pricing Grid */
.pricing-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
margin-top: 1.5rem;
}

.pricing-factor {
background: white;
padding: 1.5rem;
border-radius: 10px;
border: 1px solid var(--border);
}

.pricing-factor h4 {
font-size: 1.125rem;
font-weight: 700;
margin-bottom: var(--spacing-md);
color: var(--accent-blue);
}

.pricing-factor ul {
list-style: none;
padding: 0;
margin: 0;
}

.pricing-factor ul li {
padding: var(--spacing-sm) 0;
font-size: 0.925rem;
color: var(--text-primary);
line-height: 1.5;
}

.pricing-factor ul li strong {
font-weight: 600;
}

/* Empty State (for Coming Soon sections) */
.empty-state {
text-align: center;
padding: var(--spacing-2xl) var(--spacing-lg);
}

.empty-state-icon {
font-size: 3rem;
margin-bottom: var(--spacing-lg);
}

.empty-state h4 {
font-size: 1.5rem;
font-weight: 600;
margin-bottom: var(--spacing-md);
color: var(--text-primary);
}

.empty-state p {
font-size: 1.05rem;
color: var(--text-secondary);
line-height: 1.7;
max-width: 600px;
margin: 0 auto var(--spacing-lg);
}

/* CTA Section */
.cta-section {
text-align: center;
margin-top: var(--spacing-2xl);
padding: var(--spacing-xl);
background: var(--bg-secondary);
border-radius: 16px;
border: 1px solid var(--border);
}

.cta-text {
font-size: 1.1rem;
color: var(--text-secondary);
margin-bottom: var(--spacing-lg);
}

/* Responsive adjustments for services page */
@media (max-width: 768px) {
.page-header h1 {
font-size: 2.25rem;
}
.section-header h2 {
font-size: 1.75rem;
}
.service-section {
padding: var(--spacing-lg);
}
.pricing-grid {
grid-template-columns: 1fr;
}
}

/* Footer */
footer {
padding: var(--spacing-xl) 0;
}

footer .container {
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: var(--spacing-md);
}

footer p {
margin: 0;
color: var(--text-secondary);
}

@media (max-width: 640px) {
footer .container {
flex-direction: column;
text-align: center;
}
}
