/* ========================================================
   DSOCIALZ — Premium Conversion-Optimized Stylesheet
   ======================================================== */

:root {
    --blue: #1877F2;
    --blue-dark: #0d5fc8;
    --blue-darker: #0a4ea3;
    --blue-light: #e7f1ff;
    --blue-50: #f5f9ff;
    --blue-glow: rgba(24, 119, 242, 0.4);
    --gradient-blue: linear-gradient(135deg, #1877F2 0%, #2962ff 50%, #1877F2 100%);
    --gradient-hero: linear-gradient(135deg, #0a4ea3 0%, #1877F2 50%, #2962ff 100%);
    --gradient-mesh: radial-gradient(at 0% 0%, rgba(24,119,242,0.15) 0px, transparent 50%),
                     radial-gradient(at 100% 0%, rgba(41,98,255,0.12) 0px, transparent 50%),
                     radial-gradient(at 100% 100%, rgba(24,119,242,0.08) 0px, transparent 50%),
                     radial-gradient(at 0% 100%, rgba(41,98,255,0.10) 0px, transparent 50%);
    
    --white: #ffffff;
    --bg: #ffffff;
    --bg-soft: #f8fafd;
    --text: #0a1628;
    --text-soft: #4b5563;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --success: #10b981;
    --warning: #f59e0b;
    
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.06);
    --shadow-md: 0 8px 24px rgba(10, 22, 40, 0.08);
    --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.12);
    --shadow-xl: 0 30px 80px rgba(10, 22, 40, 0.18);
    --shadow-blue: 0 12px 32px rgba(24, 119, 242, 0.28);
    --shadow-blue-lg: 0 20px 60px rgba(24, 119, 242, 0.35);
    --shadow-glow: 0 0 40px rgba(24, 119, 242, 0.5);
    
    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 999px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    
    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    scroll-padding-top: 120px;
}

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: var(--text);
}

h1 { font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 800; letter-spacing: -0.025em; line-height: 1.1; }
h2 { font-size: clamp(1.875rem, 4.5vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); letter-spacing: -0.02em; }

/* ========================================================
   ANNOUNCEMENT BAR
   ======================================================== */
.top-bar {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.top-bar::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    animation: shine 4s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ========================================================
   HEADER
   ======================================================== */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(229, 231, 235, 0.6);
    transition: var(--transition);
}

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

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    gap: 32px;
    min-height: 100px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text);
    letter-spacing: -0.02em;
    flex-shrink: 0;
}

.logo img {
    height: 80px;
    width: 80px;
    min-width: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    background: white;
    box-shadow: 0 4px 16px rgba(24, 119, 242, 0.15);
    border: 2px solid #e0e7ff;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    display: none; /* Hide "Dsocialz" text - logo image already has it */
}

/* Footer logo - slightly smaller */
.footer-brand .logo img {
    height: 64px;
    width: 64px;
    min-width: 64px;
}

.nav-menu {
    display: flex;
    gap: 4px;
    align-items: center;
    list-style: none;
}

.nav-menu a {
    padding: 10px 16px;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-soft);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--blue);
    background: var(--blue-light);
}

.nav-menu a.active {
    color: var(--blue);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
}

.nav-cta {
    background: var(--gradient-blue) !important;
    color: var(--white) !important;
    padding: 11px 22px !important;
    box-shadow: var(--shadow-blue);
    font-weight: 700 !important;
    border-radius: var(--radius-full) !important;
    transition: var(--transition) !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
    background: var(--blue-darker) !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    border-radius: var(--radius-sm);
    z-index: 10;
}

.menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(7px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* ========================================================
   BUTTONS
   ======================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    font-weight: 700;
    font-size: 0.9375rem;
    letter-spacing: -0.01em;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-lg {
    padding: 18px 38px;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-blue);
    color: var(--white);
    box-shadow: var(--shadow-blue);
    isolation: isolate;
}

.btn-primary::before {
    z-index: -1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2962ff, #1877F2);
    opacity: 0;
    transition: var(--transition);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-blue-lg);
}

.btn-primary:hover::before { opacity: 1; }

.btn-primary span { position: relative; z-index: 1; }

/* Ensure all button content (text, svg) is above the ::before hover overlay */
.btn-primary > * {
    position: relative;
    z-index: 1;
}

