/* ==========================================
   HERO SECTION - COMPACT & FULLY RESPONSIVE
   All border-radius: 5px
   Mobile top margin added
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8fafc;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ----- CONTAINER ----- */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   HERO SECTION
========================================== */
.ecommerce-hero {
   background: linear-gradient(145deg, #ffffff 0%, #f3f4f6 45%, #1f2937 100%);
    padding: 60px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* subtle bg */
.ecommerce-hero::before,
.ecommerce-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.ecommerce-hero::before {
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, .06) 0%, transparent 70%);
}

.ecommerce-hero::after {
    bottom: -20%;
    left: -5%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, .05) 0%, transparent 70%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* ==========================================
   LEFT CONTENT
========================================== */
.hero-content {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #e0e7ff, #ede9fe);
    color: #4338ca;
    font-size: .8rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 5px;
    width: fit-content;
    border: 1px solid rgba(67, 56, 202, .12);
    transition: .3s;
}

.hero-badge i {
    font-size: .9rem;
}

.hero-badge:hover {
    background: linear-gradient(135deg, #dbeafe, #e0e7ff);
    transform: translateY(-1px);
}

/* Heading */
.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    letter-spacing: -.02em;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    border-radius: 5px;
    opacity: .3;
}

/* Paragraph */
.hero-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #475569;
    max-width: 520px;
}

/* Buttons */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 4px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 34px;
    font-size: .95rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all .3s ease;
    cursor: pointer;
    border: none;
    letter-spacing: .3px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, .3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, .4);
}

.btn-secondary {
    background: #fff;
    color: #1e293b;
    border: 2px solid #e2e8f0;
}

.btn-secondary:hover {
    background: #f8fafc;
    border-color: #94a3b8;
    transform: translateY(-3px);
}

/* ==========================================
   RIGHT DASHBOARD
========================================== */
.hero-dashboard {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

/* ----- FLOATING LOGOS ----- */
.floating-logo {
    position: absolute;
    width: 44px;
    height: 44px;
    object-fit: contain;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 8px;
    border-radius: 5px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06), 0 2px 6px rgba(0, 0, 0, .02);
    border: 1px solid rgba(255, 255, 255, .5);
    transition: .3s;
    animation: floatLogo 5s ease-in-out infinite;
    z-index: 5;
}

.floating-logo:hover {
    transform: scale(1.1) translateY(-4px) !important;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .08);
}

/* Logo positions */
.logo-1 {
    top: 6%;
    left: -6%;
    animation-delay: 0s;
    width: 42px;
    height: 42px;
}
.logo-2 {
    top: 26%;
    right: -10%;
    animation-delay: .6s;
    width: 38px;
    height: 38px;
}
.logo-3 {
    bottom: 30%;
    left: -12%;
    animation-delay: 1.2s;
    width: 44px;
    height: 44px;
}
.logo-4 {
    bottom: 8%;
    right: -8%;
    animation-delay: 1.8s;
    width: 40px;
    height: 40px;
}
.logo-5 {
    top: 6%;
    right: 22%;
    animation-delay: 2.4s;
    width: 36px;
    height: 36px;
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}
/* ==========================================
   3D MACBOOK-STYLE LAPTOP
   Premium silver/white finish, metallic reflections,
   glass screen, hinge, ground shadow, floating hover.
   All border‑radius kept at 5px where appropriate.
========================================== */

