﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
}

:root {
    /* Professional Corporate Color Palette */
    --primary-color: #1e40af;
    --primary-light: #3b82f6;
    --primary-dark: #1e3a8a;
    --secondary-color: #059669;
    --secondary-light: #10b981;
    --accent-color: #dc2626;
    --accent-gold: #d97706;
    --accent-navy: #1e293b;
    --accent-teal: #0f766e;
    
    /* Professional Gradients */
    --gradient-primary: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    --gradient-secondary: linear-gradient(135deg, #059669 0%, #047857 100%);
    --gradient-accent: linear-gradient(135deg, #1e40af 0%, #059669 100%);
    --gradient-warm: linear-gradient(135deg, #d97706 0%, #dc2626 100%);
    --gradient-cool: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Neutral Colors */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Merriweather', serif;
    
    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
    --border-radius: 12px;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    font-weight: 400;
}

/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

p {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.7;
}

/* Important Keywords Styling - Better Contrast */
.keyword-highlight {
    font-weight: 600;
    color: var(--secondary-light); /* Bright yellow/gold for contrast */
}

/* For sections with dark backgrounds */
.hero .keyword-highlight,
.not-a-tool-section .keyword-highlight,
.solution-highlight .keyword-highlight {
    color: var(--secondary-light); /* Bright yellow on dark backgrounds */
}

/* For sections with light backgrounds */
.problem-section .keyword-highlight,
.results .keyword-highlight {
    color: var(--primary-color); /* Blue on light backgrounds */
}

strong, b {
    font-weight: 600;
    color: inherit; /* Use parent color instead of forcing gray */
}

/* Strong text in dark sections should be white */
.hero strong,
.not-a-tool-section strong,
.solution-highlight strong {
    color: var(--white);
    font-weight: 700;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 10px 10px; */
}

.nav-brand .logo {
    height: 70px;
    width: 70px;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 25px;
}

.nav-link:hover {
    color: var(--primary-color);
    background: rgba(99, 102, 241, 0.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-toggle {
    display: none;  
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
/* Modern Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 50%, #0f172a 100%);
    padding: 110px 0 80px;
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: heroFloat 20s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #3b82f6, #10b981);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, #10b981, #d97706);
    top: 60%;
    right: -5%;
    animation-delay: -7s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #d97706, #dc2626);
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-30px) rotate(120deg); }
    66% { transform: translateY(15px) rotate(240deg); }
}



/* Enhanced Premium Buttons */
.btn {
    display: inline-block;
    padding: 20px 40px; /* Increased from 18px 35px */
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700; /* Increased from 600 */
    font-size: 1.05rem; /* Increased from 1rem */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px; /* Added for premium feel */
    text-transform: none; /* Keep natural casing */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s; /* Increased duration */
}



.btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.35); /* Enhanced shadow */
    border: 2px solid transparent;
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-accent);
    border-radius: 50px;
    z-index: -1;
    transition: all 0.3s ease;
}
.hero-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px 48px;
  background: linear-gradient(135deg, #00c9a7, #0084ff);
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  border-radius: 60px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: 0 14px 35px rgba(0, 132, 255, 0.35);
  position: relative;
  overflow: hidden;
}

.hero-main-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 22px 45px rgba(0, 132, 255, 0.5);
}

.hero-main-btn:active {
  transform: scale(0.98);
}

.hero-main-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.18);
  transform: skewX(-25deg);
  transition: 0.6s;
}

.hero-main-btn:hover::before {
  left: 120%;
}


.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white); /* Increased border width */
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-4px) scale(1.05); /* Enhanced hover effect */
    box-shadow: 0 18px 40px rgba(255, 255, 255, 0.4);
    border-color: var(--white);
}

/* Section Styles - Enhanced Premium Spacing */
section {
    padding: 120px 0; /* Increased from 80px for more premium feel */
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3.2rem; /* Increased from 2.5rem for more impact */
    font-weight: 800; /* Increased from 600 for bolder appearance */
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 30px; /* Increased spacing */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-description {
    font-size: 1.2rem; /* Increased from 1.1rem */
    color: var(--gray-600);
    text-align: center;
    margin-bottom: 60px; /* Increased from 50px */
    max-width: 700px; /* Increased from 600px */
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Strategic CTA Styles */
.section-cta {
    text-align: center;
    margin-top: 60px;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
    border-radius: 25px;
    border: 2px solid rgba(30, 64, 175, 0.1);
    position: relative;
    overflow: hidden;
}

.section-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
}

.btn-large {
    padding: 22px 45px; /* Larger than regular buttons */
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(30, 64, 175, 0.25);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-large:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 45px rgba(30, 64, 175, 0.35);
}

.cta-subtext {
    margin-top: 15px;
    font-size: 0.95rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Services Section - Enhanced Premium Styling */
.services {
    background: var(--gradient-cool);
    position: relative;
    overflow: hidden;
    padding: 120px 0; /* Consistent with new section padding */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.services .container {
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px; /* Increased from 30px */
    margin-top: 60px; /* Increased from 50px */
}

.service-card {
    background: var(--white);
    padding: 50px 35px; /* Increased from 40px 30px */
    border-radius: 25px; /* Increased from 20px */
    text-align: center;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12); /* Enhanced shadow */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px; /* Increased from 4px */
    background: var(--gradient-primary);
}

.service-card:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.service-card:nth-child(3)::before {
    background: var(--gradient-accent);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.03); /* Enhanced hover effect */
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.25);
}

