@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
    --primary: #E8521A;
    --primary-hover: #FF7A45;
    --secondary: #1A7A5E;
    --gold: #D4A853;
    --bg-dark: #0D0D0D;
    --text-light: #F8F4EE;
    --text-muted: rgba(248, 244, 238, 0.55);
    --border-color: rgba(248, 244, 238, 0.08);
    --transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

/* Film Grain Overlay */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.35;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Layout Utilities */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s, border 0.3s, backdrop-filter 0.3s;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(248, 244, 238, 0.06);
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-light);
}

.logo-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--text-light);
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(248, 244, 238, 0.65);
    letter-spacing: 0.01em;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--primary);
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
    color: var(--text-light);
}

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn-brand {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--text-light);
    padding: 14px 28px;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(232, 82, 26, 0.4);
}

.btn-brand:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(232, 82, 26, 0.35);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-light);
    padding: 13px 28px;
    border-radius: 6px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    border: 1.5px solid rgba(248, 244, 238, 0.2);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(232, 82, 26, 0.08);
    transform: translateY(-2px);
}

.btn-brand-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--text-light);
    color: var(--primary);
    padding: 16px 36px;
    border-radius: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.01em;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.btn-brand-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    padding: 4px;
}

/* Mobile Overlay Nav */
.mobile-nav {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 998;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav.open {
    transform: translateX(0);
}

.mobile-nav a {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(248, 244, 238, 0.7);
}

.mobile-nav a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.partner-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 82, 26, 0.12);
    border: 1px solid rgba(232, 82, 26, 0.3);
    border-radius: 100px;
    padding: 7px 16px;
    margin-bottom: 32px;
}

.partner-pill .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

.partner-pill span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.08em;
    font-weight: 500;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 28px;
}

.highlight-container {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.scribble {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(248, 244, 238, 0.6);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.hero-stats {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(248, 244, 238, 0.05);
    border: 1px solid rgba(248, 244, 238, 0.1);
    border-radius: 100px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.stat-pill .num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary);
}

.stat-pill .label {
    font-size: 0.8rem;
    color: rgba(248, 244, 238, 0.5);
    font-weight: 500;
}

/* Floating Elements Column */
.hero-floating {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 420px;
}

/* Animations */
@keyframes floatA {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50% { transform: translateY(-20px) rotate(3deg); }
}

@keyframes floatB {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-14px) rotate(-2deg); }
}

.float-a {
    animation: floatA 7s ease-in-out infinite;
}

.float-b {
    animation: floatB 5s ease-in-out infinite;
}

