/* ====================================
   RESET E VARIÁVEIS
   ==================================== */

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

:root {
    /* Cores principais - Tema Escuro Ohayo Digital */
    --primary-color: #00A8E8;
    --primary-dark: #0081B8;
    --primary-light: #33BFEF;
    --secondary-color: #00D9FF;
    --accent-color: #FFFFFF;
    
    /* Cores neutras */
    --dark: #000000;
    --dark-light: #1A1A1A;
    --dark-medium: #2A2A2A;
    --gray: #CCCCCC;
    --gray-dark: #666666;
    --gray-light: #333333;
    --white: #FFFFFF;
    
    /* Gradientes */
    --gradient-primary: linear-gradient(135deg, #00A8E8 0%, #00D9FF 100%);
    --gradient-secondary: linear-gradient(135deg, #00D9FF 0%, #00A8E8 100%);
    
    /* Tipografia */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-headings: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Espaçamentos */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Sombras */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    
    /* Transições */
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--dark);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* ====================================
   TIPOGRAFIA
   ==================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.25rem);
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

/* ====================================
   LOGO
   ==================================== */

.logo-image {
    height: 50px;
    width: auto;
    display: block;
}

.logo-text {
    font-family: var(--font-headings);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    margin-left: 0.75rem;
    letter-spacing: 0.05em;
}

.footer .logo-text {
    color: var(--white);
}

@media (max-width: 640px) {
    .logo-image {
        height: 40px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

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

/* ====================================
   BOTÕES
   ==================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-family: var(--font-headings);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--dark);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

/* ====================================
   WHATSAPP FLOATING BUTTON
   ==================================== */

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #1EBE57;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ====================================
   HEADER/NAVBAR
   ==================================== */

.header {
    position: sticky;
    top: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 168, 232, 0.3);
    border-bottom: 1px solid rgba(0, 168, 232, 0.2);
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-md);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero {
    background: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    padding: var(--spacing-xl) 0;
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 168, 232, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    margin-bottom: var(--spacing-sm);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.3rem);
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.hero-title,
.hero-subtitle,
.benefit-item {
    position: relative;
    z-index: 1;
}

.hero-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(0, 168, 232, 0.2);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 168, 232, 0.4);
    transform: translateX(10px);
}

.benefit-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-visual {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.hero-photo-frame {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.5);
    border: 4px solid var(--primary-color);
    z-index: 2;
    position: relative;
    margin-bottom: -60px;
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.hero-decoration {
    width: 350px;
    height: 280px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 2rem;
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

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

/* ====================================
   STRATEGY SECTION
   ==================================== */

.strategy-section {
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    text-align: center;
    border-top: 1px solid rgba(0, 168, 232, 0.2);
    border-bottom: 1px solid rgba(0, 168, 232, 0.2);
}

.strategy-section .section-title {
    color: var(--white);
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

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

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

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

.services-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.6);
    box-shadow: 0 12px 40px rgba(0, 168, 232, 0.3);
}

.service-card.featured {
    border-color: var(--primary-color);
    background: rgba(0, 168, 232, 0.05);
}

.service-card.featured:hover {
    border-color: var(--primary-color);
    box-shadow: 0 12px 40px rgba(0, 168, 232, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.service-card > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
    flex-grow: 1;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-top: var(--spacing-sm);
}

.service-list li {
    color: var(--gray);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list li i {
    color: var(--primary-color);
    font-size: 0.875rem;
}

.btn-service {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: var(--spacing-sm);
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.btn-service:hover {
    background: var(--primary-color);
    color: var(--dark);
    transform: translateX(5px);
}

.btn-service i {
    transition: var(--transition);
}

.btn-service:hover i {
    transform: translateX(5px);
}

/* ====================================
   PROCESS SECTION
   ==================================== */

.process-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.process-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.process-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.2);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.process-title {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.process-description {
    color: var(--gray);
    line-height: 1.7;
}

/* ====================================
   WHY INVEST SECTION
   ==================================== */

.why-invest-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.why-card {
    text-align: center;
    padding: var(--spacing-md);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 168, 232, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.2);
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
}

.why-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.why-card p {
    color: var(--gray);
    line-height: 1.7;
}

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

.about-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

/* Sobre com Foto do Fundador */
.about-founder {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-md);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 232, 0.2);
}

.founder-photo {
    width: 180px;
    height: 180px;
    flex-shrink: 0;
}

.founder-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 8px 32px rgba(0, 168, 232, 0.3);
}

.founder-content {
    flex: 1;
}

.founder-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
}

.founder-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.about-company {
    margin-bottom: var(--spacing-lg);
}

.about-company p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.mvv-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.mvv-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    transform: translateY(-3px);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.mvv-card h3 {
    font-size: 1.3rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.mvv-card p {
    color: var(--gray);
    line-height: 1.7;
}

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

.contact-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #000000 0%, #0A0A0A 100%);
    color: var(--white);
    border-top: 1px solid rgba(0, 168, 232, 0.3);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.contact-info .section-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
}