.btn-white {
    background: var(--white);
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block { width: 100%; }

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ========================================================
   HERO SECTION — WOW FACTOR
   ======================================================== */
.hero {
    position: relative;
    padding: 50px 0 100px;
    background: var(--bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(24,119,242,0.08) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 8px 16px 8px 8px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 24px;
    box-shadow: var(--shadow-xs);
    animation: fadeInUp 0.6s ease both;
}

.hero-eyebrow-badge {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-eyebrow-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    box-shadow: 0 0 12px var(--success);
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    margin-bottom: 24px;
    animation: fadeInUp 0.7s ease 0.1s both;
}

.hero h1 .grad-text {
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero h1 .underline-svg {
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 12px;
    pointer-events: none;
}

.hero-desc {
    font-size: 1.125rem;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
    animation: fadeInUp 0.7s ease 0.2s both;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    justify-content: flex-start;
    animation: fadeInUp 0.7s ease 0.3s both;
}

/* Centered "View Packages" button below the hero grid - spans full width */
.hero-cta-centered {
    display: flex;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: -30px;
    animation: fadeInUp 0.7s ease 0.5s both;
}

/* Make hero h1 a bit smaller for cleaner wrapping (no awkward empty gaps) */
.hero h1 {
    font-size: clamp(1.875rem, 4vw, 3.25rem) !important;
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    animation: fadeInUp 0.7s ease 0.4s both;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-trust-num {
    font-size: 1.875rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}

.hero-trust-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.3;
    font-weight: 500;
}

.hero-trust-divider {
    width: 1px;
    height: 32px;
    background: var(--border);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Visual — Premium 3D Mockup */
/* ========================================================
   HERO VISUAL — Stacked Account Cards (NEW DESIGN)
   ======================================================== */
.hero-visual {
    position: relative;
    max-width: 480px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeIn 1s ease 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Decorative blob background */
.hero-blob {
    position: absolute;
    inset: 10%;
    background: var(--gradient-blue);
    border-radius: 50% 38% 60% 40% / 50% 60% 40% 50%;
    filter: blur(50px);
    opacity: 0.35;
    animation: morph 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes morph {
    0%, 100% { border-radius: 50% 38% 60% 40% / 50% 60% 40% 50%; transform: rotate(0deg); }
    33% { border-radius: 38% 60% 40% 50% / 60% 40% 50% 38%; transform: rotate(120deg); }
    66% { border-radius: 60% 50% 38% 60% / 40% 50% 60% 40%; transform: rotate(240deg); }
}

/* Stack container holds the 3 cards */
.hero-stack {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
    perspective: 1200px;
}

/* Each account card */
.account-card {
    background: var(--white);
    border-radius: 18px;
    padding: 22px 24px;
    box-shadow: 0 12px 40px rgba(24, 119, 242, 0.12), 0 4px 12px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(24, 119, 242, 0.08);
    display: flex;
    align-items: center;
    gap: 18px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    animation: cardSlide 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes cardSlide {
    from { opacity: 0; transform: translateX(40px) scale(0.95); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

.account-card:nth-child(1) {
    transform: rotate(-2.5deg) translateX(-10px);
    animation-delay: 0.1s;
    z-index: 3;
}

.account-card:nth-child(2) {
    transform: rotate(0deg);
    animation-delay: 0.25s;
    z-index: 2;
    margin-left: 16px;
}

.account-card:nth-child(3) {
    transform: rotate(2.5deg) translateX(-6px);
    animation-delay: 0.4s;
    z-index: 1;
    margin-left: 8px;
}

.account-card:hover {
    transform: rotate(0deg) translateX(0) translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(24, 119, 242, 0.18), 0 8px 20px rgba(0, 0, 0, 0.06);
    z-index: 10;
}

/* Brand-colored icon circle */
.account-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: white;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.account-card-icon.facebook { background: #1877F2; }
.account-card-icon.whatsapp { background: #25D366; }
.account-card-icon.tiktok { background: #000000; }

/* Card text content */
.account-card-body {
    flex: 1;
    min-width: 0;
}

.account-card-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 4px;
}

.account-card-name {
    font-size: 1.0625rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.account-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.account-card-meta strong {
    color: var(--success);
    font-weight: 700;
}

/* Verified pill */
.account-card-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(16, 185, 129, 0.12);
    color: var(--success);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.account-card-verified::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2); }
    50% { box-shadow: 0 0 0 5px rgba(16, 185, 129, 0); }
}

/* Trust strip below cards */
.hero-trust-strip {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: var(--white);
    padding: 18px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-light);
    position: relative;
    z-index: 2;
}

.hero-trust-cell {
    text-align: center;
    flex: 1;
}

.hero-trust-cell-num {
    font-size: 1.375rem;
    font-weight: 900;
    color: var(--text);
    letter-spacing: -0.02em;
}

.hero-trust-cell-num span {
    color: var(--blue);
}

.hero-trust-cell-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-top: 2px;
}

.hero-trust-cell + .hero-trust-cell {
    border-left: 1px solid var(--border-light);
}

/* ========================================================
   LOGO BAR
   ======================================================== */
.brands-bar {
    background: var(--bg-soft);
    padding: 40px 0;
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.brands-label {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.brands-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 1;
}

.brand-logo {
    height: 32px;
    color: var(--text-soft);
    font-weight: 800;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.brand-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.brand-logo svg {
    height: 28px;
    width: auto;
}

/* ========================================================
   SECTION GENERAL
   ======================================================== */
section {
    padding: 100px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
}

.section-eyebrow {
    display: inline-block;
    background: var(--blue-light);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-head h2 {
    margin-bottom: 16px;
}

.section-head p {
    color: var(--text-soft);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ========================================================
   FEATURES / WHY US
   ======================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.feature:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--gradient-blue);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 24px;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.05) rotate(-5deg);
}

.feature h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.feature p {
    color: var(--text-soft);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ========================================================
   PACKAGES / PRODUCTS — HERO TREATMENT
   ======================================================== */
.packages {
    background: var(--bg-soft);
    position: relative;
    overflow: hidden;
}

.packages::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(24,119,242,0.08) 0%, transparent 70%);
    pointer-events: none;
}

.package-category {
    margin-bottom: 60px;
}

.package-category:last-child { margin-bottom: 0; }

.category-label {
    text-align: center;
    margin-bottom: 36px;
}

.category-label h3 {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    color: var(--text);
}

.category-label p {
    font-size: 1rem;
    color: var(--text-soft);
    font-weight: 500;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.package {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 22px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
}

.package > .package-logo {
    margin-top: 8px;
}

.package.featured > .package-logo {
    margin-top: 8px;
}

.package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.package:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.package:hover::before { opacity: 1; }

.package > * { position: relative; z-index: 1; }

.package.featured {
    background: var(--gradient-hero);
    color: var(--white);
    transform: scale(1.02);
    box-shadow: var(--shadow-blue-lg);
    border-color: transparent;
}

.package.featured::before {
    background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 60%);
    opacity: 1;
}

.package.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.package-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1a1a1a;
    padding: 7px 18px;
    border-radius: var(--radius-full);
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
    box-shadow: 0 6px 14px rgba(251, 191, 36, 0.4);
    z-index: 10;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

/* Package logo - brand icon area at the top of each card */
.package-logo {
    width: 80px;
    height: 80px;
    border-radius: 18px;
    overflow: hidden;
    margin: 0 auto 14px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border-light);
    transition: transform 0.3s ease;
}

.package-logo svg, .package-logo img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.package:hover .package-logo {
    transform: translateY(-2px) scale(1.04);
}

.package.featured .package-logo {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.15);
}

/* 5-star rating row under package logo */
.package-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 12px;
    color: #fbbf24;
}

.package-stars svg {
    width: 15px;
    height: 15px;
    filter: drop-shadow(0 1px 2px rgba(251, 191, 36, 0.3));
}

.package.featured .package-stars {
    color: #fcd34d;
}

/* Keep old package-icon for backward compatibility (about/services pages) */
.package-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius);
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.package.featured .package-icon {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.package:hover .package-icon {
    transform: scale(1.05) rotate(-5deg);
}

.package-name {
    font-size: 1.0625rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.02em;
    text-align: center;
}

.package-tagline {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 500;
    text-align: center;
}

.package.featured .package-tagline {
    color: rgba(255, 255, 255, 0.85);
}

.package-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--border-light);
    position: relative;
}

.package-price-row {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    line-height: 1;
}

.package-currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-muted);
    line-height: 1;
    margin-top: 8px;
}

