:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-168dcf1 *//* ==========================================
   Footer Styles
   ========================================== */

.footer {
    background-color: #090d16;
    color: var(--color-white);
    padding: 5rem 2rem 2rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0px;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1.8fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-about {
    font-size: 0.95rem;
    color: var(--color-gray-200);
    line-height: 1.6;
    opacity: 0.8;
    max-width: 320px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-link {
    text-decoration: none;
    color: var(--color-gray-200);
    font-size: 0.925rem;
    transition: var(--transition-smooth);
    opacity: 0.75;
}

.footer-link:hover {
    color: var(--color-green-bright);
    opacity: 1;
    padding-left: 4px;
}

.footer-bottom {
    padding-top: 2rem;
}

.footer-bottom-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.copyright {
    font-size: 0.875rem;
    color: var(--color-gray-200);
    opacity: 0.6;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal .footer-link {
    opacity: 0.6;
}

.footer-legal .footer-link:hover {
    padding-left: 0;
}/* End custom CSS */
/* Start custom CSS *//* ==========================================
   EmailOutreach CSS Design System & Theme
   ========================================== */

:root {
    /* Color Palette */
    --color-navy: #111844;  /* Deep Executive Navy */
    --color-navy-light: #212c45; /* Secondary Navy text/elements */
    --color-navy-trans: rgba(10, 25, 47, 0.08);
    
    --color-green: hsl(142, 76%, 42%);      /* Main brand light green */
    --color-green-light: hsl(142, 60%, 96%);/* Clean soft green background tint */
    --color-green-bright: hsl(145, 90%, 50%);/* Vibrant green for callouts/glows */
    --color-green-trans: rgba(46, 204, 113, 0.15);
    
    --color-white: hsl(0, 0%, 100%);
    --color-gray-100: hsl(210, 20%, 98%);
    --color-gray-200: hsl(210, 14%, 93%);
    --color-gray-600: #5c6670;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-spring: all 0.5s cubic-bezier(0.68, -0.6, 0.32, 1.6);
}

/* Resets */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-white);
    color: var(--color-navy-light);
    overflow-x: hidden;
  
    /*background-image: url('./assets/neww-img.png');
    background-repeat: no-repeat;
    background-position: right 10% bottom 15%;
    background-size: 35% auto;
    background-attachment: fixed;*/
}

/* Background Gradients */
.glow-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.45;
}

.glow-bg-1 {
    top: -200px;
    right: -100px;
    background: radial-gradient(circle, var(--color-green-bright) 0%, transparent 70%);
}

.glow-bg-2 {
    bottom: -100px;
    left: -200px;
    background: radial-gradient(circle, hsl(215, 60%, 80%) 0%, transparent 70%);
}

/* ==========================================
   Navigation Bar Styles
   ========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    transition: var(--transition-smooth);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 0rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo svg {
    transition: var(--transition-spring);
}

.logo:hover svg {
    transform: rotate(5deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-navy);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--color-green);
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--color-navy-light);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-green);
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--color-navy);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* ==========================================
   Generic Components: Buttons
   ========================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-spring);
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

.btn-navy {
    background-color: var(--color-navy);
    color: var(--color-white);
    border: 2px solid var(--color-navy);
}

.btn-navy:hover {
    background-color: hsl(222, 47%, 18%);
    border-color: hsl(222, 47%, 18%);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(10, 25, 47, 0.2), 0 4px 6px -2px rgba(10, 25, 47, 0.1);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-navy);
    border: 2px solid var(--color-gray-200);
}

.btn-outline:hover {
    background-color: var(--color-green-light);
    border-color: var(--color-green);
    color: var(--color-green);
    transform: translateY(-2px);
}

.btn-text {
    text-decoration: none;
    color: var(--color-navy-light);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.btn-text:hover {
    color: var(--color-navy);
}

/* ==========================================
   Hero Section Layout
   ========================================== */

.hero-section {
    width: 100%;
    min-height: 100vh;
    padding: 8rem 2rem 4rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('./assets/neww-img.png');
    background-repeat: no-repeat;
    background-position: right 10% bottom 15%;
    background-size: 35% auto;
    background-attachment: fixed;
}

