/* ==========================================
   PURPLETEK SYSTEMS - ELITE PREMIUM DESIGN
   Luxury Tech Aesthetic + Glassmorphism
   ========================================== */

:root {
    /* Deep Purple + Black + White */
    --purple-900: #4C1D95;
    --purple-800: #5B21B6;
    --purple-700: #6D28D9;
    --purple-600: #7C3AED;
    --purple-500: #8B5CF6;
    --purple-400: #A78BFA;

    --black: #0F172A;
    --black-light: #1E293B;
    --white: #FFFFFF;
    --gray: #64748B;
    --gray-light: #CBD5E1;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Glassmorphism Effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
}

.btn-primary {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.6);
}

.btn-secondary {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    color: var(--white);
    border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
    border-color: var(--purple-500);
    background: rgba(124, 58, 237, 0.1);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--purple-600);
}

.btn-outline:hover {
    background: var(--purple-600);
}

.btn-link {
    color: var(--purple-400);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.btn-link:hover {
    gap: 0.75rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    filter: drop-shadow(0 4px 8px rgba(124, 58, 237, 0.3));
    transition: var(--transition);
}

.logo:hover .logo-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--white);
}

.logo-tagline {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--purple-400);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    margin-left: 3rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--purple-400);
}

.btn-cta {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(124, 58, 237, 0.15), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 33, 182, 0.2), transparent 50%);
    animation: gradientPulse 10s ease infinite;
}

@keyframes gradientPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-mockup {
    position: absolute;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(124, 58, 237, 0.4);
    animation: float 6s ease-in-out infinite;
    overflow: hidden;
}

.mockup-1 {
    width: 320px;
    height: 420px;
    top: 5%;
    left: 5%;
}

.mockup-2 {
    width: 180px;
    height: 350px;
    bottom: 5%;
    right: 10%;
    animation-delay: 1.5s;
}

/* Browser Mockup */
.mockup-browser {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
}

.browser-header {
    height: 40px;
    background: #16162a;
    display: flex;
    align-items: center;
    padding: 0 15px;
    gap: 15px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red {
    background: #ff5f56;
}

.dot.yellow {
    background: #ffbd2e;
}

.dot.green {
    background: #27c93f;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 5px;
    font-size: 10px;
    color: #888;
}

.browser-content {
    padding: 12px;
    height: calc(100% - 40px);
    background: #0d0d1a;
}

/* Enhanced Nav */
.mock-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
}

.mock-logo {
    width: 60px;
    height: 15px;
    background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
    border-radius: 3px;
}

.mock-menu {
    display: flex;
    gap: 8px;
    align-items: center;
}

.mock-menu span {
    width: 30px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
}

.mock-menu .menu-btn {
    width: 50px;
    height: 18px;
    background: var(--purple-600);
    border-radius: 4px;
}

/* Hero Area */
.mock-hero-area {
    text-align: center;
    padding: 15px 0;
}

.mock-headline {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.mock-subtext {
    font-size: 8px;
    color: var(--purple-400);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.mock-cta {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    border-radius: 15px;
    font-size: 8px;
    color: white;
    font-weight: 600;
}

/* Feature Cards */
.mock-features {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}

.feature-box {
    flex: 1;
    background: rgba(124, 58, 237, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 8px;
    padding: 10px 5px;
    text-align: center;
}

.feature-box i {
    color: var(--purple-400);
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
}

.feature-box span {
    font-size: 6px;
    color: rgba(255, 255, 255, 0.7);
}

/* Phone Mockup */
.mockup-phone {
    width: 100%;
    height: 100%;
    background: #1a1a2e;
    border-radius: 30px;
    padding: 8px;
    border: 3px solid #333;
}

.phone-notch {
    width: 60px;
    height: 18px;
    background: #0a0a15;
    margin: 0 auto 10px;
    border-radius: 10px;
}

.phone-content {
    height: calc(100% - 28px);
    background: #0d0d1a;
    border-radius: 22px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}

/* App Top Header */
.app-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.app-title {
    font-size: 12px;
    font-weight: 700;
    color: white;
}

.app-top i {
    color: var(--purple-400);
    font-size: 12px;
}

/* Stats Mini Cards */
.app-stats {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.stat-mini {
    flex: 1;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.3), rgba(91, 33, 182, 0.3));
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(124, 58, 237, 0.4);
}

.stat-value {
    display: block;
    font-size: 14px;
    font-weight: 800;
    color: white;
}

.stat-label {
    font-size: 7px;
    color: var(--purple-400);
    text-transform: uppercase;
}

/* Chart */
.app-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    padding: 10px 5px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    margin-bottom: 10px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--purple-600), var(--purple-400));
    border-radius: 4px 4px 0 0;
    min-height: 10px;
}