.package-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 0.95;
    background: linear-gradient(135deg, var(--blue) 0%, #0d5fc8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-display);
}

.package-period {
    margin-top: 6px;
    font-size: 0.6875rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.package.featured .package-currency {
    color: rgba(255, 255, 255, 0.85);
}

.package.featured .package-amount {
    background: linear-gradient(135deg, #ffffff 0%, #e7f1ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.package.featured .package-period {
    color: rgba(255, 255, 255, 0.7);
}

.package.featured .package-price {
    border-color: rgba(255, 255, 255, 0.2);
}

.package-features {
    flex-grow: 1;
    margin-bottom: 20px;
}

.package-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.875rem;
    font-size: 0.9375rem;
    color: var(--text);
    line-height: 1.5;
}

.package.featured .package-features li {
    color: rgba(255, 255, 255, 0.95);
}

.package-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%231877F2'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
    margin-top: 2px;
}

.package.featured .package-features li::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
}

.package-cta {
    background: var(--gradient-blue);
    color: var(--white);
    padding: 11px 22px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    text-align: center;
    width: 100%;
    transition: var(--transition);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.package-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue-lg);
}

.package.featured .package-cta {
    background: var(--white);
    color: var(--blue);
    box-shadow: var(--shadow-md);
}

.package.featured .package-cta:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    background: #f8fafd;
}