.hero-container {
    max-width: 1280px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

/* Left Content Area */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--color-green-light);
    border: 1px solid var(--color-green-trans);
    padding: 0.4rem 0.8rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.badge-tag {
    background-color: var(--color-green);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.15rem 0.45rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-navy);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1.5px;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-title span {
    display: inline-block;
}

.text-navy {
    color: var(--color-navy);
    position: relative;
}

.text-green {
    color: var(--color-green);
    position: relative;
}

.glow-text {
    text-shadow: 0 0 15px rgba(46, 204, 113, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
    max-width: 580px;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
    animation-fill-mode: both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
    animation-fill-mode: both;
}

/* Stats list */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
    animation-fill-mode: both;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-navy);
}

.stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-gray-600);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background-color: var(--color-gray-200);
}

/* ==========================================
   Right Side Graphics & Interactive Canvas
   ========================================== */

.hero-graphic-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    animation: zoomIn 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.graphic-canvas {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    max-width: 540px;
    border-radius: 24px;
    overflow: hidden;
    background-color: transparent;
}

/* Skyline Backdrop styling */
.skyline-bg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: saturate(1.15) brightness(1.02);
    transition: var(--transition-smooth);
}

.graphic-canvas:hover .skyline-bg {
    transform: scale(1.03);
}

/* Overlay gradient inside canvas */
.skyline-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.2) 0%, rgba(46, 204, 113, 0.1) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

/* ==========================================
   Glassmorphic Interactive Dashboard UI
   ========================================== */

.glass-dashboard {
    position: absolute;
    top: 6%;
    left: 6%;
    width: 88%;
    height: 88%;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    box-shadow: 0 12px 32px 0 rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    z-index: 2;
    overflow: hidden;
}

/* Dashboard Top Header */
.dashboard-header {
    height: 44px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.window-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background-color: #ff5f56; }
.dot.yellow { background-color: #ffbd2e; }
.dot.green { background-color: #27c93f; }

.dashboard-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-navy);
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
}

.dashboard-badge {
    background-color: var(--color-green-light);
    color: var(--color-green);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    border: 1px solid rgba(46, 204, 113, 0.2);
    display: flex;
    align-items: center;
    gap: 4px;
}

.dashboard-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--color-green);
    animation: blink 1.5s infinite;
}

/* Body and Connection Map Canvas */
.dashboard-body {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* Nodes Styling */
.node {
    position: absolute;
    padding: 0.6rem 0.9rem;
    border-radius: 12px;
    background: var(--color-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    z-index: 10;
    transition: var(--transition-spring);
}

.node:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.node-pk {
    left: 8%;
    bottom: 12%;
}

.node-us {
    right: 8%;
    top: 15%;
}

.node-flag {
    font-size: 1.1rem;
}

.node-name {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.currency-tag {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}

.rs-tag {
    background-color: var(--color-navy-trans);
    color: var(--color-navy);
}

.usd-tag {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

/* Pulse animation on nodes */
.node-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    top: 0;
    left: 0;
    border: 1px solid transparent;
    z-index: -1;
    pointer-events: none;
}

.node-pk .node-pulse {
    border-color: rgba(10, 25, 47, 0.2);
    animation: pulseNavy 2s infinite ease-out;
}

.node-us .node-pulse {
    border-color: rgba(46, 204, 113, 0.4);
    animation: pulseGreen 2s infinite ease-out;
}

/* SVG Connection Lines */
.connection-path-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

#flightPath {
    stroke-dashoffset: 0;
    animation: dash 30s linear infinite;
}

#returnPath {
    stroke-dashoffset: 0;
    animation: dashReverse 28s linear infinite;
}

/* Flying Envelope (PK ➔ US) */
.flying-envelope {
    position: absolute;
    z-index: 15;
    pointer-events: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    offset-path: path('M 60 160 C 130 50, 270 50, 340 100');
    animation: envelopeFlight 4s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
}

/* Returning Dollar Bubble (US ➔ PK) */
.returning-dollar {
    position: absolute;
    z-index: 15;
    pointer-events: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff8e1;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(249, 168, 37, 0.4);
    offset-path: path('M 340 115 C 270 185, 130 170, 60 170');
    animation: dollarReturn 4.8s cubic-bezier(0.445, 0.05, 0.55, 0.95) infinite;
    animation-delay: 2.2s;
}

/* Floating overlay cards */
.floating-stat-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    padding: 0.5rem 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    z-index: 20;
    transition: var(--transition-smooth);
}

