/* ===== RESET & VARIABLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #2563eb;
    --blue-dark: #1a56db;
    --blue-deeper: #1e40af;
    --blue-light: #60a5fa;
    --blue-pale: #dbeafe;
    --saffron: #FF7A00;
    --saffron-dark: #e06800;
    --saffron-light: #FF9A33;
    --saffron-pale: #fff3e0;
    --white: #ffffff;
    --off-white: #f8fafc;
    --gray-50: #f9fafb;
    --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;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-md: 0 10px 25px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 50px -12px rgba(0,0,0,0.12);
    --shadow-xl: 0 25px 60px -15px rgba(0,0,0,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE ===== */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

img {
    max-width: 100%;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--gray-900);
}

/* ===== NAVBAR ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.navbar {
    padding: 0.75rem 0;
}

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

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

.logo-img {
    height: 42px;
    width: auto;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    font-size: 0.925rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--blue);
    background: var(--blue-pale);
}

.nav-links a.active {
    color: var(--blue);
    background: var(--blue-pale);
    font-weight: 600;
}

.nav-links .btn-nav {
    background: linear-gradient(135deg, var(--saffron), var(--blue));
    color: var(--white) !important;
    padding: 0.55rem 1.4rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-links .btn-nav:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, var(--saffron-dark), var(--blue-dark));
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 4px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.35);
}

.btn-saffron {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 122, 0, 0.25);
}

.btn-saffron:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 122, 0, 0.35);
}

.btn-secondary {
    background: var(--white);
    color: var(--gray-800);
    border: 2px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--blue);
    color: var(--blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline-white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--blue-dark);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 12px;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 8px;
}

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

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

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0c2554 40%, #0f2a5e 60%, #1a1a3e 100%);
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-bg-pattern .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: orbFloat 15s ease-in-out infinite;
}

.hero-bg-pattern .orb-1 {
    width: 500px;
    height: 500px;
    background: var(--saffron);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-bg-pattern .orb-2 {
    width: 400px;
    height: 400px;
    background: var(--blue);
    bottom: -15%;
    left: -10%;
    animation-delay: -5s;
}

.hero-bg-pattern .orb-3 {
    width: 300px;
    height: 300px;
    background: var(--saffron-light);
    top: 40%;
    left: 50%;
    opacity: 0.15;
    animation-delay: -10s;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem 0.4rem 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    color: var(--saffron-light);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--saffron);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.hero-content h2 .text-gradient {
    background: linear-gradient(135deg, var(--saffron-light), var(--saffron), #ffcc80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.7;
    max-width: 540px;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat h4 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
}

.hero-stat h4 .stat-accent {
    color: var(--saffron);
}

.hero-stat p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;
}

/* Hero visual (right side) */
.hero-visual {
    position: relative;
    flex-shrink: 0;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-visual-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    animation: spinSlow 30s linear infinite;
}

.hero-visual-ring:nth-child(1) {
    width: 100%;
    height: 100%;
}

.hero-visual-ring:nth-child(2) {
    width: 75%;
    height: 75%;
    animation-direction: reverse;
    animation-duration: 25s;
}

.hero-visual-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    animation-duration: 20s;
}

.hero-visual .ring-node {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.ring-node.saffron { background: var(--saffron); box-shadow: 0 0 20px rgba(255,122,0,0.4); }
.ring-node.blue { background: var(--blue-light); box-shadow: 0 0 20px rgba(96,165,250,0.4); }
.ring-node.white { background: white; box-shadow: 0 0 20px rgba(255,255,255,0.3); }

@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-visual-center {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255,122,0,0.2), rgba(37,99,235,0.2));
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    z-index: 2;
}

.hero-visual-center img {
    width: 60px;
    height: 60px;
}

/* ===== PAGE HERO (smaller, for inner pages) ===== */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0c2554 50%, #1a1a3e 100%);
    overflow: hidden;
    text-align: center;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.page-hero .orb-saffron {
    width: 300px;
    height: 300px;
    background: var(--saffron);
    opacity: 0.15;
    top: -20%;
    right: 10%;
}