/* ========================================================
   ORDER PROCESS
   ======================================================== */
.process {
    background: var(--white);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 32px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-light) 10%, var(--blue-light) 90%, transparent);
    z-index: 0;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.process-num {
    width: 64px;
    height: 64px;
    background: var(--gradient-blue);
    border: 2px solid var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
    position: relative;
}

.process-step:hover .process-num {
    background: var(--gradient-blue);
    color: var(--white);
    border-color: var(--blue);
    transform: scale(1.1);
    box-shadow: var(--shadow-blue);
}

.process-num::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px dashed var(--border);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s;
}

.process-step:hover .process-num::before {
    opacity: 1;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.process-step h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.process-step p {
    color: var(--text-soft);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================================
   REVIEWS / TESTIMONIALS
   ======================================================== */
.reviews {
    background: var(--bg-soft);
    overflow: hidden;
}

.reviews-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 56px;
    flex-wrap: wrap;
}

.reviews-meta-item {
    text-align: center;
}

.reviews-meta-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-blue);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.03em;
}

.reviews-meta-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 6px;
    font-weight: 500;
}

.stars {
    display: inline-flex;
    gap: 2px;
    color: #fbbf24;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.review {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.review:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.review-quote {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    color: var(--blue-light);
}

.review-stars {
    margin-bottom: 16px;
}

.review-text {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.9375rem;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.review-info-name {
    font-weight: 700;
    font-size: 0.9375rem;
    color: var(--text);
}

.review-info-role {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.screenshots-title {
    text-align: center;
    margin-bottom: 32px;
    font-size: 1.5rem;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.screenshot {
    aspect-ratio: 9/16;
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    cursor: pointer;
}

.screenshot:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.screenshot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========================================================
   PAYMENTS
   ======================================================== */
.payments {
    background: var(--white);
}

.payments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 960px;
    margin: 0 auto;
}

.payment {
    background: var(--white);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.payment::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: opacity 0.4s;
}

.payment:hover {
    border-color: var(--blue);
    transform: translateY(-6px);
    box-shadow: var(--shadow-blue);
}

.payment:hover::before { opacity: 1; }

.payment > * { position: relative; z-index: 1; }

.payment-icon {
    width: 88px;
    height: 88px;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06), 0 0 0 1px var(--border-light);
    overflow: hidden;
}

.payment-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.payment:hover .payment-icon {
    transform: scale(1.06);
    box-shadow: 0 12px 28px rgba(24, 119, 242, 0.18);
}

.payment h4 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.payment p {
    color: var(--text-soft);
    font-size: 0.875rem;
    line-height: 1.6;
}

/* ========================================================
   FAQ
   ======================================================== */
.faq {
    background: var(--bg-soft);
}

.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    margin-bottom: 14px;
    transition: var(--transition);
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: var(--shadow-sm);
}

.faq-item.active {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
}

.faq-q {
    width: 100%;
    padding: 22px 26px;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: var(--transition);
}

.faq-q:hover { color: var(--blue); }

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--blue-light);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    background: var(--gradient-blue);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-a {
    max-height: 600px;
}

.faq-a-inner {
    padding: 0 26px 24px;
    color: var(--text-soft);
    line-height: 1.75;
}

/* ========================================================
   CTA BANNER
   ======================================================== */
.cta-section {
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 580px;
    margin: 0 auto 36px;
}

/* ========================================================
   FOOTER — CLEAN WHITE
   ======================================================== */
.footer {
    background: var(--white);
    color: var(--text-soft);
    padding: 80px 0 0;
    border-top: 1px solid var(--border-light);
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 56px;
    margin-bottom: 48px;
}

/* Centered hero block: logo + about text + socials */
.footer-hero {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 720px;
    margin: 0 auto;
}

.footer-hero .logo {
    margin-bottom: 0;
}

.footer-hero .footer-about {
    margin-bottom: 0;
}

/* 3 columns row below */
.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid var(--border-light);
}

