/* ===== CSS Variables ===== */
:root {
    --primary: #0a3d8c;
    --primary-dark: #072d66;
    --primary-light: #3a6db8;
    --secondary: #d95b26;
    --accent: #d95b26;
    --dark: #172B4D;
    --gray-700: #42526E;
    --gray-500: #6B778C;
    --gray-300: #A5ADBA;
    --gray-100: #EBECF0;
    --gray-50: #F4F5F7;
    --white: #FFFFFF;
    --success: #d95b26;
    --shadow-sm: 0 1px 2px rgba(9, 30, 66, 0.08);
    --shadow-md: 0 4px 8px rgba(9, 30, 66, 0.1);
    --shadow-lg: 0 8px 16px rgba(9, 30, 66, 0.15);
    --shadow-xl: 0 16px 32px rgba(9, 30, 66, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Card Component System (shadcn-style) ===== */
.card {
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    overflow: hidden;
}

.card:hover {
    box-shadow: var(--shadow-md);
}

.card-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 24px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.card-description {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.card-content {
    padding: 0 24px 24px;
}

.card-footer {
    display: flex;
    align-items: center;
    padding: 0 24px 24px;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== Typography ===== */
h1, h2, h3, h4 {
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: var(--white);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.section-tag::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin-top: 16px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-color: var(--primary);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), #002266);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 61, 140, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(10, 61, 140, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
}

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(9, 30, 66, 0.06);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(9, 30, 66, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-weight: 500;
    color: var(--gray-700);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 12px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow-xl);
    z-index: 2000;
    padding: 80px 30px 30px;
    transition: right 0.3s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-links a {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
}

.mobile-nav-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ===== Hero Section ===== */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes pulseDot {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.5); }
}

.hero {
    padding: 160px 0 100px;
    background: linear-gradient(135deg, var(--gray-50) 0%, #e8f0fe 50%, var(--white) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 0.05;
}

.hero::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.08;
    border-radius: 50%;
    animation: pulseDot 4s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--success);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-text h1 {
    margin-bottom: 24px;
}

.hero-text h1 .highlight {
    color: var(--primary);
    position: relative;
}

.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-light), var(--secondary));
    opacity: 0.3;
    border-radius: 3px;
}

.hero-text > p {
    font-size: 1.25rem;
    color: var(--gray-500);
    margin-bottom: 32px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: center;
    position: relative;
    padding: 0 24px;
}

.stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: var(--gray-300);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    animation: heroFloat 6s ease-in-out infinite;
    min-height: 380px;
    box-shadow:
        0 8px 32px rgba(0,0,0,0.18),
        0 0 0 1px rgba(255,255,255,0.08),
        inset 0 0 80px rgba(255,255,255,0.04);
}

/* Animated gradient background — edge to edge */
@keyframes glassGradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-card-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        #d95b26 0%,
        #c44e1e 18%,
        #b8472a 32%,
        #a14428 46%,
        #8a4248 58%,
        #6b4a6e 72%,
        #5c5a8a 86%,
        #7a4e70 100%
    );
    background-size: 300% 300%;
    animation: glassGradientMove 8s ease infinite;
    border-radius: 24px;
}

/* Full edge-to-edge glass reflection sweep */
@keyframes glassShineSweep {
    0% { transform: translateX(-110%) rotate(25deg); }
    100% { transform: translateX(210%) rotate(25deg); }
}

.hero-card-shine {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    border-radius: 24px;
    overflow: hidden;
}

.hero-card-shine::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 60%;
    height: 200%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255,255,255,0.03) 25%,
        rgba(255,255,255,0.12) 45%,
        rgba(255,255,255,0.2) 50%,
        rgba(255,255,255,0.12) 55%,
        rgba(255,255,255,0.03) 75%,
        transparent 100%
    );
    transform: rotate(25deg);
    animation: glassShineSweep 5s ease-in-out infinite;
}