.service-icon {
    font-size: 4rem; /* Increased from 3.5rem */
    margin-bottom: 30px; /* Increased from 25px */
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15)); /* Enhanced shadow */
    color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:nth-child(1) .service-icon {
    color: var(--primary-color);
}

.service-card:nth-child(2) .service-icon {
    color: var(--secondary-color);
}

.service-card:nth-child(3) .service-icon {
    color: var(--accent-gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem; /* Increased from 1.6rem */
    font-weight: 700; /* Increased from 600 */
    color: var(--gray-900);
    margin-bottom: 20px; /* Increased from 15px */
    line-height: 1.3;
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem; /* Increased from 1.05rem */
}

/* Process Section - Enhanced Premium Styling */
.process {
    background: var(--white);
    position: relative;
    padding: 120px 0; /* Consistent with new section padding */
}

.process::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px; /* Increased from 300px */
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
    filter: blur(120px); /* Increased blur */
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 40px 25px;
    border-radius: 25px;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(30, 64, 175, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.step-number {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    margin: 0 auto 25px;
    box-shadow: 0 10px 30px rgba(30, 64, 175, 0.35);
    position: relative;
    flex-shrink: 0;
}

.process-step:nth-child(2) .step-number {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.35);
}

.process-step:nth-child(3) .step-number {
    background: var(--gradient-warm);
    box-shadow: 0 10px 30px rgba(217, 119, 6, 0.35);
}

.process-step:nth-child(4) .step-number {
    background: linear-gradient(135deg, #1e293b 0%, #0f766e 100%);
    box-shadow: 0 10px 30px rgba(30, 41, 59, 0.35);
}

.step-number::before {
    content: '';
    position: absolute;
    top: -6px; /* Increased from -5px */
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: -1;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.15); opacity: 0.1; } /* Increased scale */
}

.process-step h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* Increased from 1.4rem */
    font-weight: 700; /* Increased from 600 */
    color: var(--gray-900);
    margin-bottom: 18px; /* Increased from 15px */
    line-height: 1.3;
}

.process-step p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.1rem; /* Increased from 1.05rem */
}

/* Pricing Section - Enhanced Premium Styling */
.pricing {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
    padding: 120px 0; /* Consistent with new section padding */
}

.pricing::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.pricing .section-title {
    color: var(--white);
    font-size: 3.2rem; /* Consistent with enhanced titles */
    font-weight: 800;
    margin-bottom: 30px;
}

.pricing .container {
    position: relative;
    z-index: 2;
}

.pricing-content {
    display: flex;
    justify-content: center;
    margin-top: 60px; /* Increased from 50px */
}

.pricing-card {
    background: rgba(255, 255, 255, 0.98); /* Increased opacity */
    backdrop-filter: blur(25px); /* Enhanced blur */
    padding: 70px 60px; /* Increased from 60px 50px */
    border-radius: 30px; /* Increased from 25px */
    text-align: center;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25); /* Enhanced shadow */
    max-width: 500px; /* Increased from 450px */
    width: 100%;
    border: 2px solid rgba(255, 255, 255, 0.4); /* Enhanced border */
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.3);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px; /* Increased from 5px */
    background: var(--gradient-secondary);
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* Increased from 1.4rem */
    color: var(--gray-600);
    margin-bottom: 25px; /* Increased from 20px */
    text-transform: uppercase;
    letter-spacing: 1.5px; /* Increased */
    font-weight: 700; /* Added weight */
}

