/* ===============================
   FIREGOL MEDIA KIT — LIGHT GASTRONOMY PREMIUM
   =============================== */

/* CSS Variables */
:root {
    --bg-primary: #F0F4F8;
    --bg-secondary: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-card-alt: #F7FAFC;
    --bg-hero: linear-gradient(160deg, #FFFFFF 0%, #FAFAF7 40%, #F5EBE1 100%);
    --bg-glass: rgba(255, 255, 255, 0.88);

    --text-primary: #1A2B4A;
    --text-secondary: #4A5E7A;
    --text-muted: #8B9BB5;

    --warm-orange: #FF5722;
    --warm-red: #E84525;
    --warm-gold: #F5A623;
    --warm-amber: #FFC857;
    --warm-cream: #FFF3E8;
    --warm-peach: #FFE4CC;
    --warm-cinnamon: #6B4226;

    --accent-gradient: linear-gradient(135deg, #FF6B35, #FFC857);
    --accent-gradient-alt: linear-gradient(135deg, #E84525, #FF6B35, #FFC857);
    --gold-gradient: linear-gradient(135deg, #F5A623, #FFC857);
    --accent-glow: rgba(255, 107, 53, 0.2);

    --blue-primary: #2563EB;
    --blue-light: #3B82F6;
    --blue-dark: #1E3A5F;
    --blue-muted: #93C5FD;

    --youtube-red: #ff0000;
    --tiktok-pink: #fe2c55;
    --instagram-purple: #c13584;
    --facebook-blue: #1877f2;
    --kwai-orange: #ff7e29;

    --radius-sm: 10px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --shadow-sm: 0 2px 12px rgba(26, 43, 74, 0.06);
    --shadow-md: 0 8px 30px rgba(26, 43, 74, 0.08);
    --shadow-lg: 0 16px 50px rgba(26, 43, 74, 0.12);
    --shadow-warm: 0 8px 32px rgba(255, 107, 53, 0.15);
    --shadow-card: 0 2px 8px rgba(46, 52, 63, 0.04), 0 8px 24px rgba(26, 43, 74, 0.06);

    --font-display: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* ===============================
   NAVIGATION
   =============================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 43, 74, 0.06);
    box-shadow: 0 2px 20px rgba(26, 43, 74, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-full {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #FF5722;
}

.logo-fire {
    color: #FF5722;
}

.logo-gol {
    color: #FF5722;
}

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

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

.nav-links a:hover {
    color: var(--warm-orange);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    border-radius: 2px;
    transition: var(--transition);
}

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

.nav-cta {
    background: var(--accent-gradient) !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    color: #fff !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px rgba(232, 101, 43, 0.25);
}

.nav-cta:hover {
    box-shadow: 0 6px 24px rgba(232, 101, 43, 0.35);
    transform: translateY(-1px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

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

/* ===============================
   HERO SECTION
   =============================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 24px 80px;
    background: var(--bg-hero);
    color: var(--text-primary);
}

.hero-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.fire-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.3;
    animation: float 10s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 87, 34, 0.08), transparent 70%);
    top: -10%;
    right: -8%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.05), transparent 70%);
    bottom: 5%;
    left: -5%;
    animation-delay: -3s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(214, 40, 40, 0.04), transparent 70%);
    top: 30%;
    left: 35%;
    animation-delay: -6s;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(26, 43, 74, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 43, 74, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at center, black 10%, transparent 65%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 10%, transparent 65%);
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-25px) scale(1.03); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--warm-amber);
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title {
    font-family: var(--font-display);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.title-line {
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.title-name {
    display: block;
    font-size: clamp(3.2rem, 10vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 2px;
}

.fire-text {
    color: #FF5722;
    -webkit-text-fill-color: #FF5722;
    filter: drop-shadow(0 4px 20px rgba(255, 87, 34, 0.5));
}

.gol-text {
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    max-width: 580px;
    margin: 0 auto 40px;
    line-height: 1.9;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

.hero-subtitle strong {
    color: var(--warm-orange);
    font-weight: 700;
}

.hero-stats-mini {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-bottom: 44px;
    animation: fadeInUp 0.8s ease 0.6s forwards;
    opacity: 0;
}

.mini-stat {
    text-align: center;
}

.mini-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
}

.mini-suffix {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--warm-amber);
}

.mini-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 4px;
    font-weight: 500;
}

.mini-divider {
    width: 1px;
    height: 44px;
    background: linear-gradient(to bottom, transparent, rgba(26, 43, 74, 0.15), transparent);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s forwards;
    opacity: 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 34px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.35s ease;
}

.btn-primary {
    background: var(--accent-gradient);
    color: #fff;
    box-shadow: 0 4px 20px rgba(232, 101, 43, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 32px rgba(232, 101, 43, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #FFFFFF;
    color: var(--text-primary);
    border: 1.5px solid rgba(26, 43, 74, 0.1);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: #FAFAFA;
    border-color: var(--warm-orange);
    color: var(--warm-orange);
    box-shadow: var(--shadow-md);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeInUp 0.8s ease 1s forwards;
    opacity: 0;
}

.scroll-line {
    width: 2px;
    height: 36px;
    background: linear-gradient(to bottom, rgba(26, 43, 74, 0.3), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}

.scroll-indicator span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    font-weight: 500;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
}

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

/* ===============================
   SECTION HEADERS
   =============================== */

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: #EBF2FF;
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--blue-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-title .highlight {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    max-width: 580px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ===============================
   ABOUT SECTION
   =============================== */

.about {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(26, 43, 74, 0.08), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s ease;
}

.about-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-lead {
    font-size: 1.2rem;
    color: var(--text-primary);
    line-height: 1.9;
    margin-bottom: 20px;
    font-weight: 400;
}

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

.about-content strong {
    color: var(--warm-orange);
    font-weight: 600;
}

.about-highlights {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--bg-primary);
    border-radius: var(--radius-md);
    border: 1px solid rgba(26, 43, 74, 0.06);
    transition: var(--transition);
}

.highlight-item:hover {
    border-color: rgba(255, 107, 53, 0.2);
    transform: translateX(4px);
    box-shadow: var(--shadow-warm);
}

.highlight-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.highlight-item strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.95rem;
    margin-bottom: 3px;
    font-weight: 700;
}

.highlight-item span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* About Visual */
.about-visual {
    position: relative;
    height: 420px;
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s ease 0.2s;
}

.about-visual.animate {
    opacity: 1;
    transform: translateX(0);
}

.about-card-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.about-card {
    position: absolute;
    width: 160px;
    height: 200px;
    background: var(--bg-secondary);
    border: 1px solid rgba(26, 43, 74, 0.06);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.5s ease;
    box-shadow: var(--shadow-card);
}

.about-card:hover {
    transform: translateY(-8px) rotate(0deg) !important;
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: var(--shadow-warm);
}

.card-emoji {
    font-size: 2.8rem;
}

.about-card p {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.card-1 {
    top: 8%;
    left: 5%;
    transform: rotate(-6deg);
    background: linear-gradient(135deg, #EBF2FF, #FFFFFF);
}

.card-2 {
    top: 3%;
    right: 10%;
    transform: rotate(4deg);
    background: linear-gradient(135deg, #F0F4F8, #FFFFFF);
}

.card-3 {
    bottom: 5%;
    left: 15%;
    transform: rotate(3deg);
    background: linear-gradient(135deg, #E8F0FE, #FFFFFF);
}

.card-4 {
    bottom: 8%;
    right: 5%;
    transform: rotate(-5deg);
    background: linear-gradient(135deg, #F2F6FA, #FFFFFF);
}

/* ===============================
   STATS SECTION
   =============================== */

.stats {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: var(--bg-primary);
}

.stats-bg-effects {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.stats-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 200, 87, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-bottom: 52px;
}

.stat-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(26, 43, 74, 0.06);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-card);
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.stat-youtube::before { background: var(--youtube-red); }
.stat-tiktok::before { background: var(--tiktok-pink); }
.stat-kwai::before { background: var(--kwai-orange); }
.stat-instagram::before { background: var(--instagram-purple); }
.stat-facebook::before { background: var(--facebook-blue); }

.stat-youtube:hover { border-color: rgba(255, 0, 0, 0.15); }
.stat-tiktok:hover { border-color: rgba(254, 44, 85, 0.15); }
.stat-kwai:hover { border-color: rgba(255, 126, 41, 0.15); }
.stat-instagram:hover { border-color: rgba(193, 53, 132, 0.15); }
.stat-facebook:hover { border-color: rgba(24, 119, 242, 0.15); }

.stat-platform-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.stat-youtube .stat-platform-icon { background: rgba(255, 0, 0, 0.08); color: var(--youtube-red); }
.stat-tiktok .stat-platform-icon { background: rgba(254, 44, 85, 0.08); color: var(--tiktok-pink); }
.stat-kwai .stat-platform-icon { background: rgba(255, 126, 41, 0.08); color: var(--kwai-orange); }
.stat-instagram .stat-platform-icon { background: rgba(193, 53, 132, 0.08); color: var(--instagram-purple); }
.stat-facebook .stat-platform-icon { background: rgba(24, 119, 242, 0.08); color: var(--facebook-blue); }

.stat-info {
    margin-bottom: 18px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin-top: 4px;
}

.stat-bar {
    height: 4px;
    background: rgba(44, 24, 16, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.stat-bar-fill {
    height: 100%;
    width: 0;
    border-radius: 4px;
    transition: width 1.5s ease;
}

.stat-youtube .stat-bar-fill { background: var(--youtube-red); }
.stat-tiktok .stat-bar-fill { background: var(--tiktok-pink); }
.stat-kwai .stat-bar-fill { background: var(--kwai-orange); }
.stat-instagram .stat-bar-fill { background: var(--instagram-purple); }
.stat-facebook .stat-bar-fill { background: var(--facebook-blue); }

/* Stats Highlight */
.stats-highlight {
    display: flex;
    justify-content: center;
}

.stats-highlight-card {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: var(--radius-xl);
    padding: 44px 72px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--shadow-warm);
}

.highlight-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(232, 101, 43, 0.04), rgba(245, 166, 35, 0.04));
    border-radius: var(--radius-xl);
    z-index: 0;
}

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

.highlight-number {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.highlight-unit {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--warm-orange);
    margin-left: 4px;
}

.highlight-desc {
    display: block;
    font-size: 1rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-weight: 400;
}

/* ===============================
   AUDIENCE SECTION
   =============================== */

.audience {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.audience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 101, 43, 0.12), transparent);
}

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

.audience-card {
    background: var(--warm-cream);
    border: 1px solid rgba(232, 101, 43, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
}

.audience-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(37, 99, 235, 0.12);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: var(--bg-secondary);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: var(--shadow-sm);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.audience-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===============================
   SERVICES SECTION
   =============================== */

.services {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.service-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(26, 43, 74, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-card);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
}

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

.service-card.featured {
    border-color: rgba(232, 101, 43, 0.15);
    background: linear-gradient(160deg, #fffaf5, #ffffff);
}

.service-card.featured:hover {
    border-color: rgba(232, 101, 43, 0.3);
    box-shadow: var(--shadow-warm);
}

.service-badge {
    position: absolute;
    top: -1px;
    right: 28px;
    background: var(--accent-gradient);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 7px 18px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.service-icon-wrap {
    margin-bottom: 22px;
}

.service-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-cream);
    border-radius: var(--radius-md);
    border: 1px solid rgba(232, 101, 43, 0.06);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    margin-bottom: 22px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding-left: 22px;
    position: relative;
    font-weight: 500;
}

.service-features li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--warm-orange);
    font-size: 0.65rem;
    top: 3px;
}

/* ===============================
   BRANDS SECTION
   =============================== */

.brands {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.brands::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 101, 43, 0.12), transparent);
}

.brands-showcase {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 52px;
}

.brand-item {
    width: 200px;
    height: 100px;
    background: var(--bg-primary);
    border: 1px solid rgba(26, 43, 74, 0.06);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.brand-item:hover {
    border-color: rgba(255, 107, 53, 0.15);
    box-shadow: var(--shadow-warm);
    transform: translateY(-3px);
}

.brand-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.logo-subway {
    font-family: 'Arial Black', Impact, sans-serif;
    font-size: 2.2rem;
    font-style: italic;
    font-weight: 900;
    display: flex;
    letter-spacing: -2px;
}

.logo-subway .sub {
    color: #008938;
    padding-right: 2px;
}

.logo-subway .way {
    color: #F2A900;
}

.logo-99food {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
}

.circle-99 {
    background: #FFCC00;
    color: #1A1A1A;
    font-weight: 900;
    font-size: 1.2rem;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    letter-spacing: -1px;
}

.food-text {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.brands-cta {
    text-align: center;
}

.brands-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 400;
}

/* ===============================
   DIFFERENTIALS SECTION
   =============================== */

.differentials {
    padding: 120px 0;
    background: var(--bg-primary);
}

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

.diff-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(26, 43, 74, 0.06);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(30px);
    box-shadow: var(--shadow-card);
}

.diff-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.diff-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 101, 43, 0.12);
    box-shadow: var(--shadow-warm);
}

.diff-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.25;
    line-height: 1;
    margin-bottom: 18px;
}

.diff-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.diff-card p {
    color: var(--text-secondary);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ===============================
   CONTACT SECTION
   =============================== */

.contact {
    padding: 120px 0;
    background: var(--bg-secondary);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(232, 101, 43, 0.12), transparent);
}

.contact-grid {
    display: flex;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px;
    background: var(--bg-primary);
    border: 1px solid rgba(26, 43, 74, 0.06);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    border-color: rgba(37, 99, 235, 0.12);
    box-shadow: var(--shadow-md);
}

.contact-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.contact-card strong {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 3px;
    font-weight: 600;
}

.contact-card a {
    color: var(--text-primary);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--warm-orange);
}