/* Bottom Nav */
.app-bottom {
    display: flex;
    justify-content: space-around;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.app-bottom i {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
}

.app-bottom .app-add {
    color: var(--purple-400);
    font-size: 16px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Trust Section */
.trust-section {
    padding: 3rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.trust-badge i {
    font-size: 2rem;
    color: var(--purple-400);
}

.trust-badge span {
    font-weight: 600;
    color: var(--white);
}

.trusted-by {
    text-align: center;
}

.trusted-by p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: var(--transition);
}

.client-logo:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-3px);
}

.client-logo i {
    font-size: 1.5rem;
    color: var(--purple-400);
}

.client-logo span {
    font-weight: 700;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.5px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple-400);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(124, 58, 237, 0.3);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(91, 33, 182, 0.2));
    border: 2px solid var(--purple-600);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-light);
}

.service-features i {
    color: var(--purple-400);
    font-size: 0.9rem;
}

/* Solutions Section */
.solutions {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
}

.solution-tile {
    padding: 2rem;
    border-radius: 20px;
    transition: var(--transition);
}

.solution-tile:hover {
    transform: translateY(-8px);
}

.solution-image {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--purple-700), var(--purple-500));
    border-radius: 12px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Mini Browser Mockup */
.mini-browser {
    width: 85%;
    height: 80%;
    background: #1a1a2e;
    border-radius: 8px;
    overflow: hidden;
}

.mini-dots {
    display: flex;
    gap: 4px;
    padding: 6px 8px;
    background: #12121f;
}

.mini-dots span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #444;
}

.mini-dots span:first-child {
    background: #ff5f56;
}

.mini-dots span:nth-child(2) {
    background: #ffbd2e;
}

.mini-dots span:nth-child(3) {
    background: #27c93f;
}

.mini-content {
    padding: 8px;
}

.mini-nav {
    height: 8px;
    background: rgba(124, 58, 237, 0.5);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mini-hero-block {
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    margin-bottom: 8px;
}

.mini-cards-row {
    display: flex;
    gap: 4px;
}

.mini-cards-row div {
    flex: 1;
    height: 25px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 4px;
}

/* E-Commerce Mockup */
.mini-ecommerce {
    width: 85%;
    height: 80%;
    background: #1a1a2e;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    padding: 10px;
}

.ecom-product {
    width: 50%;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(91, 33, 182, 0.4));
    border-radius: 6px;
}

.ecom-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ecom-title {
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 3px;
    margin-bottom: 8px;
}

.ecom-price {
    font-size: 14px;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 8px;
}

.ecom-btn {
    font-size: 8px;
    padding: 5px;
    background: var(--purple-600);
    border-radius: 4px;
    text-align: center;
    color: white;
}

/* Booking Mockup */
.mini-booking {
    width: 85%;
    height: 80%;
    background: #1a1a2e;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
}

.booking-calendar {
    flex: 1;
}

.cal-header {
    font-size: 10px;
    color: var(--purple-400);
    margin-bottom: 8px;
    font-weight: 600;
}

.cal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
}

.cal-grid span {
    padding: 4px;
    text-align: center;
    font-size: 9px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.6);
}

.cal-grid span.selected {
    background: var(--purple-600);
    color: white;
}

