/* ===========================
   VARIABLES & RESET
=========================== */

:root {
    --accent: #ff7043;
    --bg: #fdfbff;
    --text: #222;
    --muted: #666;
    /* Aliases used by some sections/pages */
    --color-primary: var(--accent);
    --font-heading: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    height: 100%;
}

body {
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}


/* ===========================
   HEADER
=========================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 30;
}

.logo {
    font-weight: 700;
    font-size: 18px;
}

.nav {
    display: flex;
    gap: 18px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    position: relative;
}


/* Active page state */

.nav a.active {
    color: var(--accent);
    font-weight: 700;
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -8px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}


/* ===========================
   HERO & IMAGE BACKGROUND
=========================== */

.hero {
    position: relative;
    z-index: 0;
    /* create a stacking context so the hero animation can't float over later sections */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    overflow: visible;
}


/* ===========================
   INTERACTIVE ANIMATED HERO CANVAS
=========================== */


/* Interactive hero animation container */

.hero-canvas {
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 500px;
    z-index: 0;
    /* behind hero-inner but above hero background */
    transition: opacity 0.4s ease-in-out;
    /* ONLY fade, no layout changes */
}


/* When used as a background while scrolling */

.hero-canvas.bg-full {
    position: fixed;
    top: 0;
    /* IMPORTANT: keep the same horizontal alignment as normal state */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    z-index: -1;
    /* always behind all content */
    opacity: 0.25;
    /* softer background */
    pointer-events: none;
    /* don't block clicks */
}


/* Network Graph Container */

.network-graph {
    position: relative;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 112, 67, 0.05), rgba(255, 87, 34, 0.02), transparent);
}


/* Central Hub (Your Business) */

.central-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #ff7043, #ff5722);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 15px rgba(255, 112, 67, 0.1), 0 0 0 30px rgba(255, 112, 67, 0.05), 0 10px 40px rgba(255, 112, 67, 0.3);
    animation: hub-pulse 3s ease-in-out infinite;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.central-hub svg {
    width: 60px;
    height: 60px;
    color: #ffffff;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    stroke-width: 2.5;
}

.central-hub:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 0 20px rgba(255, 112, 67, 0.15), 0 0 0 40px rgba(255, 112, 67, 0.08), 0 15px 50px rgba(255, 112, 67, 0.4);
}

@keyframes hub-pulse {
    0%,
    100% {
        box-shadow: 0 0 0 15px rgba(255, 112, 67, 0.1), 0 0 0 30px rgba(255, 112, 67, 0.05), 0 10px 40px rgba(255, 112, 67, 0.3);
    }
    50% {
        box-shadow: 0 0 0 25px rgba(255, 112, 67, 0.15), 0 0 0 50px rgba(255, 112, 67, 0.08), 0 15px 50px rgba(255, 112, 67, 0.4);
    }
}


/* Orbital Nodes (Services) */

.orbital-node {
    position: absolute;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffffff, #f5f5f5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 5;
}

.orbital-node svg {
    width: 38px;
    height: 38px;
    color: #ff7043;
    stroke-width: 2.5;
    transition: all 0.3s ease;
}

.orbital-node:hover {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 8px 35px rgba(255, 112, 67, 0.3);
}

.orbital-node:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 2px 6px rgba(255, 112, 67, 0.4));
}


/* Node Positions */

.node-1 {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    animation: float-node-1 4s ease-in-out infinite;
}

.node-2 {
    top: 30%;
    right: 15%;
    animation: float-node-2 5s ease-in-out infinite;
}

.node-3 {
    bottom: 20%;
    right: 10%;
    animation: float-node-3 4.5s ease-in-out infinite;
}

.node-4 {
    bottom: 15%;
    left: 10%;
    animation: float-node-4 5.5s ease-in-out infinite;
}

.node-5 {
    top: 25%;
    left: 12%;
    animation: float-node-5 4.8s ease-in-out infinite;
}