.floating-stat-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.95);
}

.card-top {
    top: 50%;
    left: 4%;
    animation: floatUp 4s ease-in-out infinite alternate;
}

.card-bottom {
    bottom: 20%;
    right: 6%;
    animation: floatUp 4s ease-in-out infinite alternate-reverse;
}

.card-revenue .card-num {
    color: #f9a825;
    text-shadow: 0 0 8px rgba(249, 168, 37, 0.4);
}

.card-revenue {
    border-color: rgba(249, 168, 37, 0.3);
    background: rgba(255, 253, 235, 0.92);
}

/* Flow Direction Labels */
.flow-label {
    position: absolute;
    font-size: 0.6rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    padding: 0.2rem 0.5rem;
    border-radius: 100px;
    pointer-events: none;
    z-index: 12;
    opacity: 0.85;
}

.flow-label-fwd {
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green-light);
    color: var(--color-green);
    border: 1px solid var(--color-green-trans);
}

.flow-label-ret {
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    background: #fff8e1;
    color: #e65100;
    border: 1px solid rgba(249, 168, 37, 0.3);
}

.card-icon {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background-color: var(--color-navy-trans);
    color: var(--color-navy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.green-icon {
    background-color: var(--color-green-light);
    color: var(--color-green);
}

.card-details {
    display: flex;
    flex-direction: column;
}

.card-num {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-navy);
    font-family: var(--font-heading);
}

.card-lbl {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--color-gray-600);
}

/* ==========================================
   Dynamic Morphed Currency Particles
   ========================================== */

.currency-morpher {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 8;
}

.dollar-morpher {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 8;
}

.particle {
    position: absolute;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    pointer-events: none;
    z-index: 8;
    offset-path: path('M 60 160 C 130 50, 270 50, 340 100');
    animation: particleFlight 4s linear infinite;
}

.particle .symbol-rs,
.particle .symbol-usd {
    position: absolute;
    transition: opacity 0.2s ease-in-out;
}

.particle .symbol-rs {
    color: var(--color-navy);
    animation: fadeOutAtHalf 4s linear infinite;
    animation-duration: inherit; /* inherit the random duration set by JS */
}

.particle .symbol-usd {
    color: var(--color-green-bright);
    opacity: 0;
    animation: fadeInAtHalf 4s linear infinite;
    animation-duration: inherit; /* inherit the random duration set by JS */
}

@keyframes fadeOutAtHalf {
    0%, 45% { opacity: 1; }
    50%, 100% { opacity: 0; }
}

@keyframes fadeInAtHalf {
    0%, 48% { opacity: 0; }
    53%, 100% { opacity: 1; }
}

/* ==========================================
   Animations Keyframes
   ========================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

@keyframes dash {
    to {
        stroke-dashoffset: -1000;
    }
}

@keyframes dashReverse {
    to {
        stroke-dashoffset: 1000;
    }
}

@keyframes pulseNavy {
    0% {
        transform: scale(0.98);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        border-color: rgba(10, 25, 47, 0.4);
        box-shadow: 0 0 10px rgba(10, 25, 47, 0.1);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.15);
        border-color: rgba(10, 25, 47, 0);
        opacity: 0;
    }
}

@keyframes pulseGreen {
    0% {
        transform: scale(0.98);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.08);
        border-color: rgba(46, 204, 113, 0.6);
        box-shadow: 0 0 10px rgba(46, 204, 113, 0.2);
        opacity: 0.4;
    }
    100% {
        transform: scale(1.15);
        border-color: rgba(46, 204, 113, 0);
        opacity: 0;
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

@keyframes envelopeFlight {
    0% {
        offset-distance: 0%;
        transform: scale(0.7);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    85% {
        opacity: 1;
        background: var(--color-white);
    }
    90% {
        background: var(--color-green-light);
    }
    100% {
        offset-distance: 100%;
        transform: scale(0.7);
        opacity: 0;
    }
}

@keyframes dollarReturn {
    0% {
        offset-distance: 0%;
        transform: scale(0.6);
        opacity: 0;
        box-shadow: 0 4px 14px rgba(249, 168, 37, 0.2);
    }
    10% {
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 4px 20px rgba(249, 168, 37, 0.6);
    }
    90% {
        opacity: 1;
    }
    100% {
        offset-distance: 100%;
        transform: scale(0.6);
        opacity: 0;
        box-shadow: 0 4px 14px rgba(249, 168, 37, 0.2);
    }
}

@keyframes particleFlight {
    0% {
        offset-distance: 0%;
        transform: translateY(0) scale(0.6);
        color: var(--color-navy);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    /* Halfway across the curved path: morph occurs */
    45% {
        color: var(--color-navy);
        transform: translateY(-5px) scale(0.9);
    }
    55% {
        color: var(--color-green);
        transform: translateY(-10px) scale(1.1);
    }
    90% {
        opacity: 0.7;
    }
    100% {
        offset-distance: 100%;
        transform: translateY(-5px) scale(0.6);
        color: var(--color-green-bright);
        opacity: 0;
    }
}