.store-live-card {
    background: linear-gradient(135deg, #1A1A1A 0%, #111 100%);
    border: 1px solid rgba(248, 244, 238, 0.1);
    border-radius: 16px;
    padding: 32px;
    width: 300px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.card-header-small {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.card-icon-box {
    width: 36px;
    height: 36px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.card-title-small {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
}

.card-subtitle-small {
    font-size: 0.75rem;
    color: rgba(248, 244, 238, 0.4);
}

.pulse-dot {
    margin-left: auto;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.card-divider {
    height: 1px;
    background: rgba(248, 244, 238, 0.06);
    margin-bottom: 20px;
}

.card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.card-row span:first-child {
    font-size: 0.82rem;
    color: rgba(248, 244, 238, 0.5);
}

.card-row span:last-child {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
}

.shops-launched-badge {
    position: absolute;
    top: 20px;
    right: 0;
    background: var(--primary);
    border-radius: 10px;
    padding: 12px 18px;
    box-shadow: 0 16px 40px rgba(232, 82, 26, 0.4);
    z-index: 3;
}

.shops-launched-badge h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--text-light);
    line-height: 1;
}

.shops-launched-badge p {
    font-size: 0.72rem;
    color: rgba(248, 244, 238, 0.8);
    font-weight: 500;
    margin-top: 2px;
}

.partner-floating-badge {
    position: absolute;
    bottom: 30px;
    left: 0;
    background: #1A1A1A;
    border: 1px solid rgba(26, 122, 94, 0.4);
    border-radius: 8px;
    padding: 10px 16px;
    z-index: 3;
}

.partner-floating-badge span {
    font-size: 0.75rem;
    color: var(--secondary);
    font-weight: 600;
    font-family: 'JetBrains Mono', monospace;
}

/* Infinite Scrolling Ticker */
.ticker-bar {
    background: var(--primary);
    padding: 14px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.ticker-track {
    display: flex;
    white-space: nowrap;
    width: max-content;
    animation: ticker 22s linear infinite;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 0 32px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    color: rgba(248, 244, 238, 0.9);
}

.ticker-item span.title {
    color: rgba(248, 244, 238, 0.6);
    font-weight: 400;
    letter-spacing: 0.2em;
    font-size: 0.7rem;
    margin-right: 16px;
}

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

/* Section Header */
.section-header-left {
    margin-bottom: 72px;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.section-label .line {
    width: 32px;
    height: 2px;
    background: var(--primary);
}

.section-label span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: var(--primary);
    letter-spacing: 0.1em;
}

.section-header-left h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    max-width: 600px;
}

.section-header-left p {
    margin-top: 20px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
    font-size: 1rem;
}

/* Services Accordion Layout */
.services-layout {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.services-accordion {
    flex: 1 1 55%;
}

.service-row {
    border-bottom: 1px solid rgba(248, 244, 238, 0.08);
    cursor: pointer;
    transition: var(--transition);
    padding: 24px 0;
}

.service-row:hover, .service-row.active {
    background: rgba(232, 82, 26, 0.06);
}

.service-row-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(248, 244, 238, 0.3);
    letter-spacing: 0.05em;
    min-width: 24px;
    transition: color 0.2s;
}

.service-row.active .service-num {
    color: var(--primary);
}

.service-title-container {
    flex: 1;
}

.service-title-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-title-row h3 {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.01em;
}

.service-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.65rem;
    color: rgba(248, 244, 238, 0.3);
    background: rgba(248, 244, 238, 0.06);
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.08em;
}

.service-arrow {
    color: rgba(248, 244, 238, 0.3);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s;
}

.service-row.active .service-arrow {
    transform: rotate(90deg);
    color: var(--primary);
}

.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-body.open {
    max-height: 200px;
}

.service-body p {
    padding-left: 44px;
    padding-top: 12px;
    padding-bottom: 4px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
}

/* Sticky Preview Column */
.services-preview-col {
    flex: 1 1 40%;
    position: sticky;
    top: 100px;
}

.preview-card {
    background: linear-gradient(135deg, #1A1A1A, #111);
    border: 1px solid rgba(248, 244, 238, 0.08);
    border-radius: 16px;
    padding: 36px;
    overflow: hidden;
    position: relative;
}

.preview-card-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.preview-card-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.6rem;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    line-height: 1.2;
}

.preview-card-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    margin-bottom: 24px;
}

.preview-badge-container {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232, 82, 26, 0.12);
    border: 1px solid rgba(232, 82, 26, 0.25);
    border-radius: 100px;
    padding: 6px 14px;
}

.preview-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 0.08em;
}

/* Portfolio Section */
.portfolio-intro {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 60px;
}

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

.port-card {
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    position: relative;
}

.port-card:hover {
    transform: translateY(-6px);
}

.port-card.span-2 {
    grid-column: span 2;
    padding: 40px 36px;
}

.port-card.span-1 {
    grid-column: span 1;
    padding: 28px 24px;
}

.port-dot-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.port-dot-box .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.port-card h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: -0.02em;
    margin-bottom: 6px;
}

.port-card.span-2 h3 {
    font-size: 1.3rem;
}

.port-card p {
    font-size: 0.82rem;
    color: rgba(248, 244, 238, 0.45);
}

.port-visit {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.3s, transform 0.3s;
    font-size: 0.8rem;
    font-weight: 600;
}

.port-card:hover .port-visit {
    opacity: 1;
    transform: translateY(0);
}