/* ----- LAPTOP WRAPPER (outer shell) ----- */
.laptop {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 10px;               /* 5px requested but MacBooks have slightly rounded corners */
    background: linear-gradient(145deg, #ffffff 0%, #e9edf2 100%);
    padding: 14px 14px 50px;          /* top/left/right padding, bottom for chin */
    border: 1px solid #d5dbe3;
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.4s ease;
    z-index: 2;

    /* Metallic shine – subtle top-left highlight */
    &::before {
        content: '';
        position: absolute;
        top: 2px;
        left: 8%;
        width: 84%;
        height: 30%;
        background: linear-gradient(180deg, rgba(255,255,255,0.5) 0%, rgba(255,255,255,0) 100%);
        border-radius: 10px 10px 50% 50% / 10px 10px 30% 30%;
        pointer-events: none;
        z-index: 5;
        opacity: 0.7;
    }

    /* Soft ground shadow (floating) – placed below the laptop */
    &::after {
        content: '';
        position: absolute;
        bottom: -18px;
        left: 10%;
        width: 80%;
        height: 20px;
        background: radial-gradient(ellipse at 50% 0%, rgba(0,0,0,0.20) 0%, transparent 80%);
        border-radius: 50%;
        filter: blur(6px);
        z-index: -1;
        transition: all 0.4s ease;
        pointer-events: none;
    }

    /* Floating hover effect */
    &:hover {
        transform: translateY(-8px);
        box-shadow:
            0 40px 80px rgba(0, 0, 0, 0.22),
            0 16px 40px rgba(0, 0, 0, 0.12);
    }

    /* When hovering, the ground shadow deepens */
    &:hover::after {
        bottom: -22px;
        opacity: 0.8;
        filter: blur(8px);
        transform: scale(1.05);
    }
}

/* ----- HINGE (bottom edge detail) ----- */
.laptop .chin {
    position: absolute;
    bottom: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 5px;
    background: linear-gradient(180deg, #cfd5dc 0%, #a8b0bc 100%);
    border-radius: 5px;
    box-shadow: inset 0 1px 2px rgba(255,255,255,0.8),
                inset 0 -1px 2px rgba(0,0,0,0.1);
    z-index: 3;

    /* Add a tiny hinge lip (extra metallic detail) */
    &::before {
        content: '';
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 4px;
        background: linear-gradient(180deg, #b8c0cc, #e8ecf2);
        border-radius: 5px 5px 0 0;
        box-shadow: 0 -1px 2px rgba(0,0,0,0.05);
    }
}

/* ----- CAMERA DOT ----- */
.laptop .camera-dot {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 7px;
    height: 7px;
    background: radial-gradient(circle at 30% 30%, #4a5568, #1a202c);
    border-radius: 50%;
    border: 1px solid #a0aec0;
    z-index: 3;

    &::after {
        content: '';
        position: absolute;
        top: 1px;
        left: 1px;
        width: 3px;
        height: 3px;
        background: radial-gradient(circle, #ffffff 0%, rgba(255,255,255,0) 100%);
        border-radius: 50%;
        opacity: 0.8;
    }
}

/* ----- SCREEN (3D bezel) ----- */
.laptop .screen {
    position: relative;
    width: 100%;
    padding-bottom: 62%;             /* ~16:10 aspect ratio */
    background: #0b0f17;
    border-radius: 6px;              /* slightly smaller than outer shell */
    overflow: hidden;
    box-shadow:
        inset 0 0 0 2px #2d3748,     /* inner dark bezel edge */
        inset 0 0 12px rgba(0,0,0,0.6),
        0 4px 12px rgba(0,0,0,0.3);
    z-index: 1;

    /* Glass screen reflection (premium effect) */
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 60%;
        height: 100%;
        background: linear-gradient(90deg,
            rgba(255,255,255,0) 0%,
            rgba(255,255,255,0.08) 50%,
            rgba(255,255,255,0) 100%);
        transform: skewX(-25deg);
        pointer-events: none;
        z-index: 2;
        animation: glassShine 6s ease-in-out infinite;
    }

    /* Bezel inner glow (subtle) */
    &::after {
        content: '';
        position: absolute;
        inset: 2px;
        border-radius: 4px;
        box-shadow: inset 0 0 20px rgba(0,0,0,0.3);
        pointer-events: none;
        z-index: 1;
    }
}

/* Glass shine animation */
@keyframes glassShine {
    0%   { left: -100%; opacity: 0; }
    20%  { left: 120%; opacity: 1; }
    40%  { left: 120%; opacity: 0; }
    100% { left: -100%; opacity: 0; }
}

/* ----- DASHBOARD IMAGE (inside screen) ----- */
.laptop .screen .dashboard-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    background: linear-gradient(135deg, #1a2332 0%, #0f1520 100%);
    display: block;
    z-index: 0;
}

/* ----- RESPONSIVE TWEAKS ----- */

/* Tablet */
@media (max-width: 992px) {
    .laptop {
        max-width: 420px;
        padding: 12px 12px 44px;
        border-radius: 8px;
    }
    .laptop .screen {
        border-radius: 5px;
    }
    .laptop .chin {
        width: 56px;
        height: 4px;
        bottom: 12px;
    }
    .laptop .chin::before {
        width: 32px;
        height: 3px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .laptop {
        max-width: 340px;
        padding: 10px 10px 38px;
        border-radius: 6px;
    }
    .laptop .screen {
        border-radius: 4px;
    }
    .laptop .chin {
        width: 44px;
        height: 3px;
        bottom: 10px;
    }
    .laptop .chin::before {
        width: 26px;
        height: 2px;
    }
    .laptop .camera-dot {
        width: 5px;
        height: 5px;
        top: 6px;
    }
    .laptop .camera-dot::after {
        width: 2px;
        height: 2px;
    }
    .laptop::after {
        bottom: -14px;
        height: 14px;
        filter: blur(4px);
    }
    .laptop:hover::after {
        bottom: -16px;
        filter: blur(6px);
    }
}

/* Small phones */
@media (max-width: 480px) {
    .laptop {
        max-width: 260px;
        padding: 8px 8px 30px;
        border-radius: 5px;
    }
    .laptop .screen {
        border-radius: 3px;
    }
    .laptop .screen .dashboard-image {
        border-radius: 2px;
    }
    .laptop .chin {
        width: 32px;
        height: 2px;
        bottom: 8px;
    }
    .laptop .chin::before {
        width: 20px;
        height: 2px;
    }
    .laptop .camera-dot {
        width: 4px;
        height: 4px;
        top: 5px;
    }
    .laptop .camera-dot::after {
        width: 1.5px;
        height: 1.5px;
    }
    .laptop::after {
        bottom: -10px;
        height: 10px;
        filter: blur(3px);
    }
    .laptop:hover::after {
        bottom: -12px;
        filter: blur(4px);
    }
}

/* Extra small screens – hide reflections for performance */
@media (max-width: 360px) {
    .laptop::before {
        display: none;
    }
    .laptop .screen::before {
        display: none;
    }
}
/* ----- FLOATING STATS CARDS ----- */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 12px 18px 12px 14px;
    border-radius: 5px;
    box-shadow: 0 10px 32px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .03);
    border: 1px solid rgba(255, 255, 255, .5);
    min-width: 110px;
    animation: floatCard 4.5s ease-in-out infinite;
    transition: .3s;
    z-index: 4;
}

.floating-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.floating-card img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    flex-shrink: 0;
    border-radius: 5px;
    padding: 5px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card span {
    font-size: .6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .4px;
    color: #94a3b8;
}

.floating-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 1px;
}

/* Card positions */
.floating-card.orders {
    top: -14px;
    right: -6px;
    animation-delay: 0s;
}
.floating-card.orders img {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}

.floating-card.revenue {
    bottom: 24px;
    left: -24px;
    animation-delay: 1s;
}
.floating-card.revenue img {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
}

.floating-card.customers {
    bottom: -6px;
    right: 10px;
    animation-delay: 2s;
}
.floating-card.customers img {
    background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}

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

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-container {
        gap: 40px;
    }
    .hero-content h1 {
        font-size: clamp(1.8rem, 3.8vw, 2.8rem);
    }
    .floating-card.orders {
        top: -10px;
        right: 0;
    }
    .floating-card.revenue {
        bottom: 18px;
        left: -12px;
    }
    .floating-card.customers {
        bottom: -4px;
        right: 4px;
    }
    .floating-logo {
        width: 36px;
        height: 36px;
        padding: 6px;
    }
    .logo-1 {
        left: -2%;
        width: 34px;
        height: 34px;
    }
    .logo-2 {
        right: -4%;
        width: 32px;
        height: 32px;
    }
    .logo-3 {
        left: -6%;
        width: 36px;
        height: 36px;
    }
    .logo-4 {
        right: -2%;
        width: 32px;
        height: 32px;
    }
    .logo-5 {
        right: 18%;
        width: 30px;
        height: 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ecommerce-hero {
        padding: 50px 0;
        min-height: auto;
    }

    /* --- ADDED MOBILE TOP MARGIN --- */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-top: 24px;
    }

    .hero-content {
        align-items: center;
        gap: 16px;
    }
    .hero-content p {
        max-width: 100%;
        font-size: .95rem;
    }
    .hero-buttons {
        justify-content: center;
    }
    .btn-primary,
    .btn-secondary {
        padding: 12px 24px;
        font-size: .9rem;
        width: 100%;
        max-width: 220px;
    }

    .hero-dashboard {
        min-height: 360px;
        padding: 0 6px;
    }

    .laptop {
        max-width: 380px;
        padding: 10px 10px 38px 10px;
    }
    .laptop .screen {
        padding-bottom: 62%;
    }
    .laptop .chin {
        width: 44px;
        height: 4px;
        bottom: 10px;
    }

    .floating-logo {
        width: 30px;
        height: 30px;
        padding: 5px;
    }
    .logo-1 {
        top: 2%;
        left: 0%;
        width: 28px;
        height: 28px;
    }
    .logo-2 {
        top: 18%;
        right: 0%;
        width: 26px;
        height: 26px;
    }
    .logo-3 {
        bottom: 22%;
        left: 0%;
        width: 30px;
        height: 30px;
    }
    .logo-4 {
        bottom: 4%;
        right: 0%;
        width: 26px;
        height: 26px;
    }
    .logo-5 {
        top: 3%;
        right: 14%;
        width: 24px;
        height: 24px;
    }

    .floating-card {
        padding: 8px 14px 8px 10px;
        min-width: 90px;
        gap: 10px;
    }
    .floating-card img {
        width: 28px;
        height: 28px;
        padding: 4px;
    }
    .floating-card h4 {
        font-size: .85rem;
    }
    .floating-card span {
        font-size: .55rem;
    }
    .floating-card.orders {
        top: -4px;
        right: 2px;
    }
    .floating-card.revenue {
        bottom: 12px;
        left: 2px;
    }
    .floating-card.customers {
        bottom: -2px;
        right: 2px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .ecommerce-hero {
        padding: 30px 0;
    }

    /* --- EXTRA TOP MARGIN FOR SMALL PHONES --- */
    .hero-container {
        margin-top: 32px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }
    .hero-content p {
        font-size: .88rem;
        line-height: 1.6;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        max-width: 100%;
        padding: 11px 18px;
        font-size: .85rem;
    }

    .hero-dashboard {
        min-height: 280px;
    }

    .laptop {
        max-width: 260px;
        padding: 8px 8px 30px 8px;
    }
    .laptop .screen {
        border-radius: 4px;
    }
    .laptop .screen .dashboard-image {
        border-radius: 3px;
    }
    .laptop .chin {
        width: 32px;
        height: 3px;
        bottom: 8px;
    }
    .laptop .camera-dot {
        width: 5px;
        height: 5px;
        top: 5px;
    }
    .laptop .camera-dot::after {
        width: 2px;
        height: 2px;
    }

    .floating-logo {
        display: none;
    }

    .floating-card {
        padding: 5px 10px 5px 8px;
        min-width: 70px;
        gap: 6px;
    }
    .floating-card img {
        width: 22px;
        height: 22px;
        padding: 3px;
    }
    .floating-card h4 {
        font-size: .7rem;
    }
    .floating-card span {
        font-size: .45rem;
        letter-spacing: .2px;
    }
    .floating-card.orders {
        top: -2px;
        right: 0;
    }
    .floating-card.revenue {
        bottom: 8px;
        left: 0;
    }
    .floating-card.customers {
        bottom: -4px;
        right: 0;
    }
}

/* Extra small */
@media (max-width: 360px) {
    .hero-container {
        margin-top: 20px;
    }

    .hero-dashboard {
        min-height: 240px;
    }
    .laptop {
        max-width: 200px;
        padding: 6px 6px 24px 6px;
    }
    .laptop .screen {
        border-radius: 3px;
    }
    .laptop .chin {
        width: 24px;
        height: 2px;
        bottom: 6px;
    }
    .floating-card {
        padding: 4px 8px 4px 6px;
        min-width: 60px;
        gap: 4px;
    }
    .floating-card img {
        width: 18px;
        height: 18px;
        padding: 2px;
    }
    .floating-card h4 {
        font-size: .6rem;
    }
    .floating-card span {
        font-size: .4rem;
    }
    .floating-card.orders {
        top: -1px;
        right: -1px;
    }
    .floating-card.revenue {
        bottom: 4px;
        left: -1px;
    }
    .floating-card.customers {
        bottom: -3px;
        right: -1px;
    }
}



.solutions-section {
  --bg: #0A0E17;
  --panel: #10162A;
  --surface: #161D33;
  --surface-border: rgba(255, 255, 255, 0.08);
  --text-primary: #F4F6FB;
  --text-secondary: #8D96B3;
  --accent-blue: #5B7FFF;
  --accent-blue-dim: rgba(91, 127, 255, 0.14);
  --accent-lime: #C6FF5C;

  position: relative;
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  padding: 110px 6vw;
}

.solutions-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Section header ---------- */

.solutions-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--surface-border);
  border-radius: 5px;
  background: var(--surface);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 20px;
}