@keyframes float-node-1 {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes float-node-2 {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-20px) translateX(10px);
    }
}

@keyframes float-node-3 {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(15px) translateX(-10px);
    }
}

@keyframes float-node-4 {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(10px) translateX(15px);
    }
}

@keyframes float-node-5 {
    0%,
    100% {
        transform: translateY(0) translateX(0);
    }
    50% {
        transform: translateY(-18px) translateX(-12px);
    }
}


/* Connection Lines */

.connection-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, rgba(255, 112, 67, 0.3), rgba(255, 112, 67, 0.6), rgba(255, 112, 67, 0.3));
    transform-origin: left center;
    animation: pulse-line 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes pulse-line {
    0%,
    100% {
        opacity: 0.3;
        background: linear-gradient(90deg, rgba(255, 112, 67, 0.2), rgba(255, 112, 67, 0.5), rgba(255, 112, 67, 0.2));
    }
    50% {
        opacity: 0.8;
        background: linear-gradient(90deg, rgba(255, 112, 67, 0.4), rgba(255, 112, 67, 0.8), rgba(255, 112, 67, 0.4));
    }
}


/* Data Particles */

.data-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #ff7043;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 112, 67, 0.6);
    animation: travel-particle 3s linear infinite;
}

@keyframes travel-particle {
    0% {
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}


/* Growth Chart Animation */

.growth-indicator {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 100px;
    height: 80px;
    opacity: 0.7;
}

.bar {
    position: absolute;
    bottom: 0;
    width: 18px;
    background: linear-gradient(180deg, #ff7043, #ff5722);
    border-radius: 4px 4px 0 0;
    animation: grow-bar 2s ease-in-out infinite;
}

.bar:nth-child(1) {
    left: 0;
    height: 30%;
    animation-delay: 0s;
}

.bar:nth-child(2) {
    left: 28px;
    height: 50%;
    animation-delay: 0.2s;
}

.bar:nth-child(3) {
    left: 56px;
    height: 75%;
    animation-delay: 0.4s;
}

.bar:nth-child(4) {
    left: 84px;
    height: 95%;
    animation-delay: 0.6s;
}

@keyframes grow-bar {
    0%,
    100% {
        transform: scaleY(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}


/* Click Ripple Effect */

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 112, 67, 0.3);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ripple-effect 1s ease-out forwards;
}

@keyframes ripple-effect {
    0% {
        width: 0;
        height: 0;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}


/* RESPONSIVE ADJUSTMENTS */

@media (max-width: 900px) {
    .hero-canvas {
        top: 60px;
        height: 400px;
    }
    .central-hub {
        width: 100px;
        height: 100px;
    }
    .central-hub svg {
        width: 50px;
        height: 50px;
    }
    .orbital-node {
        width: 65px;
        height: 65px;
    }
    .orbital-node svg {
        width: 32px;
        height: 32px;
    }
    .growth-indicator {
        width: 80px;
        height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-canvas {
        top: 50px;
        height: 300px;
    }
    .central-hub {
        width: 80px;
        height: 80px;
    }
    .central-hub svg {
        width: 40px;
        height: 40px;
    }
    .orbital-node {
        width: 50px;
        height: 50px;
    }
    .orbital-node svg {
        width: 25px;
        height: 25px;
    }
    .growth-indicator {
        display: none;
    }
}


/* Hero content overlay */

.hero-inner {
    position: relative;
    z-index: 35;
    text-align: center;
    max-width: 900px;
    margin-top: 40vh;
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(10, 10, 20, 0.05);
}

.hero-inner h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

.hero-inner p {
    color: var(--muted);
    margin-bottom: 18px;
}

.btn-cta {
    display: inline-block;
    background: var(--accent);
    color: #070606;
    padding: 12px 18px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}


/* ===========================
   ULTRA PREMIUM 3D ANIMATED TICKER
=========================== */

.ticker-wrapper {
    position: relative;
    background: linear-gradient(135deg, #000000 0%, #1a0a0a 25%, #0a0a1a 50%, #1a0a0a 75%, #000000 100%);
    background-size: 400% 400%;
    animation: gradient-wave 15s ease infinite;
    padding: 25px 0;
    overflow: hidden;
    border-top: 2px solid transparent;
    border-bottom: 2px solid transparent;
    border-image: linear-gradient(90deg, transparent, #ff7043, #ff5722, #ff7043, transparent) 1;
    box-shadow: 0 -5px 30px rgba(255, 112, 67, 0.3), 0 5px 30px rgba(255, 112, 67, 0.3), inset 0 0 50px rgba(255, 112, 67, 0.05);
}

@keyframes gradient-wave {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* Background Particles */

.ticker-bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.ticker-bg-particles span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.8), transparent);
    border-radius: 50%;
    animation: float-particles 8s infinite ease-in-out;
    opacity: 0;
}

.ticker-bg-particles span:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.ticker-bg-particles span:nth-child(2) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.ticker-bg-particles span:nth-child(3) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.ticker-bg-particles span:nth-child(4) {
    left: 55%;
    animation-delay: 1.5s;
    animation-duration: 6.5s;
}

.ticker-bg-particles span:nth-child(5) {
    left: 70%;
    animation-delay: 0.5s;
    animation-duration: 7.5s;
}

.ticker-bg-particles span:nth-child(6) {
    left: 15%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.ticker-bg-particles span:nth-child(7) {
    left: 35%;
    animation-delay: 2.5s;
    animation-duration: 6s;
}

.ticker-bg-particles span:nth-child(8) {
    left: 50%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.ticker-bg-particles span:nth-child(9) {
    left: 65%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.ticker-bg-particles span:nth-child(10) {
    left: 85%;
    animation-delay: 2s;
    animation-duration: 6.5s;
}

@keyframes float-particles {
    0% {
        bottom: -20px;
        opacity: 0;
        transform: translateX(0) scale(0.5);
    }
    20% {
        opacity: 0.6;
    }
    80% {
        opacity: 0.4;
    }
    100% {
        bottom: 120%;
        opacity: 0;
        transform: translateX(50px) scale(1.5);
    }
}


/* Light Beam Effect */

.light-beam {
    position: absolute;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 112, 67, 0.15), rgba(255, 87, 34, 0.25), rgba(255, 112, 67, 0.15), transparent);
    animation: light-sweep 4s infinite;
    z-index: 2;
    transform: skewX(-20deg);
}

@keyframes light-sweep {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}


/* Ticker Track */

.ticker-track {
    position: relative;
    z-index: 3;
}

.ticker-content {
    display: flex;
    animation: ticker-scroll 40s linear infinite;
    width: max-content;
}


/* Pause on hover */

.ticker-wrapper:hover .ticker-content {
    animation-play-state: paused;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Ticker Items */

.ticker-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 60px;
    position: relative;
    transition: transform 0.3s ease;
}

.ticker-item:hover {
    transform: scale(1.05);
}

.ticker-item::after {
    content: '';
    position: absolute;
    right: 20px;
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, transparent, #ff7043, transparent);
    animation: separator-pulse 2s ease-in-out infinite;
}

@keyframes separator-pulse {
    0%,
    100% {
        opacity: 0.3;
        height: 40px;
    }
    50% {
        opacity: 1;
        height: 60px;
    }
}


/* Icon Wrapper with 3D Effect */

.ticker-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ticker-icon {
    font-size: 32px;
    display: inline-block;
    position: relative;
    z-index: 2;
    animation: icon-3d-rotate 4s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 112, 67, 0.8));
}

@keyframes icon-3d-rotate {
    0%,
    100% {
        transform: rotateY(0deg) rotateZ(0deg) scale(1);
    }
    25% {
        transform: rotateY(180deg) rotateZ(-10deg) scale(1.15);
    }
    50% {
        transform: rotateY(360deg) rotateZ(0deg) scale(1);
    }
    75% {
        transform: rotateY(540deg) rotateZ(10deg) scale(1.15);
    }
}


/* Glowing background for icon */

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.4), rgba(255, 87, 34, 0.2), transparent);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glow-pulse {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }
}