/* Static glass reflection — edge to edge diagonal */
.hero-card-reflection {
    position: absolute;
    inset: 0;
    z-index: 4;
    border-radius: 24px;
    pointer-events: none;
    background: linear-gradient(
        165deg,
        rgba(255,255,255,0.22) 0%,
        rgba(255,255,255,0.1) 15%,
        rgba(255,255,255,0.04) 30%,
        transparent 50%,
        rgba(255,255,255,0.02) 70%,
        rgba(255,255,255,0.06) 85%,
        rgba(255,255,255,0.1) 100%
    );
}

/* Animated edge light — glowing border sweep */
@keyframes edgeLightRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-card-edge-light {
    position: absolute;
    inset: -1px;
    z-index: 5;
    border-radius: 25px;
    pointer-events: none;
    overflow: hidden;
}

.hero-card-edge-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    transform-origin: center center;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        transparent 60deg,
        rgba(255,255,255,0.35) 120deg,
        rgba(255,255,255,0.5) 140deg,
        rgba(255,255,255,0.35) 160deg,
        transparent 220deg,
        transparent 360deg
    );
    animation: edgeLightRotate 6s linear infinite;
    margin-top: -75%;
    margin-left: -75%;
}

.hero-card-edge-light::after {
    content: '';
    position: absolute;
    inset: 1.5px;
    border-radius: 23px;
    background: transparent;
    box-shadow: inset 0 0 0 500px transparent;
}

/* Glass overlay — frosted glass feel */
.hero-card-glass {
    position: relative;
    z-index: 6;
    padding: 44px 40px 40px;
    background: linear-gradient(
        160deg,
        rgba(255,255,255,0.18) 0%,
        rgba(255,255,255,0.08) 30%,
        rgba(255,255,255,0.03) 60%,
        rgba(255,255,255,0.06) 100%
    );
    backdrop-filter: blur(24px) saturate(1.6);
    -webkit-backdrop-filter: blur(24px) saturate(1.6);
    border: 1px solid rgba(255,255,255,0.2);
    border-top-color: rgba(255,255,255,0.35);
    border-left-color: rgba(255,255,255,0.25);
    border-radius: 24px;
    height: 100%;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.3),
        inset 1px 0 0 rgba(255,255,255,0.15),
        inset 0 -1px 0 rgba(255,255,255,0.05);
}

/* Soft accent light at bottom-right */
.hero-card-accent {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
}

.card-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    box-shadow: 0 8px 24px rgba(10, 61, 140, 0.35);
}

.card-icon i {
    font-size: 2rem;
    color: #fff;
}

.hero-card h3 {
    font-size: 1.65rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.card-subtitle {
    color: rgba(255,255,255,0.72);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 28px;
    font-weight: 400;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
}

.card-feature-item i {
    font-size: 0.8rem;
    color: #fff;
    flex-shrink: 0;
}

.card-feature-item span {
    color: rgba(255,255,255,0.92);
}

/* ===== Trust Section ===== */
.trust-section {
    padding: 40px 0;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    overflow: hidden;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gray-500);
    font-weight: 600;
    transition: var(--transition);
    padding: 8px 16px;
    border-radius: var(--radius-md);
}

.trust-item:hover {
    color: var(--primary);
    background: rgba(10, 61, 140, 0.05);
    transform: translateY(-2px);
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition-bounce);
}

.trust-item:hover i {
    transform: scale(1.2) rotate(-5deg);
}

/* ===== Partners Section ===== */
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-section {
    padding: 80px 0 60px;
    background: var(--white);
    overflow: hidden;
}

.partners-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-marquee::before,
.partners-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--white) 0%, transparent 100%);
}

.partners-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--white) 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 40px;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 36px;
    border-radius: var(--radius-xl);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    flex-shrink: 0;
    min-width: 200px;
    height: 100px;
}

.partner-card:hover {
    background: var(--white);
    box-shadow: 0 15px 40px rgba(10, 61, 140, 0.1);
    border-color: var(--primary-light);
    transform: translateY(-4px) scale(1.05);
}

.partner-logo {
    max-width: 140px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.5);
    transition: all 0.4s ease;
}

.partner-card:hover .partner-logo {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08);
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    min-height: 500px;
}