.footer-columns > div {
    text-align: left;
}

.footer-columns h4 {
    margin-bottom: 18px;
    font-size: 1rem;
    color: var(--text);
    letter-spacing: -0.01em;
}

.footer-about {
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.9375rem;
    text-align: center;
}

.footer-social {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    transform: translateY(-3px);
    border-color: transparent;
    box-shadow: var(--shadow-md);
}

.footer-social a.fs-whatsapp { background: #25D366; border-color: #25D366; }
.footer-social a.fs-telegram { background: #0088cc; border-color: #0088cc; }
.footer-social a.fs-facebook { background: #1877F2; border-color: #1877F2; }
.footer-social a.fs-youtube { background: #FF0000; border-color: #FF0000; }
.footer-social a.fs-email { background: #ea4335; border-color: #ea4335; }

.footer-social a.fs-whatsapp:hover { background: #25D366; }
.footer-social a.fs-telegram:hover { background: #0088cc; }
.footer-social a.fs-facebook:hover { background: #1877F2; }
.footer-social a.fs-youtube:hover { background: #FF0000; }
.footer-social a.fs-email:hover { background: #ea4335; }

.footer h4 {
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: var(--text-soft);
    transition: var(--transition);
    font-size: 0.9375rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--blue);
    transform: translateX(3px);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.875rem;
    color: var(--text-soft);
}

.footer-contact-item svg {
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid var(--border-light);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ========================================================
   FLOATING CONTACT BUTTONS
   ======================================================== */
.float-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    position: relative;
}

.float-btn:hover {
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}

.float-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid currentColor;
    opacity: 0;
    animation: pulse-ring 2.5s ease-out infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.6); opacity: 0; }
}

.float-whatsapp { background: #25D366; }
.float-telegram { background: #0088cc; animation-delay: 0.5s; }

/* ========================================================
   PAGE BANNER
   ======================================================== */
.page-banner {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 80px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}

.page-banner > * { position: relative; z-index: 1; }

.page-banner h1 {
    color: var(--white);
    margin-bottom: 12px;
}

.page-banner p {
    font-size: 1.125rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.875rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
}

.breadcrumbs a {
    color: var(--white);
    opacity: 0.9;
    transition: opacity 0.2s;
}

.breadcrumbs a:hover { opacity: 1; }

.breadcrumbs span { opacity: 0.6; }

/* ========================================================
   ABOUT
   ======================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-soft);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.about-stat {
    background: var(--bg-soft);
    padding: 24px;
    border-radius: var(--radius);
    border-left: 3px solid var(--blue);
}

.about-stat-num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.03em;
    line-height: 1;
}

.about-stat-label {
    color: var(--text-soft);
    font-size: 0.875rem;
    margin-top: 6px;
}

.about-visual {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gradient-hero);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    padding: 48px;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: spin 20s linear infinite;
}

.about-visual-inner { position: relative; z-index: 1; }

.about-visual-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-visual h3 {
    color: var(--white);
    font-size: 1.875rem;
    margin-bottom: 8px;
}

.about-visual p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.value:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.value-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-blue);
    color: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: var(--shadow-blue);
    transition: var(--transition);
}

.value:hover .value-icon {
    transform: scale(1.05);
}

.value h3 {
    margin-bottom: 10px;
    font-size: 1.125rem;
}

.value p {
    color: var(--text-soft);
    font-size: 0.9375rem;
    line-height: 1.65;
}

/* ========================================================
   SERVICE BLOCKS (services.html)
   ======================================================== */
.service-block {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 28px;
    align-items: center;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-block:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-block-side {
    background: var(--gradient-hero);
    border-radius: var(--radius);
    padding: 22px 16px;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-block-side::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.15), transparent 60%);
}

.service-block-side > * { position: relative; z-index: 1; }

.service-block-icon {
    width: 54px;
    height: 54px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--white);
}

.service-block-icon svg, .service-block-icon img {
    width: 32px;
    height: 32px;
}

.service-block-price {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.04em;
    line-height: 1;
}

.service-block-price-label {
    font-size: 0.6875rem;
    color: rgba(255,255,255,0.85);
    margin-top: 4px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.service-block-content h3 {
    color: var(--blue);
    margin-bottom: 8px;
    font-size: 1.25rem;
}

.service-block-content > p {
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 14px;
    font-size: 0.9375rem;
}

.service-block-content ul {
    margin-bottom: 16px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 16px;
}

.service-block-content ul li {
    padding: 4px 0;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
}

.service-block-content ul li::before {
    content: '';
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2310b981'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-size: contain;
    flex-shrink: 0;
}

.service-block-content .btn {
    padding: 10px 22px;
    font-size: 0.875rem;
}

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

.contact-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    transition: var(--transition);
    text-decoration: none;
}

.contact-item:hover {
    border-color: var(--blue);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.contact-item-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.contact-item-text { flex: 1; }

.contact-item-label {
    font-weight: 700;
    color: var(--text);
    font-size: 0.9375rem;
    margin-bottom: 4px;
}

.contact-item-value {
    color: var(--text-muted);
    font-size: 0.875rem;
    word-break: break-all;
}

.contact-form-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
}

.contact-form-card h3 {
    margin-bottom: 8px;
}

.contact-form-card > p {
    color: var(--text-soft);
    margin-bottom: 24px;
    font-size: 0.9375rem;
}

/* ========================================================
   FORM ELEMENTS
   ======================================================== */
.form-group { margin-bottom: 18px; }

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 7px;
    color: var(--text);
    font-size: 0.875rem;
}

.form-label .required { color: #ef4444; }

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--white);
    color: var(--text);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(24, 119, 242, 0.1);
}

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

/* ========================================================
   ORDER MODAL — REDESIGNED
   ======================================================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 22, 40, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.modal-overlay.active { display: flex; }

.modal {
    background: var(--white);
    border-radius: var(--radius-xl);
    max-width: 540px;
    width: 100%;
    margin: 30px auto;
    overflow: hidden;
    animation: modalSlide 0.4s var(--bounce);
    position: relative;
    box-shadow: var(--shadow-xl);
}

@keyframes modalSlide {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 32px 32px 28px;
    position: relative;
    overflow: hidden;
}

.modal-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.2), transparent 60%);
}

.modal-header > * { position: relative; z-index: 1; }

.modal-header h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 6px;
}

.modal-header p {
    opacity: 0.9;
    font-size: 0.9375rem;
}

.modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 2;
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Selected Package Card (auto-filled, no dropdown) */
.selected-package {
    background: linear-gradient(135deg, var(--blue-light) 0%, #f0f6ff 100%);
    border: 2px solid var(--blue);
    border-radius: var(--radius);
    padding: 18px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.selected-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-blue);
}

.selected-package-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    box-shadow: var(--shadow-blue);
}

.selected-package-info { flex: 1; }

.selected-package-label {
    font-size: 0.6875rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 2px;
}

.selected-package-name {
    font-weight: 800;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.3;
}

.selected-package-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--blue);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Payment Method Cards - Click to select */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 4px;
}

.payment-method-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px 10px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.payment-method-card:hover {
    border-color: var(--blue);
    transform: translateY(-2px);
}

.payment-method-card.active {
    border-color: var(--blue);
    background: var(--blue-light);
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.15);
}