/* Text Wrapper */

.ticker-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


/* Animated Number */

.ticker-number {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #ff7043 25%, #ff5722 50%, #ff7043 75%, #ffffff 100%);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: number-gradient 3s ease infinite;
    text-shadow: 0 0 20px rgba(255, 112, 67, 0.5);
    letter-spacing: 2px;
    line-height: 1;
}

@keyframes number-gradient {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}


/* Label Text */

.ticker-label {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    animation: text-glow 3s ease-in-out infinite;
}

@keyframes text-glow {
    0%,
    100% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 5px rgba(255, 112, 67, 0.3);
    }
    50% {
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 112, 67, 0.6);
    }
}


/* RESPONSIVE TICKER */

@media (max-width: 900px) {
    .ticker-item {
        padding: 0 40px;
        gap: 15px;
    }
    .ticker-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    .ticker-icon {
        font-size: 28px;
    }
    .ticker-number {
        font-size: 28px;
    }
    .ticker-label {
        font-size: 11px;
    }
}

@media (max-width: 768px) {
    .ticker-wrapper {
        padding: 20px 0;
    }
    .ticker-item {
        padding: 0 30px;
    }
    .ticker-icon-wrapper {
        width: 45px;
        height: 45px;
    }
    .ticker-icon {
        font-size: 24px;
    }
    .ticker-number {
        font-size: 24px;
    }
    .ticker-label {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .ticker-wrapper {
        padding: 15px 0;
    }
    .ticker-item {
        padding: 0 25px;
        gap: 12px;
    }
    .ticker-icon-wrapper {
        width: 40px;
        height: 40px;
    }
    .ticker-icon {
        font-size: 20px;
    }
    .icon-glow {
        width: 50px;
        height: 50px;
    }
    .ticker-number {
        font-size: 20px;
    }
    .ticker-label {
        font-size: 9px;
    }
}


/* ===========================
   SERVICE HIGHLIGHTS (Option B)
   - Compact layout so all icons fit on screen
=========================== */

.services-highlights {
    padding: 44px 20px 6px;
}

.highlights-container {
    max-width: 1100px;
    margin: 0 auto;
}

.highlights-header {
    text-align: center;
    margin-bottom: 16px;
}

.highlights-header h2 {
    font-size: 28px;
    line-height: 1.15;
    margin-bottom: 8px;
}

.highlights-header p {
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto;
    font-size: 14px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

.highlight-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(10, 10, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 112, 67, 0.50);
    box-shadow: 0 16px 44px rgba(255, 112, 67, 0.18);
}

.highlight-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 4px;
}