/* Floating hover animation */
@keyframes floatCard1 {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-12px) translateX(4px); }
    50% { transform: translateY(-6px) translateX(-3px); }
    75% { transform: translateY(-14px) translateX(2px); }
}

@keyframes floatCard2 {
    0%, 100% { transform: translateY(0) translateX(0); }
    30% { transform: translateY(-10px) translateX(-5px); }
    60% { transform: translateY(-16px) translateX(3px); }
    80% { transform: translateY(-4px) translateX(-2px); }
}

@keyframes floatCard3 {
    0%, 100% { transform: translateY(0) translateX(0); }
    20% { transform: translateY(-8px) translateX(6px); }
    50% { transform: translateY(-15px) translateX(-4px); }
    70% { transform: translateY(-5px) translateX(3px); }
}

@keyframes floatCard4 {
    0%, 100% { transform: translateY(0) translateX(0); }
    35% { transform: translateY(-14px) translateX(-3px); }
    55% { transform: translateY(-7px) translateX(5px); }
    85% { transform: translateY(-11px) translateX(-2px); }
}

.float-card {
    will-change: transform;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.float-card:hover {
    box-shadow: 0 20px 50px rgba(10, 61, 140, 0.2);
    transform: translateY(-6px) scale(1.03) !important;
    animation-play-state: paused;
}

.about-card-1 {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    max-width: 280px;
    animation: floatCard1 5s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(10, 61, 140, 0.15);
    z-index: 2;
}

.about-card-1 i {
    font-size: 3rem;
    margin-bottom: 16px;
}

.about-card-1 h4 {
    color: var(--white);
    margin-bottom: 8px;
}

.about-card-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: floatCard2 6s ease-in-out infinite;
    z-index: 2;
}

.about-card-3 {
    position: absolute;
    top: 10px;
    right: 20px;
    background: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    animation: floatCard3 5.5s ease-in-out infinite;
    z-index: 1;
}

.about-card-3 i {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 10px;
    display: block;
}

.about-card-3 h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 4px;
}

.about-card-3 p {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
    margin: 0;
}

.about-card-4 {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--secondary), #b84a1e);
    color: var(--white);
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    animation: floatCard4 4.8s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(217, 91, 38, 0.2);
    z-index: 1;
}

.about-card-4 i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

.about-card-4 h4 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 4px;
}

.about-card-4 p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    margin: 0;
}

.experience-badge {
    text-align: center;
}

.experience-badge .years {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.experience-badge .text {
    font-size: 1.125rem;
    color: var(--gray-500);
    font-weight: 600;
}

.about-content .lead {
    font-size: 1.125rem;
    color: var(--gray-500);
    margin: 24px 0 40px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

.feature {
    display: flex;
    gap: 20px;
    padding: 16px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.feature:hover {
    background: var(--gray-50);
    transform: translateX(8px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-bounce);
}

.feature:hover .feature-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 8px 20px rgba(10, 61, 140, 0.3);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.feature-text h4 {
    margin-bottom: 4px;
}

.feature-text p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

/* ===== Mission, Vision & Values Section ===== */
.mission-section {
    padding: 100px 0;
    background: var(--gray-50);
    position: relative;
    overflow: hidden;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 61, 140, 0.06);
    border: 1px solid rgba(10, 61, 140, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(10, 61, 140, 0.1);
    border-color: var(--primary-light);
}

.mission-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(10, 61, 140, 0.2);
}

.mission-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.mission-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.75rem;
    border-radius: 100px;
    box-shadow: 0 2px 12px rgba(10, 61, 140, 0.06);
    border: 1px solid rgba(10, 61, 140, 0.08);
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(10, 61, 140, 0.12);
    border-color: var(--secondary);
}

.value-item i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.value-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        gap: 1rem;
    }
    .value-item {
        padding: 0.75rem 1.25rem;
    }
}