.solutions-section .section-label i {
  color: var(--accent-blue);
  font-size: 12px;
}

.solutions-section .section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 640px;
  margin: 0 0 16px;
}

.solutions-section .section-title span {
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solutions-section .section-desc {
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 0 0 56px;
}

/* ---------- Grid ---------- */
.solution-card{
    position:relative;
    padding:20px 18px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    box-shadow:0 8px 24px rgba(15,23,42,.06);
}

/* Icon */
.solution-card .icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:50px;
    height:50px;

    border-radius:14px;

    background:linear-gradient(135deg,#ffffff,#d1d5db,#374151);

    color:#111827;

    font-size:20px;

    margin-bottom:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Heading */
.solution-card h3{
    font-family:'Space Grotesk',sans-serif;
    font-size:1.05rem;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

/* Text */
.solution-card p{
    font-size:.92rem;
    line-height:1.7;
    color:#6b7280;
    margin:0;
}
/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solutions-section {
    padding: 80px 6vw;
  }

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

  .solutions-section .section-desc {
    margin-bottom: 40px;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .solution-card:hover {
    transform: none;
  }
}



.solutions-section {
  --bg: #0A0E17;
  --panel: #10162A;
  --surface: #161D33;
  --surface-border: rgba(255, 255, 255, 0.08);
  --text-primary: #F4F6FB;
  --text-secondary: #8D96B3;
  --accent-blue: #5B7FFF;
  --accent-blue-dim: rgba(91, 127, 255, 0.14);
  --accent-lime: #C6FF5C;

  position: relative;
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  padding: 64px 6vw;
}

.solutions-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Section header ---------- */

.solutions-section .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--surface-border);
  border-radius: 5px;
  background: var(--surface);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-lime);
  margin-bottom: 14px;
}

