/* ============================================
   SELEKTIAL — Premium Design System
   Deep Blue (#0B1D3A) + Gold (#C8A04E)
   ============================================ */

:root {
    --primary: #0B1D3A;
    --primary-light: #132B50;
    --primary-dark: #060F1F;
    --gold: #C8A04E;
    --gold-light: #D4B36A;
    --bg-cream: #FAFAF5;
    --bg-alt: #F2F1EC;
    --text-dark: #1A1A2E;
    --text-body: #4A4A5A;
    --text-muted: #7A7A8A;
    --text-light: #F5F5F5;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --radius: 8px;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Keyframes ---- */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes scrollPulse {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.4; }
}

@keyframes goldShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

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

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--bg-cream);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
}

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

ul {
    list-style: none;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.75rem;
    font-weight: 800;
}

h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.section-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: block;
}

.text-gradient {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ---- Reveal Animations ---- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-group > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-group.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-group.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-group.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-group.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-group.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-group.revealed > *:nth-child(6) { transition-delay: 0.5s; }
.reveal-group.revealed > *:nth-child(7) { transition-delay: 0.6s; }
.reveal-group.revealed > *:nth-child(8) { transition-delay: 0.7s; }

.reveal-group.revealed > * {
    opacity: 1;
    transform: translateY(0);
}

/* Legacy fade support */
.hidden {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
}

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

.section {
    padding: 100px 0;
}

/* ---- Buttons ---- */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--gold);
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(200, 160, 78, 0.3);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 160, 78, 0.4);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--primary);
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    background: transparent;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    font-size: 1.1rem;
    padding: 16px 40px;
}

.btn-whatsapp:hover {
    background: #1fb855;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    margin-right: 8px;
}

/* ---- Gold decorative line ---- */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-bottom: 1.5rem;
}

.gold-line-center {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 0 auto 1.5rem;
}