/* ===== Services Section (Tabbed Layout) ===== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #071e3d 0%, #0a3068 100%);
    position: relative;
    overflow: hidden;
}

.services-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.services-section .section-header h2 {
    color: var(--white);
}

.services-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.services-tabs-layout {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

/* Vertical Tab Navigation */
.services-tab-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-shrink: 0;
}

.svc-tab-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
}

.svc-icon-box {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.svc-icon-box i {
    font-size: 1.6rem;
    color: rgba(255,255,255,0.5);
    transition: all 0.3s ease;
}

.svc-tab-btn:hover .svc-icon-box {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.2);
}

.svc-tab-btn:hover .svc-icon-box i {
    color: rgba(255,255,255,0.8);
}

.svc-tab-btn.active .svc-icon-box {
    background: var(--secondary);
    border-color: var(--secondary);
    box-shadow: 0 6px 24px rgba(217, 91, 38, 0.45);
    transform: scale(1.1);
}

.svc-tab-btn.active .svc-icon-box i {
    color: #fff;
}

/* Tab Content */
.services-tab-content {
    flex: 1;
    min-width: 0;
}

.svc-panel {
    display: none;
    animation: svcFadeIn 0.45s ease;
}

.svc-panel.active {
    display: block;
}

@keyframes svcFadeIn {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

.svc-panel-inner {
    display: flex;
    align-items: center;
    gap: 48px;
}

/* Text Side */
.svc-text {
    flex: 1;
    min-width: 0;
}

.svc-text h2 {
    color: #fff;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.svc-text > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 6px;
}

.svc-text .svc-sub {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.svc-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 24px;
}

.svc-highlights li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.925rem;
}