/* Smaller icon so all 5 fit nicely */

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.12), rgba(255, 112, 67, 0.04));
    border: 1px solid rgba(255, 112, 67, 0.18);
    flex: 0 0 auto;
}

.highlight-icon svg {
    width: 20px;
    height: 20px;
}

.highlight-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.16), rgba(0, 0, 0, 0.04));
    border: 1px solid rgba(255, 112, 67, 0.18);
    color: #151515;
    line-height: 1;
}

.highlight-card h3 {
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: -0.2px;
    line-height: 1.2;
    margin: 0;
}

.highlight-card p {
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.4;
    margin: 0 0 4px 0;
    display: -webkit-box;
    -webkit-box-align: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.highlight-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 6px;
    font-size: 12.5px;
    color: #2b2b2b;
}

.highlight-list li {
    position: relative;
    padding-left: 16px;
    line-height: 1.25;
}

.highlight-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 112, 67, 0.14);
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .highlights-header h2 {
        font-size: 24px;
    }
    .highlights-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 480px) {
    .services-highlights {
        padding: 34px 14px 0;
    }
    .highlights-header p {
        font-size: 13px;
    }
    .highlight-card {
        padding: 12px;
    }
    .highlight-card p {
        display: none;
        /* tighter on mobile so icons/text fit */
    }
}