.page-hero .orb-blue {
    width: 250px;
    height: 250px;
    background: var(--blue);
    opacity: 0.15;
    bottom: -20%;
    left: 10%;
}

.page-hero h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
    position: relative;
    letter-spacing: -0.02em;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

/* ===== SECTIONS ===== */
.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--saffron);
    margin-bottom: 0.75rem;
}

.section-label.blue {
    color: var(--blue);
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--gray-500);
    line-height: 1.7;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-900);
}

/* ===== PRODUCT / FEATURE CARDS ===== */
a.feature-card {
    text-decoration: none;
    color: inherit;
}

a.feature-card h3 {
    color: var(--gray-900);
}

a.feature-card p {
    color: var(--gray-500);
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--saffron), var(--blue));
    opacity: 0;
    transition: var(--transition);
}

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

.feature-card:hover::before {
    opacity: 1;
}

.feature-card .icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    border-radius: var(--radius);
    margin-bottom: 1.25rem;
    background: var(--blue-pale);
}

.feature-card .icon.saffron-bg {
    background: var(--saffron-pale);
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.feature-card .card-subtitle {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--blue);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.feature-card p {
    color: var(--gray-500);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-card .card-meta {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    font-size: 0.8rem;
    color: var(--gray-400);
}

.feature-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.feature-card .card-meta strong {
    color: var(--gray-600);
}

/* ===== TIER LABELS ===== */
.tier-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.tier-badge.tier-s {
    background: linear-gradient(135deg, rgba(255,122,0,0.1), rgba(255,122,0,0.05));
    color: var(--saffron);
    border: 1px solid rgba(255,122,0,0.2);
}

.tier-badge.tier-a {
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    color: var(--blue);
    border: 1px solid rgba(37,99,235,0.2);
}

.tier-badge.tier-b {
    background: linear-gradient(135deg, rgba(100,116,139,0.1), rgba(100,116,139,0.05));
    color: var(--gray-500);
    border: 1px solid rgba(100,116,139,0.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0c2554 50%, #1a1a3e 100%);
    overflow: hidden;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: var(--saffron);
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    top: -100px;
    right: -50px;
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--blue);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    bottom: -80px;
    left: -50px;
    pointer-events: none;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
}

.cta-section p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-section .btn {
    position: relative;
}

/* ===== ABOUT PAGE ===== */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-block {
    margin-bottom: 4rem;
}

.about-block h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    color: var(--gray-900);
}

.about-block p {
    color: var(--gray-500);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.principles-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.principles-list li {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--saffron);
    transition: var(--transition);
}

.principles-list li:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.principles-list .check-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, var(--saffron), var(--blue));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.principles-list strong {
    color: var(--gray-900);
}

.principles-list p {
    margin: 0;
    font-size: 0.95rem;
}

/* Leadership cards */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.leader-card {
    padding: 2rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.leader-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.leader-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0 auto 1rem;
}

.leader-avatar.saffron {
    background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
}

.leader-avatar.blue {
    background: linear-gradient(135deg, var(--blue), var(--blue-dark));
}

.leader-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.25rem;
}

.leader-card .leader-role {
    color: var(--gray-400);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-info-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    border-color: transparent;
}

.contact-info-card .info-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    border-radius: 10px;
    background: var(--blue-pale);
}

.contact-info-card .info-icon.saffron-bg {
    background: var(--saffron-pale);
}

.contact-info-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin: 0;
    line-height: 1.5;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-subtitle {
    color: var(--gray-500);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 10px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--gray-800);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

/* ===== FOOTER ===== */
footer {
    background: var(--gray-900);
    color: var(--white);
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--saffron), var(--white) 50%, var(--blue));
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-logo {
    height: 38px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-section h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.6rem;
}

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

.footer-section a:hover {
    color: var(--saffron-light);
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== ENTERPRISE BUNDLES SECTION ===== */
.bundle-section {
    padding: 80px 0;
    text-align: center;
}

.bundle-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background: linear-gradient(135deg, var(--saffron-pale), var(--blue-pale));
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
}