/* ==========================================
   Responsive Breakpoints & Adjustments
   ========================================== */

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        text-align: center;
    }

    .hero-content {
        align-items: center;
        text-align: center;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-graphic-container {
        max-width: 480px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Add hamburger in production, keeping minimal here */
    }
    
    .navbar {
        padding: 0.5rem 1rem;
    }

    .hero-section {
        padding-top: 6.5rem;
    }
    
    .hero-title {
        letter-spacing: -1px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        width: 45%;
    }
}

/* ==========================================
   Section Layouts & General Styles
   ========================================== */

.section {
    padding: 7rem 2rem;
    width: 100%;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.section-badge {
    display: inline-block;
    background-color: var(--color-green-light);
    color: var(--color-green);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    letter-spacing: 1px;
    border: 1px solid var(--color-green-trans);
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-navy);
    margin-bottom: 1.25rem;
    letter-spacing: -0.5px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ==========================================
   Features Section: Steps Grid
   ========================================== */

.features-section {
    background-color: var(--color-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.step-card {
    background-color: var(--color-gray-100);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 16px;
    padding: 2.25rem 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-spring);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(10, 25, 47, 0.05), 0 10px 10px -5px rgba(10, 25, 47, 0.02);
    border-color: var(--color-green-trans);
}

.step-card:hover::before {
    background-color: var(--color-green);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(10, 25, 47, 0.05);
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    color: var(--color-green-trans);
}

.step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-navy);
    margin-bottom: 0.75rem;
}

.step-text {
    font-size: 0.925rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.step-urdu {
    display: block;
    font-family: 'Noto Sans Urdu', sans-serif;
    font-size: 1.05rem;
    color: var(--color-green);
    font-weight: 700;
    line-height: 1.6;
    border-top: 1px solid var(--color-gray-200);
    padding-top: 1rem;
    text-align: right;
    direction: rtl;
}

/* ==========================================
   Urdu Spotlight Section
   ========================================== */

.urdu-section {
    background: linear-gradient(135deg, #090d16 0%, #15223c 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
}

.urdu-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--color-green-trans) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    pointer-events: none;
    z-index: 1;
}

.urdu-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.urdu-content {
    text-align: right;
}

.urdu-badge {
    display: inline-block;
    background-color: var(--color-green-trans);
    color: var(--color-green-bright);
    font-family: 'Noto Sans Urdu', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(46, 204, 113, 0.3);
    margin-bottom: 1.5rem;
}

.urdu-title {
    font-family: 'Noto Nastaliq Urdu', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.45;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.urdu-description {
    font-family: 'Noto Naskh Arabic', sans-serif;
    font-size: 1.15rem;
    color: var(--color-gray-200);
    line-height: 1.8;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.urdu-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.urdu-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.urdu-benefit-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(46, 204, 113, 0.2);
}

.urdu-benefit-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.urdu-benefit-text {
    font-family: 'Noto Sans Urdu', sans-serif;
    font-size: 1.05rem;
    color: var(--color-gray-200);
    line-height: 1.7;
}

.urdu-benefit-text strong {
    color: var(--color-green-bright);
}

.urdu-visual {
    display: flex;
    justify-content: center;
}

.urdu-visual-card {
    background: rgba(15, 23, 41, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.visual-header {
    display: flex;
    gap: 6px;
    margin-bottom: 2rem;
}

.visual-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
}

.visual-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 2rem;
    text-align: center;
}

.visual-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-green-bright);
    line-height: 1;
    text-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.visual-label {
    font-family: 'Noto Sans Urdu', sans-serif;
    font-size: 0.95rem;
    color: var(--color-gray-200);
}