.contact-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.9);
}

.qr-code-placeholder {
    margin-top: var(--spacing-md);
    text-align: center;
}

.qr-box {
    width: 200px;
    height: 200px;
    margin: var(--spacing-sm) auto 0;
    background: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    box-shadow: 0 4px 16px rgba(0, 168, 232, 0.3);
}

.qr-code-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qr-code-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
    text-align: center;
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 232, 0.3);
    backdrop-filter: blur(20px);
}

.contact-form h3 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 168, 232, 0.3);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--white);
    transition: var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group select {
    color: var(--white);
}

.form-group select option {
    background: var(--dark);
    color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.checkbox-group {
    margin-bottom: var(--spacing-md);
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 0.9rem;
    color: var(--gray);
}

.form-info {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: var(--spacing-md);
}

.form-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 168, 232, 0.2);
}

.email-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.email-link:hover {
    color: var(--primary-light);
    text-decoration: underline;
}

.form-message {
    margin-top: var(--spacing-sm);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
    display: block;
}

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

.footer {
    background: #000000;
    color: var(--white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
    border-top: 1px solid rgba(0, 168, 232, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
}

.footer-links h4 {
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-social h4 {
    margin-bottom: var(--spacing-sm);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: var(--spacing-sm);
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.instagram-handle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* ====================================
   SERVICE PAGES STYLES
   ==================================== */

/* Breadcrumb */
.breadcrumb {
    font-size: 0.95rem;
    color: var(--gray);
    margin-bottom: var(--spacing-sm);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

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

/* Service Hero */
.service-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* Content Section */
.content-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.lead-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--white);
    margin-bottom: var(--spacing-md);
    font-weight: 500;
}

.content-wrapper p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

/* Platforms Grid */
.platforms-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.platform-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 20px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.platform-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    transform: translateY(-5px);
}

.platform-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.platform-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.platform-card > p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.platform-features {
    list-style: none;
    padding: 0;
}

.platform-features li {
    color: var(--gray);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.platform-features li i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* Benefits Grid */
.benefits-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.benefit-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    position: relative;
    transition: var(--transition);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    transform: translateY(-3px);
}

.benefit-number {
    position: absolute;
    top: -15px;
    right: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 168, 232, 0.2);
    font-family: var(--font-headings);
}

.benefit-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.benefit-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* Steps Timeline */
.how-it-works-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
}

.step-item {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    text-align: center;
    transition: var(--transition);
}

.step-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    transform: translateY(-5px);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    margin: 0 auto var(--spacing-sm);
}

.step-item h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.step-item p {
    color: var(--gray);
    line-height: 1.7;
}

/* Target Audience */
.target-audience-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark-light);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.5);
    transform: scale(1.03);
}

.audience-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.audience-card h3 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.audience-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    border-top: 1px solid rgba(0, 168, 232, 0.3);
    border-bottom: 1px solid rgba(0, 168, 232, 0.3);
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 2.5rem);
    color: var(--white);
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* FAQ Section */
.faq-section {
    padding: var(--spacing-xl) 0;
    background: var(--dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid rgba(0, 168, 232, 0.2);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(0, 168, 232, 0.4);
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.faq-item h3:before {
    content: '?';
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item p {
    color: var(--gray);
    line-height: 1.8;
}

.faq-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.faq-item a:hover {
    text-decoration: underline;
}

/* Footer Extras for Service Pages */
.footer-location,
.footer-email {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.footer-location i,
.footer-email i,
.footer-phone i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.footer-phone {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* ====================================
   GENERAL FIXES
   ==================================== */

* {
    box-sizing: border-box;
}

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

section {
    width: 100%;
    overflow-x: hidden;
}

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

@media (max-width: 968px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        border-left: 1px solid rgba(0, 168, 232, 0.3);
        width: 280px;
        max-width: 80vw;
        padding: 2rem;
        box-shadow: 0 8px 32px rgba(0, 168, 232, 0.3);
        transition: var(--transition);
        height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .about-founder {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }
    
    .founder-photo {
        width: 150px;
        height: 150px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-photo-frame {
        width: 220px;
        height: 220px;
        margin-bottom: -40px;
    }
    
    .hero-decoration {
        width: 280px;
        height: 220px;
        font-size: 4rem;
        padding-bottom: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .footer-links ul li a:hover {
        transform: translateX(0);
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.7rem;
        bottom: 1rem;
        right: 1rem;
    }
    
    .process-grid,
    .why-grid,
    .about-grid,
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-photo-frame {
        width: 180px;
        height: 180px;
        margin-bottom: -30px;
    }
    
    .hero-decoration {
        width: 240px;
        height: 180px;
        font-size: 3.5rem;
        padding-bottom: 1rem;
    }
    
    .hero-visual {
        padding: 0 1rem;
    }
    
    .services-grid,
    .platforms-grid,
    .benefits-grid,
    .steps-timeline,
    .audience-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card,
    .platform-card,
    .benefit-card,
    .step-item,
    .audience-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
}