.solutions-section .section-label i {
  color: var(--accent-blue);
  font-size: 12px;
}

.solutions-section .section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 2.2vw, 1.9rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 560px;
  margin: 0 0 10px;
}

.solutions-section .section-title span {
  background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.solutions-section .section-desc {
  max-width: 480px;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0 0 32px;
}

/* ---------- Grid ---------- */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* ==========================================
   White Premium Solution Card
========================================== */
.solution-card{
    position:relative;
    padding:20px 18px;

    background:#ffffff;

    border:1px solid #e5e7eb;

    border-radius:12px;

    box-shadow:0 8px 24px rgba(15,23,42,.06);
}

/* Icon */
.solution-card .icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:50px;
    height:50px;

    border-radius:14px;

    background:linear-gradient(135deg,#ffffff,#d1d5db,#374151);

    color:#111827;

    font-size:20px;

    margin-bottom:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

/* Heading */
.solution-card h3{
    font-family:'Space Grotesk',sans-serif;
    font-size:1.05rem;
    font-weight:700;
    color:#111827;
    margin-bottom:10px;
}

/* Text */
.solution-card p{
    font-size:.92rem;
    line-height:1.7;
    color:#6b7280;
    margin:0;
}
/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .solutions-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .solutions-section {
    padding: 48px 6vw;
  }

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

  .solutions-section .section-desc {
    margin-bottom: 24px;
  }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  .solution-card:hover {
    transform: none;
  }
}

/* ==========================================
   PRICING SECTION - COMPLETE CSS
   All border-radius: 5px
   Fully responsive
========================================== */

/* ----- SECTION WRAPPER ----- */
.pricing-section {
    padding: 80px 0;
    background: #f1f5f9;
    text-align: center;
    position: relative;
}

/* ----- CONTAINER ----- */
.pricing-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ----- SECTION LABEL ----- */
.pricing-section .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #4f46e5;
    background: #e0e7ff;
    padding: 6px 18px;
    border-radius: 5px;
    margin-bottom: 16px;
}