.payment-method-card-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    background: var(--white);
}

.payment-method-card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.payment-method-card-name {
    font-weight: 700;
    font-size: 0.8125rem;
    color: var(--text);
}

/* Payment Box (shown after method selected) */
.payment-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fef9e8 100%);
    border: 1.5px solid #fbbf24;
    border-radius: var(--radius);
    padding: 20px;
    margin: 18px 0;
    display: none;
}

.payment-box.active { display: block; }

.payment-box-title {
    font-weight: 800;
    color: #b45309;
    margin-bottom: 14px;
    font-size: 0.9375rem;
    line-height: 1.5;
}

.payment-detail {
    background: var(--white);
    border-radius: 10px;
    padding: 14px 16px;
    border: 1px solid #fde68a;
}

.payment-detail-label {
    font-size: 0.6875rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.payment-detail-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.payment-detail-value code {
    font-family: 'SF Mono', 'Monaco', 'Courier New', monospace;
    font-size: 0.875rem;
    word-break: break-all;
    color: var(--text);
    font-weight: 600;
    flex: 1;
}

.copy-btn {
    background: var(--gradient-blue);
    color: var(--white);
    border: none;
    padding: 7px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-blue);
}

.copy-btn.copied {
    background: var(--success);
}

/* File Upload */
.file-upload-label {
    display: block;
    padding: 24px;
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: var(--bg-soft);
}

.file-upload-label:hover {
    border-color: var(--blue);
    background: var(--blue-light);
}

.file-upload-label.has-file {
    border-color: var(--success);
    background: rgba(16, 185, 129, 0.05);
    border-style: solid;
}

.file-upload-icon {
    color: var(--blue);
    margin: 0 auto 8px;
}

.file-upload-text {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
    font-size: 0.9375rem;
}