/* TOP ICON ROW STYLES */

.services-icons-row {
    margin-top: 5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    padding: 0 1rem;
}

.services-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
    color: #090000;
    font-weight: 500;
}

.services-icon .icon {
    font-size: 30px;
    margin-bottom: 0.4rem;
}


/* CARD GRID */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 20px;
}

.service-card {
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 1.5rem;
    border-radius: 20px;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
    background: #fff;
}


/* Highlight on hover (mouse move) */

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 112, 67, 0.65);
    box-shadow: 0 16px 40px rgba(255, 112, 67, 0.18);
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.08), #ffffff);
}

.service-card__title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.service-card__desc {
    font-size: 0.95rem;
    color: var(--muted);
}


/* Show points with dot representation in ALL 4 cards */

.service-card__features {
    display: grid;
    gap: 8px;
    margin-top: 1rem;
    padding-left: 1.2rem;
    font-size: 0.95rem;
    list-style: disc;
}

.service-card__features li {
    color: #2b2b2b;
    line-height: 1.35;
}

.service-card__features li::marker {
    color: var(--accent);
    font-size: 1.15em;
}


/* Keep the box highlighted when clicked (active) */

.service-card--active {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.16), rgba(255, 255, 255, 0.92));
    box-shadow: 0 18px 55px rgba(255, 112, 67, 0.22);
    transform: translateY(-2px);
}

.service-card--active .service-card__features {
    display: grid;
}


/* ===========================
   MAIN CONTENT
=========================== */

main {
    position: relative;
    z-index: 20;
}

.services {
    padding: 60px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.card {
    background: linear-gradient(135deg, #fff4e8, #ffe4d1);
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(20, 20, 30, 0.04);
}

.feature-block {
    padding: 40px 20px;
    max-width: 900px;
    margin: auto;
}

.cta-section {
    padding: 48px 20px;
    text-align: center;
    background: #ffe8e0;
    margin-top: 28px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-big {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent);
    color: white;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}

.cta-outline {
    display: inline-block;
    padding: 12px 24px;
    border: 2px solid var(--accent);
    background: transparent;
    color: var(--accent);
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    text-decoration: none;
}


/* ===========================
   PLANS SECTION
=========================== */

.plans-section {
    padding: 70px 20px;
    background: linear-gradient(180deg, #ffffff, #fff6f2);
}

.plans-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.plans-title {
    font-size: 34px;
    text-align: center;
    margin-bottom: 10px;
}

.plans-subtitle {
    text-align: center;
    color: var(--muted);
    max-width: 820px;
    margin: 0 auto 26px;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    margin-top: 22px;
}

.plan-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(10, 10, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 10, 20, 0.10);
}

.plan-card--featured {
    border: 2px solid var(--accent);
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.08), #ffffff);
}

.plan-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    background: var(--accent);
    color: #0b0b0b;
    padding: 7px 10px;
    border-radius: 999px;
}

.plan-name {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
}

.plan-price {
    font-size: 30px;
    font-weight: 900;
    margin-bottom: 14px;
}

.plan-price span {
    font-size: 13px;
    color: var(--muted);
    font-weight: 700;
}