.booking-time {
    font-size: 12px;
    font-weight: 700;
    color: white;
    text-align: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Phone Mockup */
.mini-phone {
    width: 60px;
    height: 100px;
    background: #1a1a2e;
    border-radius: 12px;
    padding: 5px;
    border: 2px solid #333;
}

.phone-screen {
    height: 100%;
    background: #0d0d1a;
    border-radius: 8px;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.app-bar {
    height: 12px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    border-radius: 3px;
    margin-bottom: 5px;
}

.app-content-block {
    flex: 1;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 4px;
    margin-bottom: 5px;
}

.app-tabs {
    display: flex;
    justify-content: space-around;
}

.app-tabs span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.solution-tile h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.solution-tile p {
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* Mini Analytics Mockup */
.mini-analytics {
    width: 85%;
    height: 80%;
    background: #1a1a2e;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mini-stats {
    display: flex;
    gap: 6px;
}

.mini-stat-box {
    flex: 1;
    height: 30px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 5px;
}

.mini-chart-bars {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.mini-chart-bars span {
    flex: 1;
    background: linear-gradient(to top, var(--purple-600), var(--purple-400));
    border-radius: 3px 3px 0 0;
    min-height: 10%;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.portfolio-card {
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition);
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--purple-800), var(--purple-600));
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.port-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.25);
}

/* Corporate Website Mockup */
.port-browser {
    width: 85%;
    height: 85%;
    background: #1a1a2e;
    border-radius: 10px;
    overflow: hidden;
}

.port-browser-bar {
    display: flex;
    gap: 5px;
    padding: 8px 10px;
    background: #12121f;
}

.port-browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.port-browser-bar span:nth-child(1) {
    background: #ff5f56;
}

.port-browser-bar span:nth-child(2) {
    background: #ffbd2e;
}

.port-browser-bar span:nth-child(3) {
    background: #27c93f;
}

.port-browser-content {
    padding: 10px;
}

.port-nav {
    height: 15px;
    background: linear-gradient(90deg, var(--purple-500), transparent);
    border-radius: 4px;
    margin-bottom: 10px;
}

.port-hero {
    height: 80px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    margin-bottom: 10px;
}

.port-grid {
    display: flex;
    gap: 8px;
}

.port-grid div {
    flex: 1;
    height: 50px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 5px;
}

/* E-Commerce Mockup */
.port-ecom {
    width: 85%;
    height: 85%;
    background: #1a1a2e;
    border-radius: 10px;
    padding: 12px;
    position: relative;
}

.port-product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.port-product {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px;
}

.prod-img {
    height: 60px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.4), rgba(91, 33, 182, 0.4));
    border-radius: 5px;
    margin-bottom: 6px;
}

.prod-price {
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
}

.port-cart {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: var(--purple-600);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    color: white;
}

/* Fintech Mockup */
.port-fintech {
    width: 70%;
    height: 90%;
    background: #1a1a2e;
    border-radius: 20px;
    padding: 15px;
    border: 2px solid #333;
}

.fintech-balance {
    text-align: center;
    margin-bottom: 15px;
}

.bal-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
}

.bal-amount {
    font-size: 22px;
    font-weight: 800;
    color: white;
}

.fintech-actions {
    display: flex;
    justify-content: space-around;
    margin-bottom: 15px;
}