.contact-card span {
    color: var(--text-secondary);
}

.contact-socials {
    margin-top: 20px;
}

.contact-socials h4 {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 43, 74, 0.06);
    box-shadow: var(--shadow-sm);
}

.social-link svg {
    width: 22px;
    height: 22px;
}

.social-youtube { color: var(--youtube-red); background: rgba(255, 0, 0, 0.05); }
.social-tiktok { color: var(--tiktok-pink); background: rgba(254, 44, 85, 0.05); }
.social-kwai { color: var(--kwai-orange); background: rgba(255, 126, 41, 0.05); }
.social-instagram { color: var(--instagram-purple); background: rgba(193, 53, 132, 0.05); }
.social-facebook { color: var(--facebook-blue); background: rgba(24, 119, 242, 0.05); }

.social-youtube:hover { background: var(--youtube-red); color: #fff; box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2); }
.social-tiktok:hover { background: var(--tiktok-pink); color: #fff; box-shadow: 0 4px 12px rgba(254, 44, 85, 0.2); }
.social-kwai:hover { background: var(--kwai-orange); color: #fff; box-shadow: 0 4px 12px rgba(255, 126, 41, 0.2); }
.social-instagram:hover { background: var(--instagram-purple); color: #fff; box-shadow: 0 4px 12px rgba(193, 53, 132, 0.2); }
.social-facebook:hover { background: var(--facebook-blue); color: #fff; box-shadow: 0 4px 12px rgba(24, 119, 242, 0.2); }


/* ===============================
   FOOTER
   =============================== */

.footer {
    padding: 52px 0 28px;
    background: var(--bg-primary);
    border-top: 1px solid rgba(26, 43, 74, 0.06);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    max-width: 320px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--warm-orange);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(44, 24, 16, 0.06);
}

.footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

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

@media (max-width: 968px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-visual {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 32px 32px;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(232, 101, 43, 0.08);
        box-shadow: -4px 0 30px rgba(44, 24, 16, 0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-stats-mini {
        flex-direction: column;
        gap: 20px;
    }

    .mini-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(to right, transparent, rgba(232, 101, 43, 0.2), transparent);
    }

    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }

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

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

    .stats-highlight-card {
        padding: 32px 36px;
    }

    .highlight-number {
        font-size: 3.2rem;
    }

    .brands-showcase {
        gap: 12px;
    }

    .brand-item {
        width: calc(50% - 6px);
    }

    .footer-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .footer-brand p {
        max-width: 100%;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

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

    .hero {
        padding: 100px 16px 60px;
    }

    .title-line {
        font-size: 1rem;
    }

    .about-card {
        width: 130px;
        height: 160px;
    }

    .contact-form {
        padding: 28px;
    }

    .service-card {
        padding: 28px;
    }

    .diff-card {
        padding: 28px;
    }

    .logo-subway {
        font-size: 1.6rem;
        letter-spacing: -1px;
    }

    .circle-99 {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }

    .food-text {
        font-size: 1.25rem;
    }
}