.plan-features {
    margin: 0;
    padding-left: 18px;
    color: #2a2a2a;
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.plan-btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 12px 14px;
    border-radius: 12px;
    background: #111;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

.plan-card--featured .plan-btn {
    background: var(--accent);
    color: #0b0b0b;
}


/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 900px) {
    .menu-toggle {
        display: block;
    }
    .nav {
        display: none;
    }
    .hero-inner {
        margin-top: 54vh;
        /* was 36vh – more space for animation */
        padding: 16px;
    }
    .hero-inner h1 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .hero-inner {
        margin-top: 56vh;
        /* was 30vh */
        padding: 14px 12px;
    }
    .hero-inner h1 {
        font-size: 20px;
    }
}


/* ============================================================
   CONTACT PAGE — PREMIUM MINIMAL STYLE
   (Clean & Fully Formatted)
   ============================================================ */

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}


/* ---------- Background Blur Image ---------- */

.contact-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    background: #05050a;
}

.contact-bg img {
    width: 100%;
    height: 190%;
    object-fit: cover;
    filter: blur(14px) brightness(0.38) saturate(1.05);
    transform: scale(1.06);
}


/* Dark premium overlay (improves contrast + looks modern) */

.contact-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 20% 15%, rgba(255, 112, 67, 0.22), transparent 55%), radial-gradient(circle at 75% 80%, rgba(99, 102, 241, 0.16), transparent 60%), linear-gradient(180deg, rgba(5, 6, 16, 0.92), rgba(5, 6, 16, 0.72) 45%, rgba(0, 0, 0, 0.92));
}


/* ---------- Main Page Layout ---------- */

.contact-main .container {
    padding-top: 110px;
    padding-bottom: 80px;
}


/* ---------- Title Section ---------- */

.contact-hero {
    text-align: center;
    color: #242323;
    margin-bottom: 28px;
}

.contact-hero h1 {
    font-size: 44px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #ffffff;
}

.contact-hero .lead {
    font-size: 17px;
    color: #fff5f5;
    max-width: 900px;
    margin: 0 auto;
}


/* ---------- Grid Layout ---------- */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 28px;
    align-items: flex-start;
}


/* ---------- Card Base Style ---------- */

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 30px rgba(15, 15, 20, 0.06);
}

.card-title {
    font-size: 22px;
    margin-bottom: 16px;
    color: #080201;
}


/* ============================================================
   FORM STYLING
   ============================================================ */

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    background: #fff;
    font-size: 15px;
    color: #3f3f3f;
    margin-bottom: 14px;
}

.contact-form textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-form .two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}


/* Form footer */

.form-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

.btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(90deg, #ff7043, #ff5a2b);
    color: #000000;
    font-weight: 700;
    box-shadow: 0 6px 18px rgba(255, 110, 70, 0.15);
}

.full {
    width: 50%;
}

.muted {
    color: #c5c0c0;
    font-size: 13px;
}


/* ============================================================
   CONTACT INFORMATION PANEL
   ============================================================ */

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    color: #FF7043;
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.18), rgba(255, 112, 67, 0.06));
    border: 1px solid rgba(255, 112, 67, 0.22);
    box-shadow: 0 10px 26px rgba(255, 112, 67, 0.12);
}

.info-icon svg {
    width: 20px;
    height: 20px;
}

.info-label {
    font-weight: 700;
    color: #000000;
    margin-bottom: 4px;
}

.info-link {
    color: #0211e5;
    text-decoration: none;
    font-size: 15px;
}

.info-link:hover {
    text-decoration: underline;
}


/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    /* Contact info FIRST on mobile (your choice) */
    .info-card {
        order: 1;
    }
    .form-card {
        order: 2;
    }
    .contact-hero h1 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 26px;
    }
    .contact-main .container {
        padding-top: 90px;
        padding-left: 14px;
        padding-right: 14px;
    }
}


/* Accessibility helpers */

.visually-hidden,
.sr {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* ============================================================
   ABOUT US PAGE — PREMIUM STYLE
   (Scoped styles to avoid conflicts with existing .card)
   ============================================================ */

.about-main {
    padding-top: 88px;
    /* fixed header offset */
}

.about-hero {
    padding: 84px 0 34px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 112, 67, 0.18), transparent 55%), radial-gradient(circle at 80% 10%, rgba(99, 102, 241, 0.12), transparent 55%), linear-gradient(180deg, #ffffff, #fff7f3);
}