.pricing-section .section-label i {
    margin-right: 6px;
}

/* ----- SECTION TITLE ----- */
.pricing-section .section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 16px;
}

.pricing-section .section-title span {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ----- SECTION DESCRIPTION ----- */
.pricing-section .section-desc {
    font-size: 1.05rem;
    color: #475569;
    max-width: 640px;
    margin: 0 auto 44px auto;
    line-height: 1.7;
}

/* ==========================================
   PRICING GRID
========================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

/* ==========================================
   PRICING CARD
========================================== */
.pricing-card {
    background: #ffffff;
    padding: 36px 28px 32px;
    border-radius: 5px;
    text-align: center;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eef2f6;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
    border-color: #c7d2fe;
}

/* ----- POPULAR BADGE ----- */
.pricing-card .badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 18px;
    border-radius: 5px;
    white-space: nowrap;
}

/* ----- POPULAR CARD STYLES ----- */
.pricing-card.popular {
    border: 2px solid #4f46e5;
    background: linear-gradient(145deg, #ffffff, #f8faff);
    box-shadow: 0 12px 40px rgba(79, 70, 229, 0.08);
    transform: scale(1.02);
}

.pricing-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
    box-shadow: 0 20px 60px rgba(79, 70, 229, 0.12);
}

/* ----- PLAN NAME ----- */
.pricing-card .plan-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
}