.svc-highlights li i {
    color: var(--secondary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.btn-svc {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    background: var(--secondary);
    color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.btn-svc:hover {
    background: #c14e1e;
    transform: translateX(4px);
    box-shadow: 0 6px 20px rgba(217, 91, 38, 0.4);
}

.btn-svc i {
    transition: transform 0.3s ease;
}

.btn-svc:hover i {
    transform: translateX(4px);
}

/* Visual / Illustration Side */
.svc-visual {
    flex: 0 0 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svc-visual-shape {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.svc-visual-shape::before {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 1px dashed rgba(255,255,255,0.08);
}

.svc-visual-shape i {
    font-size: 6rem;
    color: rgba(255,255,255,0.12);
}

/* ===== Service Robots ===== */
.robot {
    position: relative;
    width: 320px;
    animation: robotBob 4s ease-in-out infinite;
    filter: drop-shadow(0 14px 40px rgba(0,0,0,0.35));
}

@keyframes robotBob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

.robot-antenna {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.robot-antenna-ball {
    width: 20px;
    height: 20px;
    background: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--secondary), 0 0 28px rgba(217,91,38,0.5);
    animation: antennaPulse 2s ease-in-out infinite;
}

.robot-antenna-stick {
    width: 4px;
    height: 30px;
    background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
    border-radius: 2px;
}

@keyframes antennaPulse {
    0%, 100% { box-shadow: 0 0 12px var(--secondary), 0 0 28px rgba(217,91,38,0.5); }
    50% { box-shadow: 0 0 22px var(--secondary), 0 0 44px rgba(217,91,38,0.7); transform: scale(1.3); }
}

.robot-head {
    width: 190px;
    height: 120px;
    background: linear-gradient(160deg, rgba(255,255,255,0.2), rgba(255,255,255,0.06));
    border: 2px solid rgba(255,255,255,0.18);
    border-radius: 40px 40px 28px 28px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 50px;
    padding-top: 28px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
}

.robot-eye {
    width: 34px;
    height: 34px;
    background: radial-gradient(circle at 35% 35%, #b3f5ff, #00e5ff);
    border-radius: 50%;
    box-shadow: 0 0 12px #00e5ff, 0 0 24px rgba(0,229,255,0.4);
    position: relative;
    animation: robotBlink 5s ease-in-out infinite;
}

.robot-eye::after {
    content: '';
    position: absolute;
    top: 6px;
    left: 8px;
    width: 11px;
    height: 11px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
}

@keyframes robotBlink {
    0%, 42%, 48%, 94%, 100% { transform: scaleY(1); }
    45% { transform: scaleY(0.08); }
    96% { transform: scaleY(0.08); }
}

.robot-mouth {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 5px;
    background: linear-gradient(90deg, transparent, rgba(0,229,255,0.5), transparent);
    border-radius: 2px;
}

.robot-neck {
    width: 40px;
    height: 14px;
    background: rgba(255,255,255,0.07);
    margin: 0 auto;
}

.robot-body {
    width: 250px;
    height: 210px;
    background: linear-gradient(160deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04));
    border: 2px solid rgba(255,255,255,0.14);
    border-radius: 28px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.12);
}

.robot-arm {
    position: absolute;
    width: 36px;
    height: 110px;
    background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    top: 24px;
}

.robot-arm::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 42px;
    height: 22px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 0 14px 14px;
}

.robot-arm.left-arm {
    left: -48px;
    transform-origin: top center;
    animation: armSwayL 3.5s ease-in-out infinite;
}

.robot-arm.right-arm {
    right: -48px;
    transform-origin: top center;
    animation: armSwayR 3.5s ease-in-out infinite;
}

@keyframes armSwayL {
    0%, 100% { transform: rotate(4deg); }
    50% { transform: rotate(-6deg); }
}

@keyframes armSwayR {
    0%, 100% { transform: rotate(-4deg); }
    50% { transform: rotate(6deg); }
}

.robot-screen {
    width: 180px;
    height: 130px;
    background: rgba(0,5,20,0.5);
    border-radius: 16px;
    border: 1px solid rgba(0,229,255,0.1);
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.robot-legs {
    display: flex;
    justify-content: center;
    gap: 32px;
    margin-top: 6px;
}

.robot-leg {
    width: 42px;
    height: 56px;
    background: linear-gradient(180deg, rgba(255,255,255,0.1), rgba(255,255,255,0.03));
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 10px 10px 16px 16px;
    position: relative;
}

.robot-leg::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: -6px;
    width: 54px;
    height: 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 4px 10px 6px 6px;
}

/* --- Motor Robot Screen --- */
.screen-motor {
    background: radial-gradient(ellipse at bottom, rgba(217,91,38,0.15), transparent 70%);
}

.screen-motor .motor-icon {
    font-size: 2.8rem;
    color: var(--secondary);
    filter: drop-shadow(0 0 10px rgba(217,91,38,0.6));
    animation: carDrive 1.5s ease-in-out infinite;
    z-index: 2;
    margin-bottom: 6px;
}

@keyframes carDrive {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    25% { transform: translateX(3px) rotate(1deg); }
    75% { transform: translateX(-3px) rotate(-1deg); }
}

.motor-road {
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.2);
}

.motor-road-lines {
    position: absolute;
    bottom: 15px;
    left: 0;
    width: 300%;
    display: flex;
    gap: 10px;
    animation: roadMove 1.2s linear infinite;
}

.motor-road-lines span {
    width: 10px;
    height: 2px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
    border-radius: 1px;
}

@keyframes roadMove {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.33%); }
}

.motor-wheels {
    position: absolute;
    bottom: 17px;
    width: 80px;
    display: flex;
    justify-content: space-between;
    z-index: 2;
}

.motor-wheel {
    width: 16px;
    height: 16px;
    border: 2.5px solid var(--secondary);
    border-radius: 50%;
    animation: wheelTurn 0.6s linear infinite;
    position: relative;
}