.about-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #111;
    background: rgba(255, 112, 67, 0.14);
    border: 1px solid rgba(255, 112, 67, 0.25);
    padding: 7px 12px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.about-hero h1 {
    font-size: 40px;
    line-height: 1.05;
    letter-spacing: -0.6px;
    margin-bottom: 12px;
}

.about-lead {
    color: var(--muted);
    max-width: 840px;
    font-size: 16px;
    line-height: 1.6;
}

.about-intro {
    padding: 34px 0 10px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 26px;
    align-items: start;
}

.about-intro-content h2 {
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.about-intro-content p {
    color: #2c2c2c;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

.about-stat {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    padding: 14px;
    box-shadow: 0 10px 24px rgba(10, 10, 20, 0.06);
}

.about-stat h3 {
    font-size: 22px;
    color: var(--accent);
    margin-bottom: 6px;
    line-height: 1;
}

.about-stat p {
    margin: 0;
    color: #333;
    font-size: 13px;
    font-weight: 600;
}

.about-video-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #0b0b10;
    box-shadow: 0 18px 55px rgba(10, 10, 20, 0.16);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.yt-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-detail {
    padding: 24px 0 18px;
}

.about-text-section {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(10, 10, 20, 0.06);
}

.about-text-section h2 {
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.about-text-section p {
    color: #2b2b2b;
    line-height: 1.7;
    margin-bottom: 12px;
}

.about-bullets {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: grid;
    gap: 10px;
}

.about-bullets li {
    position: relative;
    padding-left: 18px;
    color: #1f1f1f;
    line-height: 1.45;
    font-weight: 600;
}

.about-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateY(-50%);
    box-shadow: 0 0 0 4px rgba(255, 112, 67, 0.14);
}

.about-cards {
    padding: 40px 0 30px;
}

.about-cards-header {
    text-align: center;
    margin-bottom: 16px;
}

.about-cards-header h2 {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.about-cards-header p {
    color: var(--muted);
    max-width: 780px;
    margin: 0 auto;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.about-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 12px 28px rgba(10, 10, 20, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 112, 67, 0.45);
    box-shadow: 0 16px 40px rgba(255, 112, 67, 0.16);
}

.about-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255, 112, 67, 0.16), rgba(255, 112, 67, 0.06));
    border: 1px solid rgba(255, 112, 67, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 10px;
}

.about-card__icon svg {
    width: 22px;
    height: 22px;
}

.about-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.about-card p {
    color: var(--muted);
    line-height: 1.55;
    font-size: 13.5px;
}

.about-cta {
    padding: 42px 0;
    margin-top: 20px;
    background: radial-gradient(circle at 15% 10%, rgba(255, 112, 67, 0.40), transparent 55%), linear-gradient(135deg, #111 0%, #0b0b12 55%, #111 100%);
    color: #fff;
}

.about-cta h2 {
    font-size: 28px;
    margin-bottom: 8px;
    letter-spacing: -0.4px;
}

.about-cta-lead {
    color: rgba(255, 255, 255, 0.82);
    max-width: 820px;
    margin: 0 auto 18px;
    line-height: 1.65;
}

.about-cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .cta-outline {
    border-color: rgba(255, 112, 67, 0.9);
    color: #fff;
}

.about-cta .cta-outline:hover {
    background: rgba(255, 112, 67, 0.10);
}

@media (max-width: 900px) {
    .about-hero h1 {
        font-size: 32px;
    }
    .about-intro-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .about-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 70px 0 26px;
    }
    .about-kicker {
        font-size: 11px;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
}
/* ===========================
   FAQ SECTION
   =========================== */

.faq-section {
  background: #ffffff; /* white */
  padding: 4rem 0 5rem;
  color: #ffffff;
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  text-align: left;
}

/* ===========================
   FAQ SECTION (UPDATED)
   =========================== */

.faq-section {
  /* Light background like the screenshot, NOT black */
  background: #f9fafb;
  padding: 4rem 0 5rem;
  color: #111827;          /* default text color inside section */
}

.faq-container {
  max-width: 960px;
  margin: 0 auto;
}

/* Heading – dark and bold, like in the image */
.faq-title {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #111827;           /* ensure heading is dark and visible */
  text-align: left;
}

/* FAQ list layout */
.faq-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.faq-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 1rem;
}

/* Orange number (matches screenshot) */
.faq-number {
  font-weight: 800;
  font-size: 1.5rem;
  color: #ff7043;     /* your theme orange */
  line-height: 1;
  padding-top: 1.4rem;
}

/* Card box */
.faq-card {
  background: #ffffff;
  color: #111827;
  border-radius: 1.25rem;
  padding: 1.75rem 2rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease,
              border-color 0.18s ease, background-color 0.18s ease;
  border: 1px solid transparent;
}

/* Question + answer text */
.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111827;
}