.visual-graph {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.graph-bar {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.graph-bar span {
    font-family: 'Noto Sans Urdu', sans-serif;
    font-size: 0.85rem;
    color: var(--color-gray-200);
}

.graph-bar::after {
    content: '';
    display: block;
    height: 8px;
    width: var(--val);
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    transition: var(--transition-spring);
}

.graph-bar.active::after {
    background: linear-gradient(90deg, var(--color-green) 0%, var(--color-green-bright) 100%);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

/* ==========================================
   Solutions & Benefits Section
   ========================================== */

.solutions-section {
    background-color: var(--color-gray-100);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.solution-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-spring);
}

.solution-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-green-trans);
    box-shadow: 0 20px 30px -10px rgba(10, 25, 47, 0.08);
}

.solution-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background-color: var(--color-green-light);
    color: var(--color-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.75rem;
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon {
    background-color: var(--color-green);
    color: var(--color-white);
    transform: scale(1.05) rotate(5deg);
}

.solution-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1rem;
}

.solution-text {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* ==========================================
   CTA Banner Section
   ========================================== */

.cta-section {
    background-color: var(--color-white);
}

.cta-card {
    background: linear-gradient(135deg, #0f1729 0%, #172544 100%);
    border-radius: 24px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.2;
    max-width: 800px;
    margin: 0 auto 1.5rem auto;
    letter-spacing: -1px;
}

.cta-description {
    font-size: 1.15rem;
    color: var(--color-gray-200);
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* ==========================================
   Responsive Styles for New Sections
   ========================================== */

@media (max-width: 1024px) {
    .section {
        padding: 5rem 1.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .urdu-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .urdu-content {
        text-align: center;
    }

    .urdu-benefits-list {
        align-items: center;
    }

    .urdu-benefit-item {
        width: 100%;
        max-width: 500px;
        text-align: right;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 4rem 1.5rem;
    }

    .cta-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-container {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

/* ==========================================
   Interactive Personalization Simulator
   ========================================== */

.simulator-section {
    background-color: var(--color-gray-100);
}

.simulator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: stretch;
}

.prospect-panel {
    background-color: var(--color-white);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.panel-heading {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.prospect-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.prospect-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--color-gray-200);
    cursor: pointer;
    background-color: var(--color-white);
    transition: var(--transition-spring);
}

.prospect-card:hover {
    transform: translateX(5px);
    border-color: var(--color-green-trans);
    background-color: var(--color-gray-100);
}

.prospect-card.active {
    border-color: var(--color-green);
    background-color: var(--color-green-light);
    box-shadow: 0 10px 15px -3px rgba(46, 204, 113, 0.1);
}

.prospect-avatar {
    font-size: 1.75rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-gray-100);
    border-radius: 50%;
    transition: var(--transition-smooth);
}

.prospect-card.active .prospect-avatar {
    background-color: var(--color-white);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.prospect-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.prospect-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-navy);
}

.prospect-title {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.prospect-loc {
    font-size: 0.75rem;
    color: var(--color-gray-600);
    opacity: 0.8;
}

.email-simulator {
    background-color: #0c1020;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.simulator-window-header {
    height: 48px;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    background-color: #080b16;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.window-title-tab {
    font-family: var(--font-heading);
    font-size: 0.825rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 2rem;
}

.simulator-editor-fields {
    padding: 1.25rem 1.75rem;
    background-color: #090d1a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.field-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.9rem;
}

.field-label {
    color: rgba(255, 255, 255, 0.4);
    width: 60px;
    font-weight: 600;
}

.field-value {
    color: var(--color-white);
    font-weight: 500;
}

.simulator-editor-body {
    flex: 1;
    padding: 2rem 1.75rem;
    background-color: #0d1226;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.975rem;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.var-tag {
    background-color: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.25);
    color: var(--color-green-bright);
    font-weight: 600;
    padding: 0.15rem 0.5rem;
    border-radius: 6px;
    display: inline-block;
    transition: var(--transition-smooth);
    box-shadow: 0 0 10px rgba(46, 204, 113, 0.1);
}

.simulator-footer-bar {
    padding: 1rem 1.75rem;
    background-color: #080b16;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.sim-status-indicator {
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-green-bright);
    box-shadow: 0 0 8px var(--color-green-bright);
    animation: blink 1.5s infinite;
}

.sim-actions {
    display: flex;
    gap: 0.75rem;
}

.sim-tag-pill {
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.sim-tag-pill.green-glow {
    background-color: var(--color-green-trans);
    color: var(--color-green-bright);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* ==========================================
   Pricing Section
   ========================================== */

.pricing-section {
    background-color: var(--color-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    align-items: stretch;
}

.pricing-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-spring);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(10, 25, 47, 0.06);
    border-color: var(--color-gray-200);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #111844 0%, #1d2557 100%);
    border-color: var(--color-green);
    color: var(--color-white);
    box-shadow: 0 20px 45px -10px rgba(17, 24, 68, 0.3);
}

.pricing-card.featured:hover {
    box-shadow: 0 25px 50px -5px rgba(17, 24, 68, 0.4), 0 0 15px rgba(46, 204, 113, 0.2);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background-color: var(--color-green);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
    letter-spacing: 0.5px;
}

.tier-name {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 1.5rem;
}

.pricing-card.featured .tier-name {
    color: var(--color-white);
}

.tier-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 1.5rem;
}

.tier-price .currency {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
}

.pricing-card.featured .tier-price .currency {
    color: var(--color-green-bright);
}

.tier-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-navy);
    font-family: var(--font-heading);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-card.featured .tier-price .amount {
    color: var(--color-white);
}

.tier-price .period {
    font-size: 0.95rem;
    color: var(--color-gray-600);
}

.pricing-card.featured .tier-price .period {
    color: rgba(255,255,255,0.7);
}

.tier-desc {
    font-size: 0.925rem;
    color: var(--color-gray-600);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.pricing-card.featured .tier-desc {
    color: rgba(255,255,255,0.8);
}

.tier-divider {
    border: 0;
    height: 1px;
    background-color: var(--color-gray-200);
    margin-bottom: 2rem;
}

.pricing-card.featured .tier-divider {
    background-color: rgba(255, 255, 255, 0.1);
}

.tier-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    flex: 1;
}

.tier-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--color-navy-light);
}