.file-upload-hint {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.file-upload-input { display: none; }

#fileName {
    font-size: 0.875rem;
    color: var(--success);
    font-weight: 600;
    margin-top: 8px;
}

.success-message {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.success-message.active { display: block; }

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    animation: success-pop 0.5s var(--bounce);
    box-shadow: var(--shadow-blue-lg);
}

@keyframes success-pop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.success-message h2 {
    margin-bottom: 12px;
}

.success-message > p {
    color: var(--text-soft);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* ========================================================
   RESPONSIVE — MOBILE PERFECT
   ======================================================== */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-cta-group { justify-content: center; }
    .hero-trust { justify-content: center; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    
    .hero-visual {
        max-width: 420px;
    }
    
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .reviews-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .screenshots-grid { grid-template-columns: repeat(4, 1fr); }
    
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .service-block {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 28px;
    }
    
    .footer-top {
        gap: 40px;
    }
    .footer-columns {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px;
    }
    
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
    .process-grid::before { display: none; }
    
    .payments-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    section { padding: 70px 0; }
    
    .container { padding: 0 18px; }
    
    .top-bar { padding: 8px 0; font-size: 0.8125rem; }
    .top-bar-inner { gap: 14px; }
    
    .nav { padding: 12px 0; gap: 16px; min-height: 76px; }
    .logo img { height: 60px; width: 60px; min-width: 60px; }
    
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 0;
        box-shadow: var(--shadow-lg);
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: 1px solid var(--border-light);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.3s ease;
        align-items: stretch;
    }
    
    .nav-menu.active {
        max-height: 600px;
        padding: 12px;
    }
    
    .nav-menu li { width: 100%; }
    
    .nav-menu a {
        display: block;
        padding: 14px 18px;
        border-radius: var(--radius-sm);
        text-align: left;
    }
    
    .nav-menu a.active::after { display: none; }
    
    .nav-cta {
        margin-top: 8px;
        text-align: center !important;
    }
    
    .hero {
        padding: 50px 0 70px;
    }
    
    .hero h1 { font-size: 2.25rem; }
    .hero-desc { font-size: 1rem; }
    
    .hero-trust {
        gap: 20px;
        justify-content: space-around;
        width: 100%;
    }
    
    .hero-trust-divider { display: none; }
    
    .hero-trust-num { font-size: 1.5rem; }
    .hero-trust-label { font-size: 0.75rem; }
    
    .hero-visual { max-width: 380px; padding: 20px 0 0; }
    
    .account-card { padding: 16px 18px; gap: 14px; }
    .account-card-icon { width: 48px; height: 48px; border-radius: 12px; }
    .account-card-icon svg { width: 24px; height: 24px; }
    .account-card-name { font-size: 0.9375rem; }
    .account-card-meta { font-size: 0.75rem; }
    .account-card-label { font-size: 0.6875rem; }
    .account-card:nth-child(2) { margin-left: 8px; }
    .account-card:nth-child(3) { margin-left: 4px; }
    
    .hero-trust-strip { padding: 14px 12px; margin-top: 24px; }
    .hero-trust-cell-num { font-size: 1.125rem; }
    .hero-trust-cell-label { font-size: 0.625rem; }
    
    .features-grid { grid-template-columns: 1fr; gap: 16px; }
    .reviews-grid { grid-template-columns: 1fr; }
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .packages-grid { grid-template-columns: 1fr; }
    .screenshots-grid { grid-template-columns: repeat(3, 1fr); }
    
    .package { padding: 20px 18px; }
    .package.featured { transform: none; }
    .package.featured:hover { transform: translateY(-8px); }
    
    .package-amount { font-size: 2.25rem; }
    .package-logo { width: 72px; height: 72px; }
    .package-logo svg, .package-logo img { width: 44px; height: 44px; }
    .package-icon { width: 56px; height: 56px; }
    
    .payments-grid { grid-template-columns: 1fr; gap: 16px; }
    
    .process-grid { grid-template-columns: 1fr; gap: 32px; }
    
    .reviews-meta { gap: 28px; }
    .reviews-meta-num { font-size: 2rem; }
    
    .footer-top {
        gap: 36px;
    }
    
    .footer-columns {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-columns > div {
        text-align: center;
    }
    
    .footer-social { justify-content: center; }
    .footer-contact-item { justify-content: center; }
    
    .footer-bottom { 
        flex-direction: column;
        text-align: center;
    }
    
    .float-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }
    
    .float-btn { width: 52px; height: 52px; }
    .float-btn svg { width: 26px; height: 26px; }
    
    .modal { margin: 10px auto; border-radius: var(--radius-lg); }
    .modal-header { padding: 24px 24px 22px; }
    .modal-header h2 { font-size: 1.25rem; }
    .modal-body { padding: 24px; }
    
    .selected-package { padding: 14px 16px; gap: 12px; }
    .selected-package-icon { width: 40px; height: 40px; }
    .selected-package-name { font-size: 0.9375rem; }
    .selected-package-price { font-size: 1.25rem; }
    
    .payment-methods { gap: 8px; }
    .payment-method-card { padding: 12px 6px; }
    .payment-method-card-name { font-size: 0.75rem; }
    
    .service-block { padding: 24px; gap: 20px; }
    .service-block-side { padding: 32px 24px; }
    .service-block-content h3 { font-size: 1.25rem; }
    .service-block-icon { width: 64px; height: 64px; }
    .service-block-price { font-size: 2rem; }
    
    .contact-form-card { padding: 28px 24px; }
    
    .section-head { margin-bottom: 48px; }
    .page-banner { padding: 60px 0 50px; }
    
    .btn-lg { padding: 16px 32px; font-size: 0.9375rem; }
    
    .brands-row { gap: 32px; }
    .brand-logo { font-size: 1rem; }
    .brand-logo svg { height: 22px; }
}