/* ----- PRICE ----- */
.pricing-card .price {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0f172a;
    margin: 12px 0 4px;
    line-height: 1.1;
}

.pricing-card .price small {
    font-size: 1rem;
    font-weight: 400;
    color: #94a3b8;
}

/* ----- PRICE DESCRIPTION ----- */
.pricing-card .price-desc {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 20px;
}

/* ----- FEATURES LIST ----- */
.pricing-card ul {
    list-style: none;
    text-align: left;
    margin: 16px 0 28px;
    padding: 0;
    flex: 1;
}

.pricing-card ul li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: #475569;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.pricing-card ul li:last-child {
    border-bottom: none;
}

.pricing-card ul li i {
    color: #4f46e5;
    font-size: 0.8rem;
    width: 18px;
    flex-shrink: 0;
}

/* ----- CTA BUTTON ----- */
.pricing-card .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-decoration: none;
    width: 100%;
    letter-spacing: 0.3px;
}

/* Primary solid button */
.pricing-card .btn-primary:not(.outline) {
    background: linear-gradient(135deg, #2563eb, #4f46e5);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.pricing-card .btn-primary:not(.outline):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(37, 99, 235, 0.4);
}

/* Outline button */
.pricing-card .btn-primary.outline {
    background: transparent;
    color: #4f46e5;
    box-shadow: none;
    border: 2px solid #e0e7ff;
}

.pricing-card .btn-primary.outline:hover {
    background: #e0e7ff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.12);
}

/* ==========================================
   RESPONSIVE
========================================== */

/* Tablets & medium screens */
@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        max-width: 700px;
    }

    .pricing-card.popular {
        transform: scale(1);
        order: -1;
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-card {
        padding: 30px 24px 28px;
    }

    .pricing-card .price {
        font-size: 2.4rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .pricing-section {
        padding: 60px 0;
    }

    .pricing-section .section-desc {
        font-size: 0.95rem;
        margin-bottom: 32px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
    }

    .pricing-card.popular {
        transform: scale(1);
        grid-column: auto;
        max-width: 100%;
        margin: 0;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

    .pricing-card {
        padding: 28px 20px 24px;
    }

    .pricing-card .price {
        font-size: 2.2rem;
    }

    .pricing-card ul li {
        font-size: 0.88rem;
        padding: 6px 0;
    }

    .pricing-card .btn-primary {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .pricing-section {
        padding: 40px 0;
    }

    .pricing-section .section-title {
        font-size: 1.5rem;
    }

    .pricing-section .section-desc {
        font-size: 0.88rem;
        margin-bottom: 24px;
    }

    .pricing-grid {
        gap: 16px;
        max-width: 100%;
    }

    .pricing-card {
        padding: 22px 16px 20px;
    }

    .pricing-card .plan-name {
        font-size: 1.05rem;
    }

    .pricing-card .price {
        font-size: 1.8rem;
    }

    .pricing-card .price small {
        font-size: 0.85rem;
    }

    .pricing-card .price-desc {
        font-size: 0.8rem;
        margin-bottom: 14px;
    }

    .pricing-card ul {
        margin: 12px 0 20px;
    }

    .pricing-card ul li {
        font-size: 0.82rem;
        padding: 5px 0;
        gap: 8px;
    }

    .pricing-card ul li i {
        font-size: 0.7rem;
        width: 16px;
    }

    .pricing-card .badge {
        font-size: 0.6rem;
        padding: 3px 14px;
        top: -10px;
    }

    .pricing-card .btn-primary {
        padding: 11px 18px;
        font-size: 0.85rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .pricing-section {
        padding: 30px 0;
    }

    .pricing-card {
        padding: 18px 12px 16px;
    }

    .pricing-card .plan-name {
        font-size: 0.95rem;
    }

    .pricing-card .price {
        font-size: 1.5rem;
    }

    .pricing-card .price small {
        font-size: 0.75rem;
    }

    .pricing-card ul li {
        font-size: 0.75rem;
        padding: 4px 0;
    }

    .pricing-card .btn-primary {
        padding: 10px 14px;
        font-size: 0.8rem;
    }

    .pricing-card .badge {
        font-size: 0.55rem;
        padding: 2px 12px;
        top: -8px;
    }
}