/* ---- Header ---- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 15px 0;
    transition: var(--transition);
}

header.header-transparent {
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
}

header.header-transparent .nav-links a {
    color: rgba(255, 255, 255, 0.85);
}

header.header-transparent .nav-links a:hover,
header.header-transparent .nav-links a.active {
    color: var(--gold);
}

header.header-transparent .mobile-toggle {
    color: white;
}

header.header-transparent .logo img {
    filter: brightness(0) invert(1);
}

header.header-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    padding: 10px 0;
}

header.header-scrolled .nav-links a {
    color: var(--primary);
}

header.header-scrolled .nav-links a:hover,
header.header-scrolled .nav-links a.active {
    color: var(--gold);
}

header.header-scrolled .mobile-toggle {
    color: var(--primary);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    height: 35px;
}

.logo-name {
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary);
    position: relative;
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

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

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ---- Hero (Homepage) ---- */
.hero {
    padding-top: 0;
    padding-bottom: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-decoration {
    position: absolute;
    border: 2px solid rgba(200, 160, 78, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.hero-decoration-2 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-decoration-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 20%;
    border-color: rgba(200, 160, 78, 0.1);
    animation: float 10s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
}

.hero-text h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero-text h1 .highlight {
    color: var(--gold);
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-indicator i {
    display: block;
    margin-top: 8px;
    font-size: 1.2rem;
    animation: scrollPulse 2s ease-in-out infinite;
}

/* ---- Stats Bar ---- */
.stats-bar {
    background: var(--primary);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 160, 78, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item h4 {
    color: var(--gold);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- Services Snippet (Homepage) ---- */
.services-snippet {
    background: var(--bg-cream);
}

.services-snippet .about-content {
    gap: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(200, 160, 78, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* ---- Industries Section ---- */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.industry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}

.industry-card:hover .industry-bg {
    transform: scale(1.1);
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    background: linear-gradient(to top, rgba(11, 29, 58, 0.95), rgba(11, 29, 58, 0.7) 50%, transparent);
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.industry-content h4 {
    color: white;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.industry-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    max-height: 0;
}

.industry-card:hover .industry-content p {
    opacity: 1;
    transform: translateY(0);
    max-height: 100px;
}

/* ---- Industry Detail Rows ---- */
.industry-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.industry-row img {
    border-radius: 12px;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.industry-content-detail h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.industry-content-detail h4 {
    font-size: 1.2rem;
    color: var(--gold);
    margin-top: 20px;
    margin-bottom: 10px;
}

.industry-content-detail ul {
    list-style: none;
}

.industry-content-detail li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
}

.industry-content-detail li::before {
    content: '\2713';
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* ---- About Section ---- */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    color: var(--primary);
    font-weight: 500;
}

.about-features {
    display: grid;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ---- Mission & Vision Cards ---- */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
}

.mv-card h3 {
    margin-bottom: 1rem;
}

.mv-card p {
    color: var(--text-body);
}

/* ---- Values Grid ---- */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    transition: var(--transition);
}

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

.value-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    display: block;
}

/* ---- Team Section ---- */
.team-section {
    background: var(--primary);
    color: white;
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(200, 160, 78, 0.15);
}

.team-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.team-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.team-card-info {
    padding: 25px;
}

.team-card-info h4 {
    color: white;
    margin-bottom: 5px;
}

.team-card-info p {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ---- WhatsApp CTA Section ---- */
.whatsapp-cta {
    background: var(--primary);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.whatsapp-cta::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: rgba(200, 160, 78, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.whatsapp-cta h2 {
    color: white;
    margin-bottom: 15px;
}

.whatsapp-cta p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.15rem;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ---- Process Steps (How We Work) ---- */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.process-number {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
}

.process-step:last-child::after {
    display: none;
}

/* ---- Technology Stack ---- */
.tech-stack {
    background: var(--bg-alt);
    padding: 60px 0;
}

.tech-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.tech-item {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.tech-item:hover {
    color: var(--gold);
}

.tech-item i {
    display: block;
    font-size: 2rem;
    margin-bottom: 8px;
    color: var(--primary);
    transition: var(--transition);
}

.tech-item:hover i {
    color: var(--gold);
}

/* ---- Product Teaser (Homepage) ---- */
.product-teaser {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.product-teaser::after {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(200, 160, 78, 0.06);
    border-radius: 50%;
    pointer-events: none;
}

.product-teaser-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.product-teaser-text h2 {
    color: white;
}

.product-teaser-text p {
    color: rgba(255, 255, 255, 0.75);
}

.product-teaser-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.product-teaser-feat {
    display: flex;
    align-items: start;
    gap: 10px;
}

.product-teaser-feat i {
    color: var(--gold);
    margin-top: 3px;
}

.product-teaser-feat span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

/* ---- How It Works Steps (DietOwl) ---- */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.how-step {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--gold);
    transition: var(--transition);
}

.how-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.how-step-number {
    width: 45px;
    height: 45px;
    background: rgba(200, 160, 78, 0.1);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.how-step i.step-icon {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.how-step h4 {
    margin-bottom: 8px;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ---- Services Intro ---- */
.services-intro {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.services-intro p {
    font-size: 1.1rem;
    color: var(--text-body);
}

/* ---- FAQ Section ---- */
.faq-section {
    background: var(--bg-alt);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.faq-item p {
    color: var(--text-body);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* ---- Page Headers ---- */
.page-header {
    padding: 150px 0 80px;
    color: white;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border: 2px solid rgba(200, 160, 78, 0.1);
    border-radius: 50%;
    pointer-events: none;
}

.page-header h1 {
    color: white;
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.9;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
}

/* ---- Service Rows (Services Page) ---- */
.service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-row.row-reverse .service-img {
    order: 2;
}

.service-row.row-reverse .service-content {
    order: 1;
}

.service-img img {
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-content ul {
    margin-top: 20px;
}

.service-content li {
    margin-bottom: 10px;
    display: flex;
    align-items: start;
    gap: 10px;
}

.service-content li i {
    color: var(--gold);
    margin-top: 5px;
}

.service-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 0 auto 80px;
    opacity: 0.4;
}

/* ---- Product Hero (DietOwl) ---- */
.product-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.product-hero::after {
    content: '';
    position: absolute;
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 400px;
    background: radial-gradient(circle, rgba(200, 160, 78, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.product-hero h1 {
    color: white;
    margin-bottom: 20px;
    font-size: 3.5rem;
}

.product-hero .lead {
    font-size: 1.5rem;
    opacity: 0.9;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 16px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(200, 160, 78, 0.15);
    transition: var(--transition);
}

.feature-card:hover {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h4 {
    color: white;
    margin-top: 20px;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.feature-card i {
    font-size: 2rem;
    color: var(--gold);
}

/* ---- DietOwl Section ---- */
.dietowl-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.dietowl-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(200, 160, 78, 0.08);
    border-radius: 50%;
    filter: blur(80px);
}

.dietowl-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.dietowl-logo {
    max-width: 200px;
    margin-bottom: 30px;
    filter: brightness(0) invert(1);
}

.dietowl-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
    text-align: left;
}

.dietowl-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.dietowl-section h2,
.dietowl-section p {
    color: white;
}

/* ---- Contact ---- */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 5px;
}

form input,
form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e0dfd8;
    border-radius: 8px;
    font-family: var(--font-body);
    transition: var(--transition);
    background: var(--bg-cream);
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(200, 160, 78, 0.15);
}

form button {
    width: 100%;
}

/* ---- Footer ---- */
footer {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info p {
    opacity: 0.6;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
}

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

.footer-links a {
    opacity: 0.6;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
    text-align: center;
    opacity: 0.4;
    font-size: 0.9rem;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gold);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 12px rgba(200, 160, 78, 0.3);
    border: none;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(200, 160, 78, 0.4);
}

/* ============================================
   RESPONSIVE — 1024px
   ============================================ */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    h2 { font-size: 2.25rem; }

    .hero-content {
        gap: 40px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-teaser-content {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.4rem; }

    .section { padding: 70px 0; }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 120px 0 80px;
    }

    .hero-text p {
        margin: 0 auto 2rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-image {
        order: -1;
        margin-bottom: 20px;
    }

    .hero-image::after {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        transform: translateY(-150%);
        transition: var(--transition);
        text-align: center;
    }

    header.header-transparent .nav-links {
        background: var(--primary);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .service-row,
    .service-row.row-reverse .service-img,
    .service-row.row-reverse .service-content {
        grid-template-columns: 1fr;
        order: unset;
    }

    .service-row {
        grid-template-columns: 1fr;
    }

    .industry-row {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .industry-row img {
        height: 250px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

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

    .contact-container {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .process-step::after {
        display: none;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .product-teaser-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-teaser-features {
        grid-template-columns: 1fr;
    }

    .product-teaser-feat {
        justify-content: center;
    }

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

    .product-hero h1 {
        font-size: 2.5rem;
    }
}

/* ============================================
   RESPONSIVE — 480px
   ============================================ */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .section { padding: 50px 0; }

    .container { padding: 0 15px; }

    .hero-content {
        padding: 100px 0 60px;
    }

    .stat-item h4 {
        font-size: 2rem;
    }

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

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

    .btn-whatsapp {
        padding: 14px 30px;
        font-size: 1rem;
    }

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

    .tech-logos {
        gap: 25px;
    }

    .page-header {
        padding: 120px 0 60px;
    }

    .whatsapp-cta {
        padding: 60px 0;
    }

    .product-hero {
        padding: 120px 0 60px;
    }

    .product-hero h1 {
        font-size: 2rem;
    }
}

/* ---- Reduced Motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }

    .reveal-group > * {
        opacity: 1;
        transform: none;
    }

    .hero {
        animation: none;
        background-size: 100% 100%;
    }

    body {
        opacity: 1;
    }
}