.pricing-card.featured .tier-features li {
    color: rgba(255,255,255,0.9);
}

.tier-features li span {
    color: var(--color-green);
    font-weight: 700;
}

.pricing-card.featured .tier-features li span {
    color: var(--color-green-bright);
}

.tier-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
}

.pricing-card.featured .tier-btn {
    background-color: var(--color-green);
    color: var(--color-white);
    border-color: var(--color-green);
}

.pricing-card.featured .tier-btn:hover {
    background-color: var(--color-green-bright);
    border-color: var(--color-green-bright);
    color: var(--color-navy);
}

/* ==========================================
   Testimonials Section
   ========================================== */

.testimonials-section {
    background-color: var(--color-gray-100);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background-color: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-spring);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(10, 25, 47, 0.05);
}

.testimonial-rating {
    color: var(--color-green);
    font-size: 1.1rem;
    letter-spacing: 2px;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-gray-600);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.author-name {
    font-family: var(--font-heading);
    font-size: 0.975rem;
    font-weight: 700;
    color: var(--color-navy);
}

.author-title {
    font-size: 0.8rem;
    color: var(--color-gray-600);
    font-weight: 500;
}

.author-stat {
    font-size: 0.75rem;
    color: var(--color-green);
    font-weight: 700;
}

/* ==========================================
   Responsive Styles for Simulator, Pricing & Testimonials
   ========================================== */

@media (max-width: 1024px) {
    .simulator-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto;
        gap: 2.5rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
        gap: 2rem;
    }
}/* End custom CSS */