.price {
    font-family: var(--font-heading);
    font-size: 4.5rem; /* Increased from 4rem */
    font-weight: 800; /* Increased from 700 */
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px; /* Increased from 25px */
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-card p {
    color: var(--gray-600);
    margin-bottom: 40px; /* Increased from 35px */
    line-height: 1.8; /* Increased from 1.7 */
    font-size: 1.15rem; /* Increased from 1.1rem */
}

.pricing-card .btn-primary {
    background: var(--gradient-secondary);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.35); /* Enhanced shadow */
    padding: 22px 45px; /* Larger button */
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-card .btn-primary {
    background: var(--gradient-secondary);
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

/* Problem Section - Enhanced Premium Styling */
.problem-section {
    background: var(--white);
    padding: 120px 0; /* Consistent with new section padding */
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Increased min width */
    gap: 40px; /* Increased from 30px */
    margin-top: 50px; /* Increased from 40px */
}

.problem-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px; /* Increased from 30px 25px */
    border-radius: 20px; /* Increased from 15px */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    transition: all 0.3s ease;
    border: 2px solid rgba(220, 38, 38, 0.08); /* Enhanced border */
}

.problem-card:hover {
    transform: translateY(-8px); /* Increased from -5px */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.problem-icon {
    font-size: 3rem; /* Increased from 2.5rem */
    color: var(--accent-color);
    margin-bottom: 25px; /* Increased from 20px */
}

.problem-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Increased from 1.3rem */
    font-weight: 700; /* Increased from 600 */
    color: var(--gray-900);
    margin-bottom: 18px; /* Increased from 15px */
    line-height: 1.3;
}

.solution-section {
    text-align: center;
    margin-top: 80px; /* Increased from 60px */
    padding: 60px 40px; /* Increased from 50px 30px */
    background: var(--gradient-cool);
    border-radius: 25px; /* Increased from 20px */
    border: 2px solid rgba(30, 64, 175, 0.1);
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 2.6rem; /* Increased from 2.2rem */
    font-weight: 800; /* Increased from default */
    color: var(--gray-900);
    margin-bottom: 30px; /* Increased from 25px */
    line-height: 1.2;
}

.solution-text {
    font-size: 1.3rem; /* Increased from 1.2rem */
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 35px; /* Increased from 30px */
    max-width: 800px; /* Increased from 700px */
    margin-left: auto;
    margin-right: auto;
}

.solution-highlight {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px 45px; /* Increased from 25px 35px */
    border-radius: 20px; /* Increased from 15px */
    display: inline-block;
    margin-top: 25px; /* Increased from 20px */
    box-shadow: 0 15px 35px rgba(30, 64, 175, 0.25);
}

.solution-highlight p {
    margin: 0;
    font-size: 1.3rem; /* Increased from 1.2rem */
    font-weight: 700; /* Increased from 600 */
    line-height: 1.4;
}

/* Not a Tool Section */
/* Not a Tool Section - Enhanced Premium Styling */
.not-a-tool-section {
    text-align: center;
    margin-top: 60px; /* Increased from 50px */
    padding: 50px 40px; /* Increased from 40px 30px */
    background: var(--gradient-primary);
    border-radius: 25px; /* Increased from 20px */
    color: var(--white);
    box-shadow: 0 20px 40px rgba(30, 64, 175, 0.25);
    position: relative;
    overflow: hidden;
}

.not-a-tool-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%23ffffff" opacity="0.1"/><circle cx="40" cy="80" r="2" fill="%23ffffff" opacity="0.1"/></svg>');
}

.tool-title {
    font-family: var(--font-heading);
    font-size: 2.2rem; /* Increased from 1.8rem */
    margin-bottom: 25px; /* Increased from 20px */
    font-weight: 800; /* Increased from 700 */
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.tool-text {
    font-size: 1.2rem; /* Increased from 1.1rem */
    line-height: 1.7; /* Increased from 1.6 */
    opacity: 0.95;
    font-weight: 400;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Payment Section */
.payment-section {
    text-align: center;
    margin-top: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.payment-section h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 10px;
}

.payment-section p {
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}
.who-this-is-for {
    background: var(--white);
    padding: var(--section-padding);
}

.target-audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.audience-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 64, 175, 0.1);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.audience-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.audience-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.audience-card p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

/* Services Note */
.services-note {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background: rgba(30, 64, 175, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.services-note p {
    color: var(--gray-700);
    font-size: 1.1rem;
    margin: 0;
}

/* Why Us Section - Enhanced Premium Styling */
.why-us {
    background: var(--gradient-cool);
    padding: 120px 0; /* Consistent with new section padding */
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.why-us .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Increased min width */
    gap: 40px; /* Increased from 30px */
    margin-top: 60px; /* Increased from 50px */
}

.benefit-item {
    background: var(--white);
    padding: 40px 30px; /* Increased from 30px 25px */
    border-radius: 20px; /* Increased from 15px */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    transition: all 0.4s ease;
    border: 2px solid rgba(5, 150, 105, 0.08); /* Enhanced border */
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

.benefit-item:hover {
    transform: translateY(-8px); /* Increased from -5px */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    font-size: 3rem; /* Increased from 2.5rem */
    color: var(--secondary-color);
    margin-bottom: 25px; /* Increased from 20px */
    filter: drop-shadow(0 4px 8px rgba(5, 150, 105, 0.2));
}

.benefit-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Increased from 1.3rem */
    font-weight: 700; /* Increased from 600 */
    color: var(--gray-900);
    margin-bottom: 18px; /* Increased from 15px */
    line-height: 1.3;
}

.benefit-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Results Section - Enhanced Premium Styling */
.results {
    background: var(--white);
    padding: 120px 0; /* Consistent with new section padding */
    position: relative;
}

.results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="triangles" width="30" height="30" patternUnits="userSpaceOnUse"><polygon points="15,5 25,20 5,20" fill="%23d97706" opacity="0.05"/></pattern></defs><rect width="100%" height="100%" fill="url(%23triangles)"/></svg>');
}

.results .container {
    position: relative;
    z-index: 2;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); /* Increased min width */
    gap: 40px; /* Increased from 30px */
    margin-top: 60px; /* Increased from 50px */
}

.result-item {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 30px; /* Increased from 30px 25px */
    border-radius: 20px; /* Increased from 15px */
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1); /* Enhanced shadow */
    transition: all 0.4s ease;
    border: 2px solid rgba(217, 119, 6, 0.08); /* Enhanced border */
    position: relative;
    overflow: hidden;
}