.motor-wheel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 3px;
    background: var(--secondary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

@keyframes wheelTurn {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Health Robot Screen --- */
.screen-health {
    background: radial-gradient(ellipse at center, rgba(239,68,68,0.1), transparent 70%);
}

.screen-health .health-heart {
    font-size: 3.2rem;
    color: #ef4444;
    filter: drop-shadow(0 0 12px rgba(239,68,68,0.6));
    animation: heartPump 1.1s ease-in-out infinite;
    z-index: 2;
}

@keyframes heartPump {
    0%, 100% { transform: scale(1); }
    12% { transform: scale(1.3); }
    24% { transform: scale(1); }
    36% { transform: scale(1.18); }
    48% { transform: scale(1); }
}

.ecg-line {
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 45px;
}

.ecg-line polyline {
    fill: none;
    stroke: #ef4444;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: ecgTrace 2s linear infinite;
    filter: drop-shadow(0 0 3px rgba(239,68,68,0.6));
}

@keyframes ecgTrace {
    0% { stroke-dashoffset: 300; }
    100% { stroke-dashoffset: 0; }
}

/* --- Life Robot Screen --- */
.screen-life {
    background: radial-gradient(ellipse at center, rgba(58,109,184,0.15), transparent 70%);
}

.screen-life .life-shield {
    font-size: 4rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 10px rgba(58,109,184,0.5));
    animation: shieldGlow 3s ease-in-out infinite;
}

.screen-life .life-check {
    position: absolute;
    font-size: 1.2rem;
    color: #4ade80;
    filter: drop-shadow(0 0 5px rgba(74,222,128,0.7));
    margin-top: -2px;
}

@keyframes shieldGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(58,109,184,0.5)); transform: scale(1); }
    50% { filter: drop-shadow(0 0 22px rgba(58,109,184,0.8)); transform: scale(1.06); }
}

/* --- Home Robot Screen --- */
.screen-home {
    background: radial-gradient(ellipse at bottom, rgba(251,146,60,0.12), transparent 70%);
}

.screen-home .home-house {
    font-size: 3.4rem;
    color: #fb923c;
    filter: drop-shadow(0 0 10px rgba(251,146,60,0.5));
    z-index: 2;
}

.home-smoke {
    position: absolute;
    top: 8px;
    right: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.home-smoke span {
    display: block;
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: smokeUp 2.5s ease-out infinite;
    opacity: 0;
}

.home-smoke span:nth-child(1) { animation-delay: 0s; }
.home-smoke span:nth-child(2) { animation-delay: 0.7s; width: 8px; height: 8px; }
.home-smoke span:nth-child(3) { animation-delay: 1.4s; width: 5px; height: 5px; }

@keyframes smokeUp {
    0% { opacity: 0; transform: translateY(0) scale(0.5); }
    20% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-22px) translateX(4px) scale(2.5); }
}

/* --- Business Robot Screen --- */
.screen-business {
    background: radial-gradient(ellipse at bottom, rgba(34,197,94,0.1), transparent 70%);
    padding: 8px;
}

.biz-bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 72px;
    width: 100%;
    justify-content: center;
    padding: 0 8px;
}

.biz-bar {
    width: 24px;
    border-radius: 3px 3px 0 0;
    background: linear-gradient(to top, var(--secondary), #fb923c);
    box-shadow: 0 0 8px rgba(217,91,38,0.3);
    transform-origin: bottom;
    animation: barRise 2.5s ease-in-out infinite;
}

.biz-bar:nth-child(1) { height: 38%; animation-delay: 0s; }
.biz-bar:nth-child(2) { height: 65%; animation-delay: 0.12s; }
.biz-bar:nth-child(3) { height: 50%; animation-delay: 0.24s; }
.biz-bar:nth-child(4) { height: 82%; animation-delay: 0.36s; }

@keyframes barRise {
    0%, 100% { transform: scaleY(0.2); opacity: 0.3; }
    20%, 80% { transform: scaleY(1); opacity: 1; }
}

.biz-icon {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.25);
}

/* --- Travel Robot Screen --- */
.screen-travel {
    background: radial-gradient(ellipse at center, rgba(0,229,255,0.08), transparent 70%);
}

.screen-travel .travel-globe {
    font-size: 3.8rem;
    color: rgba(0,229,255,0.25);
}

.screen-travel .travel-plane {
    font-size: 1.3rem;
    color: #00e5ff;
    filter: drop-shadow(0 0 6px rgba(0,229,255,0.6));
    animation: planeCircle 3s linear infinite;
    position: absolute;
}