/* Client Specific Port Colors */
.port-uniques {
    background: linear-gradient(135deg, rgba(232, 82, 26, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(232, 82, 26, 0.2);
}
.port-uniques:hover {
    border-color: rgba(232, 82, 26, 0.5);
    box-shadow: 0 12px 32px rgba(232, 82, 26, 0.18);
}
.port-uniques .port-dot-box {
    background: rgba(232, 82, 26, 0.12);
    border: 1px solid rgba(232, 82, 26, 0.25);
}
.port-uniques .port-dot-box .dot {
    background: var(--primary);
}
.port-uniques .port-visit {
    color: var(--primary);
}

.port-gallery {
    background: linear-gradient(135deg, rgba(26, 122, 94, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(26, 122, 94, 0.2);
}
.port-gallery:hover {
    border-color: rgba(26, 122, 94, 0.5);
    box-shadow: 0 12px 32px rgba(26, 122, 94, 0.18);
}
.port-gallery .port-dot-box {
    background: rgba(26, 122, 94, 0.12);
    border: 1px solid rgba(26, 122, 94, 0.25);
}
.port-gallery .port-dot-box .dot {
    background: var(--secondary);
}
.port-gallery .port-visit {
    color: var(--secondary);
}

.port-artful {
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(212, 168, 83, 0.2);
}
.port-artful:hover {
    border-color: rgba(212, 168, 83, 0.5);
    box-shadow: 0 12px 32px rgba(212, 168, 83, 0.18);
}
.port-artful .port-dot-box {
    background: rgba(212, 168, 83, 0.12);
    border: 1px solid rgba(212, 168, 83, 0.25);
}
.port-artful .port-dot-box .dot {
    background: var(--gold);
}
.port-artful .port-visit {
    color: var(--gold);
}

.port-ds {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(44, 62, 80, 0.2);
}
.port-ds:hover {
    border-color: rgba(44, 62, 80, 0.5);
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.18);
}
.port-ds .port-dot-box {
    background: rgba(44, 62, 80, 0.12);
    border: 1px solid rgba(44, 62, 80, 0.25);
}
.port-ds .port-dot-box .dot {
    background: #2C3E50;
}
.port-ds .port-visit {
    color: #34495E;
}

.port-clipart {
    background: linear-gradient(135deg, rgba(123, 79, 191, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(123, 79, 191, 0.2);
}
.port-clipart:hover {
    border-color: rgba(123, 79, 191, 0.5);
    box-shadow: 0 12px 32px rgba(123, 79, 191, 0.18);
}
.port-clipart .port-dot-box {
    background: rgba(123, 79, 191, 0.12);
    border: 1px solid rgba(123, 79, 191, 0.25);
}
.port-clipart .port-dot-box .dot {
    background: #7B4FBF;
}
.port-clipart .port-visit {
    color: #8E44AD;
}

.port-laser {
    background: linear-gradient(135deg, rgba(184, 62, 14, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(184, 62, 14, 0.2);
}
.port-laser:hover {
    border-color: rgba(184, 62, 14, 0.5);
    box-shadow: 0 12px 32px rgba(184, 62, 14, 0.18);
}
.port-laser .port-dot-box {
    background: rgba(184, 62, 14, 0.12);
    border: 1px solid rgba(184, 62, 14, 0.25);
}
.port-laser .port-dot-box .dot {
    background: #B83E0E;
}
.port-laser .port-visit {
    color: #C0392B;
}

.port-berryish {
    background: linear-gradient(135deg, rgba(192, 57, 43, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(192, 57, 43, 0.2);
}
.port-berryish:hover {
    border-color: rgba(192, 57, 43, 0.5);
    box-shadow: 0 12px 32px rgba(192, 57, 43, 0.18);
}
.port-berryish .port-dot-box {
    background: rgba(192, 57, 43, 0.12);
    border: 1px solid rgba(192, 57, 43, 0.25);
}
.port-berryish .port-dot-box .dot {
    background: #C0392B;
}
.port-berryish .port-visit {
    color: #E74C3C;
}

.port-watercolor {
    background: linear-gradient(135deg, rgba(26, 107, 138, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(26, 107, 138, 0.2);
}
.port-watercolor:hover {
    border-color: rgba(26, 107, 138, 0.5);
    box-shadow: 0 12px 32px rgba(26, 107, 138, 0.18);
}
.port-watercolor .port-dot-box {
    background: rgba(26, 107, 138, 0.12);
    border: 1px solid rgba(26, 107, 138, 0.25);
}
.port-watercolor .port-dot-box .dot {
    background: #1A6B8A;
}
.port-watercolor .port-visit {
    color: #2980B9;
}

.port-pearls {
    background: linear-gradient(135deg, rgba(139, 105, 20, 0.13) 0%, #1A1A1A 100%);
    border: 1px solid rgba(139, 105, 20, 0.2);
}
.port-pearls:hover {
    border-color: rgba(139, 105, 20, 0.5);
    box-shadow: 0 12px 32px rgba(139, 105, 20, 0.18);
}
.port-pearls .port-dot-box {
    background: rgba(139, 105, 20, 0.12);
    border: 1px solid rgba(139, 105, 20, 0.25);
}
.port-pearls .port-dot-box .dot {
    background: #8B6914;
}
.port-pearls .port-visit {
    color: #F1C40F;
}

/* Pricing Grid */
.pricing-header {
    text-align: center;
    margin-bottom: 72px;
}

.pricing-header h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 16px;
}

.pricing-header p {
    color: rgba(248, 244, 238, 0.5);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.75;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

.price-card {
    border: 1px solid rgba(248, 244, 238, 0.1);
    border-radius: 12px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    background: #111;
    transition: border-color 0.3s, transform 0.3s;
}

.price-card:hover {
    border-color: rgba(232, 82, 26, 0.4);
    transform: translateY(-4px);
}

.price-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(232, 82, 26, 0.12) 0%, rgba(232, 82, 26, 0.04) 100%);
}

.price-card-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.7rem;
    color: rgba(248, 244, 238, 0.4);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.price-card-popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary);
    border-radius: 100px;
    padding: 4px 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    color: var(--text-light);
}

.price-card h3 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.price-card-desc {
    font-size: 0.85rem;
    color: rgba(248, 244, 238, 0.5);
    margin-bottom: 24px;
    line-height: 1.6;
}

.price-box {
    margin-bottom: 28px;
}

.price-box .amount {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 2.4rem;
    letter-spacing: -0.04em;
    color: var(--text-light);
}

.price-card.featured .price-box .amount {
    color: var(--primary);
}

.price-box .period {
    font-size: 0.8rem;
    color: rgba(248, 244, 238, 0.4);
    margin-left: 8px;
}

.price-divider {
    height: 1px;
    background: rgba(248, 244, 238, 0.08);
    margin-bottom: 24px;
}

.price-features {
    list-style: none;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-features-label {
    font-size: 0.75rem;
    color: rgba(248, 244, 238, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    font-weight: 500;
}

.price-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(248, 244, 238, 0.7);
}

.price-features li .check-icon {
    color: var(--primary);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.price-card .btn-outline {
    width: 100%;
    justify-content: center;
}

.price-card .btn-brand {
    width: 100%;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(232, 82, 26, 0.3);
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
}

.pricing-note p {
    color: rgba(248, 244, 238, 0.4);
    font-size: 0.9rem;
}

.pricing-note a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Contact Section Split */
.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.contact-info-col {
    flex: 1 1 45%;
}

.contact-links-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.contact-link-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: rgba(248, 244, 238, 0.04);
    border: 1px solid rgba(248, 244, 238, 0.08);
    border-radius: 10px;
    transition: var(--transition);
}

.contact-link-card:hover {
    border-color: rgba(248, 244, 238, 0.15);
    background: rgba(248, 244, 238, 0.06);
}

.contact-link-card.whatsapp-card {
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact-link-card.whatsapp-card:hover {
    background: rgba(37, 211, 102, 0.09);
    border-color: rgba(37, 211, 102, 0.35);
}

.contact-card-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link-card .contact-card-icon-box {
    background: rgba(232, 82, 26, 0.12);
    color: var(--primary);
}

.contact-link-card.whatsapp-card .contact-card-icon-box {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.contact-link-card.community-card .contact-card-icon-box {
    background: rgba(212, 168, 83, 0.12);
    color: var(--gold);
}

.contact-card-label {
    font-size: 0.75rem;
    color: rgba(248, 244, 238, 0.4);
    margin-bottom: 2px;
    font-family: 'JetBrains Mono', monospace;
    letter-spacing: 0.05em;
}

.contact-card-value {
    font-weight: 600;
    font-size: 0.95rem;
}

.contact-checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(248, 244, 238, 0.65);
}

.contact-checklist-item .check-icon {
    color: var(--primary);
    display: inline-flex;
}

/* Contact Form Card */
.contact-form-col {
    flex: 1 1 50%;
}

.form-card {
    background: linear-gradient(135deg, #1A1A1A, #111);
    border: 1px solid rgba(248, 244, 238, 0.08);
    border-radius: 16px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.form-card h3 {
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.form-card-desc {
    color: rgba(248, 244, 238, 0.45);
    font-size: 0.9rem;
    margin-bottom: 32px;
    line-height: 1.6;
}

.form-group-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(248, 244, 238, 0.5);
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    font-family: 'JetBrains Mono', monospace;
}

.form-input {
    width: 100%;
    background: rgba(248, 244, 238, 0.05);
    border: 1px solid rgba(248, 244, 238, 0.12);
    border-radius: 6px;
    padding: 14px 18px;
    color: var(--text-light);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s, background 0.2s;
    outline: none;
}

.form-input:focus {
    border-color: var(--primary);
    background: rgba(248, 244, 238, 0.08);
}

.form-input::placeholder {
    color: rgba(248, 244, 238, 0.3);
}

.form-card .btn-brand {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    padding: 16px 24px;
    font-size: 0.95rem;
    border-radius: 8px;
}

/* Call to Action Box */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #B83E0E 100%);
    border-radius: 20px;
    padding: clamp(40px, 6vw, 72px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.cta-banner-decor-1 {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-banner-decor-2 {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.cta-banner-decor-3 {
    position: absolute;
    top: 20px;
    left: 20%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
}

.cta-banner-content {
    position: relative;
    z-index: 1;
}

.cta-banner-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.75rem;
    color: rgba(248, 244, 238, 0.7);
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.cta-banner h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.1;
}

.cta-banner p {
    color: rgba(248, 244, 238, 0.75);
    max-width: 480px;
    margin: 0 auto 36px;
    line-height: 1.75;
    font-size: 1rem;
}

/* Footer styling */
footer {
    padding: 80px 0 32px;
    border-top: 1px solid rgba(248, 244, 238, 0.06);
}

.footer-layout {
    display: flex;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.footer-col-main {
    flex: 1 1 280px;
}

.footer-col-main p {
    color: rgba(248, 244, 238, 0.4);
    font-size: 0.88rem;
    line-height: 1.75;
    max-width: 260px;
}

.footer-col-links {
    flex: 1 1 160px;
}

.footer-col-links h4 {
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    color: rgba(248, 244, 238, 0.5);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col-links ul li a {
    font-size: 0.88rem;
    color: rgba(248, 244, 238, 0.5);
    transition: color 0.2s;
}

.footer-col-links ul li a:hover {
    color: var(--primary);
}

.footer-divider {
    height: 1px;
    background: rgba(248, 244, 238, 0.06);
    margin-bottom: 24px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(248, 244, 238, 0.3);
}

.footer-bottom .not-affiliated {
    font-size: 0.78rem;
    color: rgba(248, 244, 238, 0.2);
    font-family: 'JetBrains Mono', monospace;
}

/* Scroll Reveal classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        align-items: center;
        text-align: center;
    }
    
    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-layout {
        flex-direction: column;
        gap: 32px;
    }
    
    .services-preview-col {
        position: static;
        width: 100%;
    }
    
    .port-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .port-card.span-2 {
        grid-column: span 2;
    }
}

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

    .section-header-left, .pricing-header {
        margin-bottom: 48px;
    }

    .portfolio-intro {
        margin-bottom: 40px;
    }

    .preview-card, .form-card {
        padding: 28px 24px;
    }

    .desktop-nav {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .port-grid {
        grid-template-columns: 1fr;
    }
    
    .port-card.span-2 {
        grid-column: span 1;
        padding: 28px 24px;
        min-height: 180px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-layout {
        flex-direction: column;
        gap: 48px;
    }
    
    .contact-form-col {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 60px 0;
    }

    .section-header-left, .pricing-header {
        margin-bottom: 36px;
    }

    .hero-buttons .btn-brand,
    .hero-buttons .btn-outline {
        width: 100%;
        justify-content: center;
    }
    
    .stat-pill {
        width: 100%;
        justify-content: center;
    }
    
    .port-grid {
        grid-template-columns: 1fr;
    }

    .hero-floating {
        min-height: auto;
        flex-direction: column;
        gap: 16px;
        padding: 20px 0;
    }

    .store-live-card {
        width: 100%;
        max-width: 300px;
    }

    .shops-launched-badge {
        position: static;
        width: 100%;
        max-width: 300px;
        text-align: center;
        box-shadow: none;
    }

    .partner-floating-badge {
        position: static;
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .btn-brand-white {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.95rem;
    }
}