.bundle-card h2 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.bundle-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

/* ===== PRODUCT PAGES ===== */
.product-hero {
    position: relative;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gray-900) 0%, #0c2554 50%, #1a1a3e 100%);
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 60px 60px;
}

.product-hero .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.product-hero .orb-1 {
    width: 350px;
    height: 350px;
    background: var(--saffron);
    opacity: 0.15;
    top: -10%;
    right: 5%;
}

.product-hero .orb-2 {
    width: 280px;
    height: 280px;
    background: var(--blue);
    opacity: 0.15;
    bottom: -15%;
    left: 5%;
}

.product-hero .container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.product-hero-content {
    flex: 1;
}

.product-hero-content .product-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 100px;
    color: var(--saffron-light);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.product-hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.product-hero-content .product-tagline {
    font-size: 1.25rem;
    color: var(--saffron-light);
    font-weight: 500;
    margin-bottom: 1.25rem;
}

.product-hero-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2rem;
}

.product-hero-icon {
    flex-shrink: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,122,0,0.15), rgba(37,99,235,0.15));
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    backdrop-filter: blur(20px);
}

/* Product features list */
.product-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.product-feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.product-feature-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: transparent;
}

.product-feature-item .pf-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border-radius: 10px;
    background: var(--blue-pale);
}

.product-feature-item .pf-icon.saffron {
    background: var(--saffron-pale);
}

.product-feature-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.product-feature-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* How it works / steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: step;
}

.step-card {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.step-card::before {
    counter-increment: step;
    content: counter(step);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--saffron), var(--blue));
    color: white;
    font-size: 1.1rem;
    font-weight: 800;
    margin: 0 auto 1.25rem;
}

.step-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Use cases section */
.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.25rem;
}

.usecase-card {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: var(--radius);
    border-left: 3px solid var(--saffron);
    transition: var(--transition);
}

.usecase-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.usecase-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.usecase-card p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.5;
}

/* Other products strip */
.other-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.other-product-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    text-decoration: none;
    color: var(--gray-800);
    transition: var(--transition);
}

.other-product-card:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.other-product-card .op-icon {
    font-size: 1.5rem;
}

.other-product-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
}

.other-product-card p {
    font-size: 0.75rem;
    color: var(--gray-400);
}

/* ===== SCROLL REVEAL ANIMATION ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        width: 280px;
        height: 280px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .product-hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .product-hero-content .cta-buttons {
        justify-content: center;
    }

    .product-hero-icon {
        width: 150px;
        height: 150px;
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px 2rem 2rem;
        gap: 0.5rem;
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }

    .hamburger {
        display: flex;
    }

    .product-hero {
        padding: 120px 0 60px;
    }

    .product-hero-content h1 {
        font-size: 2.1rem;
    }

    .product-hero-icon {
        display: none;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-content h2 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-visual {
        display: none;
    }

    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero h2 {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

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

    .section-header h2 {
        font-size: 1.85rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 1.85rem;
    }

    .leadership-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.85rem;
    }

    .btn-lg {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .container {
        padding: 0 16px;
    }
}

/* ===== PRODUCT PAGE ENHANCED ANIMATIONS ===== */