@keyframes planeCircle {
    0% { transform: rotate(0deg) translateX(38px) rotate(0deg); }
    100% { transform: rotate(360deg) translateX(38px) rotate(-360deg); }
}

/* Robot responsive */
@media (max-width: 1024px) {
    .robot { transform: scale(0.75); }
}

@media (max-width: 768px) {
    .robot { transform: scale(0.6); }
    .svc-visual { min-height: 300px; }
}

/* ===== Plans Section ===== */
.plans-section {
    padding: 100px 0;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.plan-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.plan-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
}

.plan-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 8px 24px;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
}

.plan-header h3 {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.plan-header p {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.plan-price {
    padding: 32px 0;
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 24px;
}

.plan-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-500);
    vertical-align: top;
}

.plan-price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
}

.plan-price .period {
    color: var(--gray-500);
}

.plan-features {
    text-align: left;
    margin-bottom: 32px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-100);
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    font-size: 0.875rem;
}

.plan-features li i.fa-check {
    color: var(--success);
}

.plan-features li.disabled {
    color: var(--gray-300);
}

.plan-features li.disabled i {
    color: var(--gray-300);
}

/* ===== Why Choose Us Section ===== */
.why-us-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(10, 61, 140, 0.08);
    box-shadow: 0 4px 20px rgba(10, 61, 140, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(10, 61, 140, 0.1);
    border-color: var(--primary-light);
}

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(10, 61, 140, 0.08), rgba(217, 91, 38, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.4rem;
    color: var(--primary);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(10, 61, 140, 0.2);
}

.why-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.why-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== Process Section ===== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #071e3d 0%, #0a3068 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.process-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.process-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    position: relative;
    z-index: 1;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-step:hover .step-icon {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.step-icon i {
    font-size: 2.5rem;
    color: var(--primary);
}

.process-step h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 20px rgba(10, 61, 140, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(10, 61, 140, 0.08);
    overflow: hidden;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.07;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(10, 61, 140, 0.1);
    border-color: var(--primary-light);
}

.testimonial-rating {
    margin-bottom: 20px;
}

.testimonial-rating i {
    color: var(--accent);
    font-size: 1.125rem;
}

.testimonial-text {
    font-size: 1.0625rem;
    color: var(--gray-700);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.125rem;
    transition: var(--transition-bounce);
    box-shadow: 0 4px 12px rgba(10, 61, 140, 0.2);
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(10, 61, 140, 0.3);
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* ===== Quote Section ===== */
.quote-section {
    padding: 100px 0;
}

.quote-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quote-content h2 {
    margin-bottom: 16px;
}

.quote-content > p {
    color: var(--gray-500);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.quote-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit i {
    color: var(--success);
    font-size: 1.25rem;
}

.quote-contact p {
    color: var(--gray-500);
    margin-bottom: 8px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.quote-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(9, 30, 66, 0.12);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.quote-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.quote-form h3 {
    text-align: center;
    margin-bottom: 32px;
}

/* Multi-step quote form */
.quote-steps {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 28px;
    position: relative;
}
.quote-step {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--gray-300);
    padding: 8px 18px;
    position: relative;
    transition: all 0.3s ease;
}
.quote-step span {
    display: inline-flex;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-300);
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    transition: all 0.3s ease;
}
.quote-step.active { color: var(--primary); }
.quote-step.active span {
    background: var(--primary);
    color: white;
    box-shadow: 0 2px 8px rgba(10, 61, 140, 0.3);
}
.quote-step.completed { color: var(--secondary); }
.quote-step.completed span {
    background: var(--secondary);
    color: white;
}

.quote-step-panel {
    display: none;
    animation: fadeSlideIn 0.35s ease;
}
.quote-step-panel.active { display: block; }
@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
    text-align: center;
}

/* Insurance type picker */
.insurance-picker {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.ins-option input[type="radio"] { display: none; }
.ins-option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 10px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
}
.ins-option-card i {
    font-size: 1.6rem;
    color: var(--gray-300);
    transition: all 0.25s;
}
.ins-option-card strong {
    font-size: 0.85rem;
    color: var(--gray-400);
    font-weight: 700;
}
.ins-option-card small {
    font-size: 0.7rem;
    color: var(--gray-300);
}
.ins-option-card:hover {
    border-color: var(--gray-200);
    background: var(--gray-50);
    transform: translateY(-2px);
}
.ins-option input:checked + .ins-option-card {
    border-color: var(--primary);
    background: rgba(10, 61, 140, 0.04);
    box-shadow: 0 0 0 4px rgba(10, 61, 140, 0.08);
}
.ins-option input:checked + .ins-option-card i { color: var(--primary); }
.ins-option input:checked + .ins-option-card strong { color: var(--primary); }

/* Quote nav buttons */
.quote-nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.quote-nav-buttons .btn { flex: 1; }
.quote-prev-btn {
    flex: 0 0 auto !important;
    padding: 14px 24px;
}

/* Checkbox group */
.checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.check-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--gray-400);
}
.check-option:hover { border-color: var(--gray-200); }
.check-option input[type="checkbox"] { accent-color: var(--primary); }
.check-option:has(input:checked) {
    border-color: var(--primary);
    background: rgba(10, 61, 140, 0.04);
    color: var(--primary);
}