@media (max-width: 420px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.625rem; }
    
    .hero-cta-group { flex-direction: column; width: 100%; }
    .hero-cta-group .btn { width: 100%; }
    
    .hero-eyebrow { padding: 6px 12px 6px 6px; font-size: 0.75rem; }
    .hero-eyebrow-badge { font-size: 0.625rem; padding: 3px 8px; }
    
    .package-amount { font-size: 2.5rem; }
    
    .reviews-meta { gap: 20px; }
    .reviews-meta-item { width: calc(33% - 14px); }
    .reviews-meta-num { font-size: 1.5rem; }
    .reviews-meta-label { font-size: 0.75rem; }
    
    .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Scrollbar styling */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-soft); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Selection */
::selection { background: var(--blue-light); color: var(--blue); }

/* Focus */
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}


/* Premium Accounts For Every Need - keep on one line on desktop */
.section-head h2 {
    white-space: normal;
}
@media (min-width: 768px) {
    .packages .section-head h2 {
        white-space: nowrap;
    }
}


/* ========================================================
   ABOUT PAGE — Clean, tight, matches homepage style
   ======================================================== */
.about-section {
    padding: 60px 0;
    background: var(--white);
}

.about-section-alt {
    background: var(--bg-soft);
}

.about-section .section-head {
    margin-bottom: 32px;
}

.about-section .section-head p {
    max-width: 800px;
    text-align: center;
    margin: 0 auto;
}

.about-section .features-grid {
    margin-top: 32px;
}

@media (max-width: 768px) {
    .about-section { padding: 48px 0; }
}


/* ========================================================
   ABOUT PAGE FIXES — top bar consistency, headings, brand icons
   ======================================================== */

/* Ensure no stray blue line appears at bottom */
html { background: #ffffff !important; }
body { 
    background: #ffffff !important; 
    margin: 0;
    padding: 0;
}

.footer {
    position: relative;
    z-index: 2;
    background: #ffffff;
}

/* Keep "Helping Advertisers Scale Since 2021" + "Premium Accounts For Every Need" on one line on desktop */
@media (min-width: 992px) {
    .about-section .section-head h2 {
        white-space: nowrap;
    }
}

/* On smaller screens it wraps naturally */
@media (max-width: 991px) {
    .about-section .section-head h2 {
        white-space: normal;
    }
}

/* Brand icon variant — no blue background, just shows the real brand-colored logo */
.feature-icon-brand {
    width: 56px;
    height: 56px;
    background: transparent;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.feature-icon-brand svg,
.feature-icon-brand img {
    width: 44px;
    height: 44px;
}

.feature:hover .feature-icon-brand {
    transform: scale(1.08) rotate(-3deg);
}

/* ========================================================
   ORDER NUMBER DISPLAY in success message
   ======================================================== */
.order-number-box {
    margin: 20px auto 24px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #e7f1ff 0%, #d4e6ff 100%);
    border: 2px solid #1877F2;
    border-radius: 12px;
    text-align: center;
    font-size: 1.0625rem;
    max-width: 320px;
}
.order-number-box span {
    color: var(--text-soft);
    font-weight: 500;
}
.order-number-box strong {
    color: #1877F2;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-left: 6px;
}