/* --- Keyframes --- */
@keyframes heroSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeScale {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 30px rgba(255,122,0,0.15), 0 0 60px rgba(37,99,235,0.1); }
    50% { box-shadow: 0 0 50px rgba(255,122,0,0.3), 0 0 100px rgba(37,99,235,0.2); }
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0.2; }
    25% { transform: translate(20px, -30px); opacity: 0.5; }
    50% { transform: translate(-10px, -60px); opacity: 0.3; }
    75% { transform: translate(15px, -40px); opacity: 0.6; }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes stepCardIn {
    from { opacity: 0; transform: translateY(25px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* --- Hero entrance stagger --- */
.product-hero-content .product-label {
    animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.product-hero-content h1 {
    animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
}

.product-hero-content .product-tagline {
    animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}

.product-hero-content > p {
    animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.55s both;
}

.product-hero-content .cta-buttons {
    animation: heroSlideUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}

/* --- Animated orbs in product hero --- */
.product-hero .orb-1 {
    animation: orbFloat 18s ease-in-out infinite;
}

.product-hero .orb-2 {
    animation: orbFloat 18s ease-in-out infinite;
    animation-delay: -8s;
}

/* --- Animated hero visual with rotating rings --- */
.product-hero-visual {
    position: relative;
    flex-shrink: 0;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: heroFadeScale 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.product-hero-visual .icon-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px dashed rgba(255,255,255,0.12);
    animation: ringRotate 25s linear infinite;
}

.product-hero-visual .icon-ring-inner {
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.06);
    animation: ringRotate 18s linear infinite reverse;
}

.product-hero-visual .ring-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    animation: pulse 2.5s ease-in-out infinite;
}

.product-hero-visual .ring-dot-1 {
    background: var(--saffron);
    box-shadow: 0 0 15px rgba(255,122,0,0.6);
    top: -4px;
    left: 50%;
    transform: translateX(-50%);
}

.product-hero-visual .ring-dot-2 {
    background: var(--blue-light);
    box-shadow: 0 0 15px rgba(96,165,250,0.6);
    bottom: 10%;
    right: -4px;
    animation-delay: -1s;
}

.product-hero-visual .ring-dot-3 {
    background: white;
    box-shadow: 0 0 10px rgba(255,255,255,0.4);
    top: 40%;
    left: -4px;
    animation-delay: -2s;
}

.product-hero-visual .icon-center {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,122,0,0.15), rgba(37,99,235,0.15));
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    backdrop-filter: blur(20px);
    z-index: 2;
    animation: iconFloat 5s ease-in-out 1.2s infinite, iconGlow 4s ease-in-out 1.2s infinite;
}

/* --- Floating particles --- */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    animation: particleFloat 12s ease-in-out infinite;
}

/* --- Directional reveal variants --- */
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* --- Enhanced feature item hover --- */
.product-feature-item .pf-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.product-feature-item:hover .pf-icon {
    transform: scale(1.15) rotate(5deg);
}

.product-feature-item:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08), 0 0 0 1px rgba(255,122,0,0.06);
}

/* --- Enhanced step card hover --- */
.step-card::before {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.step-card:hover::before {
    transform: scale(1.12);
    box-shadow: 0 6px 25px rgba(255,122,0,0.25);
}

.step-card:hover h3 {
    color: var(--blue);
    transition: color 0.3s ease;
}

/* --- Staggered step card reveals --- */
.steps-grid.reveal {
    opacity: 1;
    transform: none;
}

.steps-grid.reveal .step-card {
    opacity: 0;
}

.steps-grid.revealed .step-card {
    animation: stepCardIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.steps-grid.revealed .step-card:nth-child(1) { animation-delay: 0.1s; }
.steps-grid.revealed .step-card:nth-child(2) { animation-delay: 0.3s; }
.steps-grid.revealed .step-card:nth-child(3) { animation-delay: 0.5s; }
.steps-grid.revealed .step-card:nth-child(4) { animation-delay: 0.7s; }

/* --- Enhanced usecase card hover --- */
.usecase-card:hover {
    border-left-width: 5px;
    transform: translateX(4px);
}

/* --- Other product card icon hover --- */
.other-product-card .op-icon {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.other-product-card:hover .op-icon {
    transform: scale(1.25) rotate(-5deg);
}

/* --- CTA gradient animation --- */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, #0c2554 30%, #1a1a3e 60%, #0f2a5e 100%);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

/* --- Product hero visual responsive --- */
@media (max-width: 1024px) {
    .product-hero-visual {
        width: 180px;
        height: 180px;
    }

    .product-hero-visual .icon-center {
        width: 110px;
        height: 110px;
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .product-hero-visual {
        display: none;
    }
}