@media (max-width: 480px) {
    .insurance-picker { grid-template-columns: repeat(2, 1fr); }
    .quote-steps { flex-wrap: wrap; gap: 4px; }
    .quote-step { font-size: 0.7rem; padding: 6px 10px; }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-md);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(10, 61, 140, 0.1);
    transform: translateY(-1px);
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.contact-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: 0 4px 20px rgba(10, 61, 140, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 61, 140, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(10, 61, 140, 0.1);
    border-color: var(--primary-light);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-bounce);
}

.contact-card:hover .contact-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(10, 61, 140, 0.3);
}

.contact-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.contact-card h3 {
    margin-bottom: 12px;
}

.contact-card p {
    color: var(--gray-500);
    font-size: 0.9375rem;
    line-height: 1.8;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #071e3d 0%, #0a3068 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta-content {
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-about p {
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(10, 61, 140, 0.4);
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.125rem;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    font-size: 0.875rem;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .nav-links, .nav-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        min-height: 400px;
    }

    .about-card-3 {
        top: auto;
        bottom: 180px;
        right: 10px;
    }

    .about-card-4 {
        left: auto;
        right: 50%;
        transform: translateX(50%);
    }

    .services-tabs-layout {
        gap: 24px;
    }

    .svc-icon-box {
        width: 60px;
        height: 60px;
    }

    .svc-icon-box i {
        font-size: 1.3rem;
    }

    .svc-visual {
        flex: 0 0 240px;
    }

    .svc-visual-shape {
        width: 220px;
        height: 220px;
    }

    .svc-visual-shape i {
        font-size: 4.5rem;
    }

    .plans-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .plan-card.featured {
        transform: scale(1);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .quote-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
    }

    .hero-stats {
        gap: 24px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .services-tabs-layout {
        flex-direction: column;
        align-items: stretch;
    }

    .services-tab-nav {
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .svc-icon-box {
        width: 54px;
        height: 54px;
    }

    .svc-icon-box i {
        font-size: 1.15rem;
    }

    .svc-tab-btn.active .svc-icon-box {
        transform: scale(1.05);
    }

    .svc-panel-inner {
        flex-direction: column;
        gap: 32px;
    }

    .svc-text h2 {
        font-size: 1.75rem;
    }

    .svc-highlights {
        grid-template-columns: 1fr;
    }

    .svc-visual {
        flex: none;
        width: 100%;
    }

    .svc-visual-shape {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .svc-visual-shape i {
        font-size: 3.5rem;
    }

    .plans-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .quote-benefits {
        grid-template-columns: 1fr;
    }

    .plan-price .amount {
        font-size: 2.5rem;
    }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: whatsappPulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 72px;
    background: #333;
    color: white;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-float .whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #333;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

@keyframes whatsappPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 54px;
        height: 54px;
        font-size: 1.5rem;
    }
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
}