.fintech-actions div {
    width: 35px;
    height: 35px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fintech-actions i {
    color: var(--purple-400);
    font-size: 12px;
}

.fintech-trans {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 8px;
}

.trans-item {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    padding: 4px 0;
}

.trans-item .red {
    color: #ef4444;
}

.trans-item .green {
    color: #10b981;
}

/* Education Mockup */
.port-edu {
    width: 85%;
    height: 85%;
    background: #1a1a2e;
    border-radius: 10px;
    padding: 12px;
}

.edu-video {
    height: 80px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.edu-video i {
    font-size: 30px;
    color: var(--purple-400);
}

.edu-progress {
    margin-bottom: 12px;
}

.prog-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    margin-bottom: 5px;
}

.prog-fill {
    width: 65%;
    height: 100%;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    border-radius: 3px;
}

.edu-progress span {
    font-size: 9px;
    color: var(--purple-400);
}

.edu-lessons div {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 0;
}

.edu-lessons i {
    font-size: 10px;
    margin-right: 5px;
}

.edu-lessons .fa-check-circle {
    color: #10b981;
}

.edu-lessons .fa-circle {
    color: rgba(255, 255, 255, 0.2);
}

/* Analytics Mockup */
.port-analytics {
    width: 85%;
    height: 85%;
    background: #1a1a2e;
    border-radius: 10px;
    padding: 12px;
}

.analytics-stats {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.stat-box {
    flex: 1;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 8px;
    padding: 10px;
    text-align: center;
}

.stat-box span {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: white;
}

.stat-box small {
    font-size: 9px;
    color: var(--purple-400);
}

.analytics-chart {
    height: 100px;
    position: relative;
}

.chart-line {
    position: absolute;
    top: 30%;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
    border-radius: 2px;
}

.chart-bars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.chart-bars span {
    flex: 1;
    background: linear-gradient(to top, var(--purple-600), var(--purple-400));
    border-radius: 4px 4px 0 0;
}

/* Restaurant Mockup */
.port-restaurant {
    width: 85%;
    height: 85%;
    background: #1a1a2e;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

.rest-header {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin-bottom: 12px;
}

.rest-time-slots {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 15px;
}

.rest-time-slots span {
    padding: 6px 12px;
    font-size: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.rest-time-slots span.active {
    background: var(--purple-600);
    color: white;
}

.rest-menu {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rest-menu div {
    font-size: 11px;
    color: var(--purple-400);
}

.rest-menu i {
    margin-right: 5px;
}

.rest-confirm {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: white;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.portfolio-content p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 4rem;
    font-weight: 900;
    color: rgba(124, 58, 237, 0.2);
    line-height: 1;
    margin-bottom: 1rem;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process-step h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-step p {
    color: var(--gray-light);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    padding: 3rem 2rem;
    border-radius: 24px;
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.stars i {
    color: #FFD700;
}

.testimonial-card p {
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author h5 {
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: rgba(255, 255, 255, 0.02);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.pricing-card {
    padding: 3rem 2rem;
    border-radius: 24px;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.featured-price {
    border: 2px solid var(--purple-600);
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(91, 33, 182, 0.1));
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-800));
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.pricing-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
}

.amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--purple-400), var(--purple-600));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-desc {
    color: var(--gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--gray-light);
}

.pricing-features i {
    color: var(--purple-400);
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--purple-400);
    min-width: 30px;
}

.info-item strong {
    display: block;
    margin-bottom: 0.25rem;
}

.info-item p {
    color: var(--gray-light);
}

.contact-form {
    padding: 3rem;
    border-radius: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--purple-500);
    background: rgba(255, 255, 255, 0.08);
}

.contact-form select option {
    background: var(--black-light);
    color: var(--white);
}

.contact-form textarea {
    margin-bottom: 1rem;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    justify-content: center;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--gray-light);
    margin: 1.5rem 0;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--glass-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--purple-600);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer-col h5 {
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: var(--gray-light);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--purple-400);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: var(--gray);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-headline {
        font-size: 3rem;
    }

    .services-grid,
    .portfolio-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        display: none;
    }

    .hero-headline {
        font-size: 2.5rem;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .solutions-grid,
    .process-timeline {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Case Study Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    background: rgba(20, 20, 40, 0.95);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    background: var(--purple-600);
    transform: rotate(90deg);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    border-radius: 20px;
    margin-bottom: 1rem;
}

.modal-icon i {
    font-size: 2rem;
    color: white;
}

.modal-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.modal-body {
    line-height: 1.8;
}

.modal-body h4 {
    color: var(--purple-400);
    font-size: 1rem;
    margin: 1.5rem 0 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-body p {
    color: var(--gray-light);
    margin-bottom: 1rem;
}

.modal-body ul {
    list-style: none;
    padding: 0;
}

.modal-body li {
    padding: 0.5rem 0;
    color: var(--gray-light);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-body li i {
    color: var(--purple-400);
    font-size: 0.9rem;
}

.modal-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
}

.modal-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 12px;
}

.modal-stat span {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

.modal-stat small {
    font-size: 0.75rem;
    color: var(--purple-400);
}

.modal-footer {
    margin-top: 2rem;
    text-align: center;
}

.modal-cta {
    width: 100%;
    justify-content: center;
}

/* Form Notification Popup */
.form-notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    z-index: 3000;
    transform: translateX(120%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.form-notification.show {
    transform: translateX(0);
}

.form-notification.success {
    background: linear-gradient(135deg, #10B981, #059669);
    color: white;
}

.form-notification.error {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    color: white;
}

.form-notification i {
    font-size: 1.25rem;
}

/* Callback Popup Styles */
.callback-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.callback-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.callback-popup {
    background: linear-gradient(135deg, rgba(30, 30, 50, 0.98), rgba(20, 20, 35, 0.98));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: center;
    max-width: 400px;
    width: 90%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.3s ease;
}

.callback-popup-overlay.show .callback-popup {
    transform: translateY(0) scale(1);
}

.callback-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 1.5rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.callback-close:hover {
    background: var(--purple-600);
}

.callback-icon {
    font-size: 4rem;
    color: #10B981;
    margin-bottom: 1rem;
}

.callback-popup h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: white;
}

.callback-popup>p {
    color: var(--gray-light);
    margin-bottom: 1.5rem;
}

.callback-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.callback-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.callback-btn:hover {
    transform: translateY(-3px);
}

.callback-btn i {
    font-size: 1.25rem;
}

.call-btn {
    background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.callback-note {
    font-size: 0.85rem;
    color: var(--purple-400);
}

@media (max-width: 480px) {
    .callback-actions {
        flex-direction: column;
    }

    .callback-btn {
        justify-content: center;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   ============================================ */

/* Large Tablets and Small Desktops (1024px - 1200px) */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }

    .hero-headline {
        font-size: 3.5rem;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .services-grid,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile Devices (480px - 768px) */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-menu {
        display: none;
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
    }

    .nav-container {
        justify-content: space-between;
    }

    .logo-name {
        font-size: 1.3rem;
    }

    .logo-tagline {
        font-size: 0.7rem;
        letter-spacing: 2px;
    }

    .logo-icon svg {
        width: 35px;
        height: 35px;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        display: none;
    }

    .hero-headline {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .trust-badges {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

    .trust-badge {
        flex: 0 0 calc(50% - 0.5rem);
        font-size: 0.85rem;
    }

    .client-logos {
        gap: 1rem;
    }

    .client-logo {
        padding: 0.75rem;
        font-size: 0.8rem;
    }

    section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .section-label {
        font-size: 0.75rem;
    }

    .services-grid,
    .portfolio-grid,
    .solutions-grid,
    .process-timeline,
    .testimonials-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card,
    .solution-tile,
    .portfolio-card {
        padding: 1.5rem;
    }

    .portfolio-image {
        height: 180px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-brand {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .modal-content {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .modal-header h3 {
        font-size: 1.4rem;
    }

    .modal-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }

    .modal-stat {
        padding: 0.75rem 0.5rem;
    }

    .modal-stat span {
        font-size: 1.2rem;
    }
}

/* Small Mobile Devices (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero-headline {
        font-size: 1.75rem;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    .trust-badge {
        flex: 0 0 100%;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .service-card h3,
    .solution-tile h4,
    .portfolio-card h4 {
        font-size: 1.1rem;
    }

    .process-step {
        padding: 1.25rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .modal-stats {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .callback-popup {
        padding: 1.5rem;
        border-radius: 16px;
    }

    .callback-icon {
        font-size: 3rem;
    }

    .callback-popup h3 {
        font-size: 1.4rem;
    }

    .callback-actions {
        flex-direction: column;
    }

    .callback-btn {
        justify-content: center;
        padding: 0.875rem 1.25rem;
    }

    .footer-col h5 {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

/* Extra Small Devices (up to 360px) */
@media (max-width: 360px) {
    .logo-name {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.6rem;
    }

    .hero-headline {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.85rem;
    }
}