.faq-answer {
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-answer strong {
  font-weight: 700;
}

/* HOVER EFFECT (like a subtle card lift) */
.faq-item:hover .faq-card {
  transform: translateY(-4px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.18);
  border-color: #ff7043;      /* thin orange border on hover */
  background-color: #ffffff;
}

.faq-item:hover .faq-number {
  color: #ff5722;             /* slightly deeper orange on hover */
}

/* Responsive */
@media (max-width: 640px) {
  .faq-item {
    grid-template-columns: 1fr;
  }

  .faq-number {
    padding-top: 0;
  }

  .faq-card {
    padding: 1.5rem 1.4rem;
  }
}

/* ===========================
   SITE FOOTER
=========================== */

.site-footer {
    margin-top: 44px;
    background: linear-gradient(135deg, #111 0%, #0b0b12 55%, #111 100%);
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 26px 20px;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 16px;
    align-items: start;
}

.footer-logo {
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.2px;
}

.footer-note {
    margin-top: 6px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
    line-height: 1.55;
    max-width: 520px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 10px 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
    font-weight: 650;
    font-size: 13px;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-privacy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 112, 67, 0.35);
    background: rgba(255, 112, 67, 0.08);
}

.footer-privacy svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
}

.footer-meta {
    grid-column: 1 / -1;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.64);
    font-size: 12px;
}

@media (max-width: 900px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .footer-links {
        justify-content: flex-start;
    }
}


/* ===========================
   PRIVACY PAGE
=========================== */

.privacy-main {
    padding-top: 96px;
    padding-bottom: 60px;
}

.privacy-container {
    max-width: 900px;
}

.privacy-hero {
    text-align: center;
    margin-bottom: 18px;
}

.privacy-hero h1 {
    font-size: 34px;
    margin-bottom: 6px;
    letter-spacing: -0.4px;
}

.privacy-lead {
    color: var(--muted);
    font-size: 14px;
}

.privacy-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    padding: 22px;
    box-shadow: 0 12px 30px rgba(10, 10, 20, 0.06);
}

.privacy-card h2 {
    font-size: 18px;
    margin-top: 16px;
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.privacy-card p {
    color: #2b2b2b;
    line-height: 1.7;
    font-size: 14.5px;
    margin-bottom: 10px;
}

.privacy-card ul {
    padding-left: 18px;
    margin: 8px 0 12px;
    display: grid;
    gap: 6px;
}

.privacy-card li {
    color: #2b2b2b;
    line-height: 1.7;
    font-size: 14.5px;
}

.privacy-inline-link {
    color: #0211e5;
    text-decoration: none;
}

.privacy-inline-link:hover {
    text-decoration: underline;
}