.result-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-warm);
}

.result-item:hover {
    transform: translateY(-8px); /* Increased from -5px */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.result-icon {
    font-size: 3rem; /* Increased from 2.5rem */
    color: var(--accent-gold);
    margin-bottom: 25px; /* Increased from 20px */
    filter: drop-shadow(0 4px 8px rgba(217, 119, 6, 0.2));
}

.result-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Increased from 1.3rem */
    font-weight: 700; /* Increased from 600 */
    color: var(--gray-900);
    margin-bottom: 18px; /* Increased from 15px */
    line-height: 1.3;
}

.result-item p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* About Section - Enhanced Premium Styling */
.about {
    background: var(--white);
    padding: 120px 0; /* Consistent with new section padding */
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    height: 500px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.03;
    filter: blur(150px);
}

.about .container {
    position: relative;
    z-index: 2;
}

.founder-info {
    display: flex;
    align-items: center;
    gap: 50px; /* Increased from 40px */
    max-width: 900px; /* Increased from 800px */
    margin: 0 auto;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 50px 40px; /* Added padding */
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(30, 64, 175, 0.05);
}

.founder-image {
    text-align: center;
    flex-shrink: 0;
}

.founder-photo {
    width: 220px; /* Increased from 200px */
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--primary-color); /* Increased from 4px */
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.25); /* Enhanced shadow */
    transition: all 0.3s ease;
}

.founder-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(30, 64, 175, 0.35);
}

.founder-caption {
    margin-top: 18px; /* Increased from 15px */
    font-weight: 700; /* Increased from 600 */
    color: var(--gray-700);
    font-size: 1.1rem; /* Increased from 1rem */
    letter-spacing: 0.5px;
}

.founder-text {
    flex: 1;
}

.founder-text p {
    font-size: 1.2rem; /* Increased from 1.1rem */
    color: var(--gray-600);
    line-height: 1.8; /* Increased from 1.7 */
    margin-bottom: 25px; /* Increased from 20px */
    text-align: left;
}

/* CTA Section */
.cta-section {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.cta-section h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* Contact Section Updates */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-method {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.2rem;
    color: #EA4335;
    margin-bottom: 15px;
}

.contact-method h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.contact-method p {
    color: var(--gray-600);
    font-size: 1rem;
}

.contact-link {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 4px;
}

.contact-link:hover {
    color: var(--secondary-color);
    text-decoration: underline;
    transform: translateY(-1px);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 700;
}
.about-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--gray-600);
    line-height: 1.8;
}

/* Contact Section */
.contact {
    background: var(--gradient-cool);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-content {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
}

.form-group {
    margin-bottom: 30px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: var(--font-primary);
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-primary);
}

/* Policies Section */
.policies {
    background: var(--white);
    position: relative;
}

.policies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><defs><pattern id="hexagon" width="60" height="60" patternUnits="userSpaceOnUse"><polygon points="30,5 50,17.5 50,42.5 30,55 10,42.5 10,17.5" fill="none" stroke="%231e40af" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23hexagon)"/></svg>');
}

.policies .container {
    position: relative;
    z-index: 2;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.policy-card {
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    padding: 40px 35px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(30, 64, 175, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.policy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.policy-card:nth-child(2)::before {
    background: var(--gradient-secondary);
}

.policy-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.policy-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.policy-card h3 i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.policy-card p {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}

.footer .container {
    position: relative;
    z-index: 2;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand {
    flex: 1;
    max-width: 400px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    flex-shrink: 0;
}

.footer-brand-text {
    flex: 1;

}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    background: var(--gradient-primary);
    background-clip: text;
    font-weight: 700;
        color: white;
}

.footer-brand p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-400);
    font-size: 1rem;
}

/* Responsive Design - Enhanced for Premium Feel */
@media (max-width: 768px) {
    .nav-brand .logo {
        height: 50px;
        width: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 50px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Enhanced Mobile Spacing */
    section {
        padding: 80px 0;
    }

    .hero {
        padding: 90px 0 60px;
    }

    .hero-primary-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-card {
        padding: 25px 20px;
        max-width: 100%;
    }

    .card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .section-title {
        font-size: 2.4rem;
        font-weight: 800;
        margin-bottom: 25px;
    }

    .section-description {
        font-size: 1.15rem;
        margin-bottom: 50px;
    }

    .problems-grid,
    .target-audience-grid,
    .services-grid,
    .process-steps,
    .benefits-grid,
    .results-grid {
        grid-template-columns: 1fr;
        gap: 35px; /* Increased from default */
    }

    /* Enhanced Mobile Cards */
    .service-card,
    .process-step,
    .benefit-item,
    .result-item,
    .problem-card {
        padding: 35px 25px; /* Increased padding */
        margin-bottom: 20px;
    }

    .founder-info {
        flex-direction: column;
        text-align: center;
        gap: 35px; /* Increased from 30px */
        padding: 40px 30px; /* Maintain premium padding */
    }

    .founder-photo {
        width: 180px; /* Increased from 150px */
        height: 180px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .contact-form {
        padding: 45px 35px; /* Increased from 40px 30px */
    }

    .section-cta {
        padding: 40px 25px; /* Maintain premium CTA padding */
        margin-top: 50px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 35px; /* Increased from 30px */
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 18px;
    }

    section {
        padding: 70px 0;
    }

    .hero {
        padding: 80px 0 50px;
    }

    .hero-card {
        padding: 20px 15px;
    }

    .card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.68rem;
    }

    .card-header h3 {
        font-size: 1.3rem;
    }

    .card-header p {
        font-size: 0.88rem;
    }

    .card-testimonial p {
        font-size: 0.85rem;
    }

    .hero-primary-btn {
        font-size: 0.95rem;
        padding: 14px 24px;
    }

    .section-title {
        font-size: 2.2rem;
        font-weight: 800;
        margin-bottom: 22px;
    }

    .section-description {
        font-size: 1.1rem;
        margin-bottom: 45px;
    }

    .founder-photo {
        width: 140px;
        height: 140px;
    }

    .audience-card,
    .benefit-item,
    .result-item,
    .contact-method,
    .service-card,
    .process-step,
    .problem-card {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .section-cta {
        padding: 35px 20px;
        margin-top: 45px;
    }

    .btn-large {
        padding: 18px 35px;
        font-size: 1.05rem;
    }

    /* Enhanced mobile typography */
    .service-card h3,
    .process-step h3,
    .benefit-item h3,
    .result-item h3 {
        font-size: 1.4rem;
        font-weight: 700;
    }

    .solution-title {
        font-size: 2.2rem;
        font-weight: 800;
    }

    .tool-title {
        font-size: 1.9rem; /* Increased */
        font-weight: 800;
    }
}

@media (max-width: 360px) {
    .hero-card {
        padding: 16px 12px;
    }

    .card-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }

    .stat-number {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.62rem;
    }

    .nav-brand .logo {
        height: 50px;
        width: 50px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }
    100% {
        background-position: calc(200px + 100%) 0;
    }
}

.service-card,
.process-step,
.pricing-card,
.policy-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) {
    animation: slideInLeft 0.8s ease forwards;
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation: bounceIn 0.8s ease forwards;
    animation-delay: 0.3s;
}

.service-card:nth-child(3) {
    animation: slideInRight 0.8s ease forwards;
    animation-delay: 0.5s;
}

/* Floating elements */
.floating-element {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.floating-element-1 {
    top: 10%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.floating-element-2 {
    top: 60%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: float 8s ease-in-out infinite reverse;
}

.floating-element-3 {
    bottom: 20%;
    left: 20%;
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 20px;
    transform: rotate(45deg);
    animation: float 10s ease-in-out infinite;
}

/* Particle effect */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(30, 64, 175, 0.4);
    border-radius: 50%;
    animation: particleFloat 15s linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; }
.particle:nth-child(3) { left: 30%; animation-delay: 4s; }
.particle:nth-child(4) { left: 40%; animation-delay: 6s; }
.particle:nth-child(5) { left: 50%; animation-delay: 8s; }
.particle:nth-child(6) { left: 60%; animation-delay: 10s; }
.particle:nth-child(7) { left: 70%; animation-delay: 12s; }
.particle:nth-child(8) { left: 80%; animation-delay: 14s; }
.particle:nth-child(9) { left: 90%; animation-delay: 16s; }

/* Morphing background shapes */
@keyframes morph {
    0%, 100% {
        border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

/* Enhanced hover effects */
.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.process-step:hover .step-number {
    transform: scale(1.1) rotate(360deg);
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Scroll reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
}

@media (min-width: 1025px) {
    .hero-layout {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

/* Left Content */
.hero-content-left {
    color: var(--white);
    min-width: 0;
    text-align: center;
}

.hero-value-prop {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    align-items: center;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    justify-content: center;
}

.hero-cta-section {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Right Content - Hero Card */
.hero-content-right {
    display: flex;
    justify-content: center;
    min-width: 0;
}

@media (min-width: 1025px) {
    .hero-content-left {
        text-align: left;
    }

    .hero-value-prop {
        align-items: flex-start;
    }

    .value-item {
        justify-content: flex-start;
    }

    .hero-cta-section {
        align-items: flex-start;
    }
}

.hero-main-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 4.2rem); /* Fluid scaling */
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
    word-break: break-word;
}

.title-line-1,
.title-line-2 {
    display: block;
    color: var(--white);
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 10px;
}

.hero-value-prop {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.value-icon {
    font-size: 1.2rem;
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.hero-cta-section {
    margin-top: 35px;
}






.btn-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}


.cta-note {
    margin-top: 12px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-left: 40px;

}

/* Large Tablets */
@media (max-width: 1024px){
    .cta-note{
        margin-left: 25px;
    }
}

/* Tablets */
@media (max-width: 768px){
    .cta-note{
        margin-left: 0;
        text-align: center;
    }
}

/* Mobile */
@media (max-width: 480px){
    .cta-note{
        margin-left: 0;
        text-align: center;
        font-size: 0.8rem;
    }
}
/* Right Content - Hero Card */
.hero-content-right {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.hero-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    border-radius: 25px;
    padding: 35px 30px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    max-width: 420px;
    min-width: 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
}

.card-header h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
}

.card-header p {
    color: var(--gray-600);
    font-size: 1rem;
    line-height: 1.5;
}

.card-process {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    padding: 25px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
}

.card-step {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    flex-shrink: 0;
}

.step-dot.active {
    background: linear-gradient(135deg, #10b981, #3b82f6);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.card-arrow {
    color: var(--gray-400);
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.card-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat {
    text-align: center;
    padding: 15px 10px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-top: 5px;
}

.card-testimonial {
    background: linear-gradient(135deg, #1e40af, #1e3a8a);
    color: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
}

.card-testimonial p {
    font-style: italic;
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.card-testimonial span {
    font-size: 0.85rem;
    opacity: 0.9;
    font-weight: 500;
}

.wv-testimonial-section{
    padding: 100px 20px;
    background: linear-gradient(135deg,#f7f8fc,#eef2ff);
}

.wv-testimonial-heading{
    text-align: center;
    font-size: 4rem;
    margin-bottom: 60px;
    color: #0d1635;
}

.wv-testimonial-container{
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.wv-testimonial-card{
    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.wv-testimonial-card::before{
    content: "â€œ";
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 8rem;
    color: rgba(37,99,235,0.08);
    font-family: serif;
}

.wv-testimonial-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}

.wv-testimonial-text{
    font-size: 1.05rem;
    line-height: 1.9;
    color: #374151;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    font-style:italic
}

.wv-testimonial-name{
    font-size: 1.15rem;
    color: #111827;
    margin-bottom: 6px;
}

.wv-testimonial-role{
    font-size: 0.95rem;
    color: #2563eb;
    font-weight: 500;
}

/* Tablet */
@media (max-width: 992px){

    .wv-testimonial-container{
        grid-template-columns: repeat(2,1fr);
    }

}

/* Mobile */
@media (max-width: 768px){

    .wv-testimonial-heading{
        font-size: 2.7rem;
    }

    .wv-testimonial-container{
        grid-template-columns: 1fr;
    }

    .wv-testimonial-card{
        padding: 28px;
    }

}


/* ============================================================
   HERO SECTION — Razorpay-style (rz2-*)
   Light/white background, 60/40 split, carousel right side
   ============================================================ */

/* ── Section wrapper ── */
.rz2-hero {
  background: #ffffff;
  width: 100%;
  overflow: hidden;
  font-family: 'Inter', 'Poppins', sans-serif;
}

/* ── Shared container ── */
.rz2-container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ══════════════════════════════════
   TOP SECTION — two-column layout
   ══════════════════════════════════ */
.rz2-main {
  padding: 50px 0 60px;
}

.rz2-layout {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: 64px;
  align-items: center;
}

/* ── LEFT COLUMN ── */
.rz2-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Eyebrow badge */
.rz2-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EFF6FF;
  border: 1px solid #BFDBFE;
  color: #2D6CF6;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.3px;
}
.rz2-eyebrow-icon {
  font-size: 0.75rem;
  color: #2D6CF6;
}

/* Headline */
.rz2-headline {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
}
.rz2-headline-blue {
  display: block;
  color: #2D6CF6;
}
.rz2-headline-dark {
  display: block;
  color: #0A0A0A;
}

/* Subtext */
.rz2-subtext {
  font-size: 1.05rem;
  color: #6B7280;
  line-height: 1.75;
  max-width: 480px;
  margin: 0 0 36px;
  font-weight: 400;
}

/* CTA + arrows row */
.rz2-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.rz2-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background: #2D6CF6;
  color: #ffffff;
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 16px rgba(45,108,246,0.3);
  white-space: nowrap;
}
.rz2-cta-btn:hover {
  background: #1a5ae8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45,108,246,0.4);
}

.rz2-arrow-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #E5E7EB;
  background: #ffffff;
  color: #374151;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.rz2-arrow-btn:hover {
  border-color: #2D6CF6;
  color: #2D6CF6;
  background: #EFF6FF;
}

/* Slide dots */
.rz2-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.rz2-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D1D5DB;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
}
.rz2-dot-active {
  background: #2D6CF6;
  width: 24px;
  border-radius: 4px;
}

/* ── RIGHT COLUMN — Carousel ── */
.rz2-right {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rz2-carousel {
  position: relative;
  width: 100%;
}

/* Slides */
.rz2-slide {
  display: none;
  animation: rz2FadeIn 0.5s ease forwards;
}
.rz2-slide-active {
  display: block;
}
@keyframes rz2FadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Visual wrapper per slide */
.rz2-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

/* ── Decorative background — scattered organic blobs ── */
.rz2-visual::before,
.rz2-visual::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* Large scattered blob — offset top-left, tilted ellipse */
.rz2-visual::before {
  width: 340px;
  height: 260px;
  background: radial-gradient(ellipse at center, #DBEAFE 0%, #EFF6FF 50%, transparent 75%);
  top: 5%;
  left: -30px;
  transform: rotate(-25deg);
  filter: blur(40px);
  opacity: 0.9;
}

/* Smaller blob — bottom-right, different angle */
.rz2-visual::after {
  width: 200px;
  height: 280px;
  background: radial-gradient(ellipse at center, #93C5FD 0%, #BFDBFE 45%, transparent 72%);
  bottom: 8%;
  right: 20px;
  transform: rotate(20deg);
  filter: blur(50px);
  opacity: 0.55;
}

/* Third scattered blob via img-wrap pseudo — mid-left, small */
.rz2-visual .rz2-img-wrap {
  position: relative;
  z-index: 1;
}
.rz2-visual .rz2-img-wrap::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 140px;
  background: radial-gradient(ellipse at center, #BFDBFE 0%, transparent 70%);
  bottom: 30%;
  left: -20px;
  transform: rotate(15deg);
  filter: blur(30px);
  opacity: 0.7;
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
}

/* ── Floating chips ── */
.rz2-chips {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  position: absolute;
  top: 52%;
  right: -12px;
  z-index: 4;
}
.rz2-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #E5E7EB;
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #111827;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
  white-space: nowrap;
  animation: rz2ChipFloat 3s ease-in-out infinite;
}
.rz2-chip:nth-child(2) { animation-delay: -1s; }
.rz2-chip:nth-child(3) { animation-delay: -2s; }
@keyframes rz2ChipFloat {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.rz2-chip-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: #2D6CF6;
  color: #ffffff;
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── Image slot ── */
.rz2-img-wrap {
  position: relative;
  width: 140%;
  min-height: 320px;
  /* No background, no border, no box — image blends into white */
  background: transparent;
  overflow: visible;
  /* Left-edge fade so image blends into white background */
  -webkit-mask-image: linear-gradient(to right, transparent, black 30%);
  mask-image: linear-gradient(to right, transparent, black 30%);
}
.rz2-img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: contain;
  object-position: right center;
  display: block;
  /* No border, no radius, no shadow — pure cutout style */
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
/* Placeholder shown when img src is empty */
.rz2-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #9CA3AF;
  font-size: 0.85rem;
  font-weight: 500;
  background: transparent;
  border-radius: 0;
}
.rz2-img-placeholder i {
  font-size: 2.5rem;
  color: #D1D5DB;
}
/* Hide placeholder once real image loads */
.rz2-img[src]:not([src=""]) + .rz2-img-placeholder {
  display: none;
}

/* ── Animated waveform ── */
.rz2-wave {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  padding: 0 4px;
  justify-content: center;
  width: 100%;
}
.rz2-wave span {
  display: inline-block;
  width: 4px;
  border-radius: 2px;
  background: linear-gradient(180deg, #2D6CF6, #7C3AED);
  animation: rz2Wave 1.2s ease-in-out infinite;
}
.rz2-wave span:nth-child(1)  { height: 12px; animation-delay: 0s; }
.rz2-wave span:nth-child(2)  { height: 22px; animation-delay: 0.1s; }
.rz2-wave span:nth-child(3)  { height: 30px; animation-delay: 0.2s; }
.rz2-wave span:nth-child(4)  { height: 18px; animation-delay: 0.3s; }
.rz2-wave span:nth-child(5)  { height: 28px; animation-delay: 0.4s; }
.rz2-wave span:nth-child(6)  { height: 36px; animation-delay: 0.5s; }
.rz2-wave span:nth-child(7)  { height: 28px; animation-delay: 0.4s; }
.rz2-wave span:nth-child(8)  { height: 18px; animation-delay: 0.3s; }
.rz2-wave span:nth-child(9)  { height: 30px; animation-delay: 0.2s; }
.rz2-wave span:nth-child(10) { height: 22px; animation-delay: 0.1s; }
.rz2-wave span:nth-child(11) { height: 14px; animation-delay: 0s; }
.rz2-wave span:nth-child(12) { height: 8px;  animation-delay: 0.15s; }
@keyframes rz2Wave {
  0%,100% { transform: scaleY(1);   opacity: 0.9; }
  50%      { transform: scaleY(0.4); opacity: 0.5; }
}

/* ── Wide pill input bar ── */
.rz2-pill-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2D6CF6 0%, #7C3AED 100%);
  border-radius: 50px;
  padding: 12px 20px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 20px rgba(45,108,246,0.25);
}
.rz2-pill-plus {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.rz2-pill-input {
  flex: 1;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rz2-pill-star {
  font-size: 1.1rem;
  color: #ffffff;
  flex-shrink: 0;
}

/* ══════════════════════════════════
   BOTTOM STRIP
   ══════════════════════════════════ */
.rz2-strip {
  background: #F3F4F6;
  border-top: 1px solid #E5E7EB;
  padding: 16px 0;
}
.rz2-strip-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rz2-strip-inner::-webkit-scrollbar { display: none; }

.rz2-strip-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #374151;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.rz2-strip-label svg { color: #6B7280; flex-shrink: 0; }

.rz2-strip-pills {
  display: flex;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 2px;
}
.rz2-strip-pills::-webkit-scrollbar { display: none; }

.rz2-strip-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
  font-family: 'Inter', 'Poppins', sans-serif;
}
.rz2-strip-pill:hover {
  border-color: #2D6CF6;
  color: #2D6CF6;
  background: #EFF6FF;
}
.rz2-pill-icon {
  font-size: 0.78rem;
  color: #2D6CF6;
}

/* ══════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════ */

@media (max-width: 1024px) {
  .rz2-layout { gap: 40px; }
  .rz2-chips  { right: -4px; }
}

@media (max-width: 768px) {
  .rz2-main { padding: 80px 0 48px; }
  .rz2-container { padding: 0 20px; }

  .rz2-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Left stacks, centered */
  .rz2-left { align-items: center; text-align: center; }
  .rz2-subtext { margin-left: auto; margin-right: auto; }
  .rz2-action-row { justify-content: center; }
  .rz2-dots { justify-content: center; }

  /* Right: image below text, full width */
  .rz2-right { min-height: auto; }
  .rz2-chips {
    position: absolute;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    top: 45%;
    right: 0;
    margin-bottom: 0;
  }

  /* Hide arrows on mobile — swipe instead */
  .rz2-arrow-btn { display: none; }

  .rz2-strip-inner { flex-wrap: nowrap; }
}

@media (max-width: 480px) {
  .rz2-main { padding: 72px 0 40px; }
  .rz2-container { padding: 0 16px; }
  .rz2-headline { font-size: clamp(2rem, 8vw, 2.6rem); }
  .rz2-subtext  { font-size: 0.97rem; }
  .rz2-cta-btn  { width: 100%; justify-content: center; }
  .rz2-chip     { font-size: 0.76rem; padding: 6px 12px; }
  .rz2-pill-bar { padding: 10px 14px; }
  .rz2-pill-input { font-size: 0.8rem; }
}

/* ── Person card (replaces waveform + pill bar) ── */
.rz2-person-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #ffffff;
  border: 1.5px solid #E5E7EB;
  border-radius: 14px;
  padding: 14px 24px;
  width: 100%;
  box-sizing: border-box;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
  text-align: center;
  position: relative;
  z-index: 2;
}

.rz2-person-name {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #0A0A0A;
  line-height: 1.3;
}

.rz2-person-role {
  font-family: 'Inter', 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 500;
  color: #2D6CF6;
  line-height: 1.3;
}
