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

:root {
    --accent-color: #E85D44;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --bg-light: #FBF9F6;
    --bg-white: #FFFFFF;
    --bg-dark: #1A1A1A;
    --border-light: #E0E0E0;
}

/* Dark Mode */
@media (prefers-color-scheme: dark) {
    :root {
        --text-dark: #E5E5E5;
        --text-light: #B0B0B0;
        --bg-light: #1A1A1A;
        --bg-white: #121212;
        --bg-dark: #0A0A0A;
        --border-light: #333333;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 80px;
    font-weight: 400;
    letter-spacing: -0.01em;
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .header {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

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

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

.logo a {
    display: inline-block;
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.95);
    transition: background-color 0.3s ease;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: none;
}

@media (prefers-color-scheme: dark) {
    .logo {
        background-color: rgba(255, 255, 255, 0.95);
    }
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 160px;
    background-color: var(--bg-light);
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-line1 {
    color: var(--text-dark);
}

.hero-line2 {
    color: var(--accent-color);
}

.hero-description {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 32px;
    max-width: 600px;
    line-height: 1.5;
}

.hero-cta {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 4px;
    transition: all 0.2s;
    position: relative;
}

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

.underline-svg {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    overflow: visible;
}

.hero-cta:hover {
    color: var(--accent-color);
}

.arrow {
    margin-left: 8px;
}

/* THE REALITY Section */
.reality-section {
    padding: 160px 0;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.reality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.reality-left {
    position: sticky;
    top: 100px;
}

.section-label {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 24px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.section-text {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.reality-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.reality-point {
    padding-left: 24px;
    border-left: 2px solid var(--accent-color);
}

.point-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.point-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* OUR BELIEF Section */
.belief-section {
    padding: 160px 0;
    background-color: var(--bg-white);
    text-align: center;
}

.belief-section .section-label {
    text-align: center;
    margin-bottom: 24px;
}

.belief-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.belief-description {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

.feature-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: transform 0.2s, box-shadow 0.2s, background-color 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

@media (prefers-color-scheme: dark) {
    .feature-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .feature-card:hover {
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
    }
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .feature-icon {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

.feature-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Two Scales Section */
.scales-section {
    padding: 160px 0;
    background-color: var(--bg-light);
}

.scales-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.scales-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.scales-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
}

.scales-right {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.scale-item {
    padding-left: 24px;
    border-left: 2px solid var(--accent-color);
}

.scale-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.scale-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Flagship Product Section */
.flagship-section {
    padding: 160px 0;
    background-color: var(--bg-white);
}

.flagship-card {
    background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 50%, #2A1F1C 100%);
    border-radius: 16px;
    padding: 48px;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

@media (prefers-color-scheme: dark) {
    .flagship-card {
        background: linear-gradient(135deg, #4A4A4A 0%, #3A3A3A 50%, #4A4543 100%);
        color: #FFFFFF;
    }
}

.flagship-label {
    background-color: var(--accent-color);
    color: var(--bg-white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 32px;
}

.flagship-text {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #FFFFFF;
}

.flagship-features {
    list-style: none;
    margin-bottom: 32px;
}

.flagship-feature {
    font-size: 18px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--accent-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.flagship-status {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.flagship-integrations {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.integration-logo-wrapper {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.integration-logo-wrapper:hover {
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.integration-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: none;
}

.integration-logo.whatsapp-logo {
    height: 36px;
}

.integration-icon {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    padding: 0;
    background: none;
    border-radius: 0;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background-color: var(--bg-light);
    text-align: center;
}

.team-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 48px;
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .team-card {
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: #E8E8E8;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid var(--bg-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    color: var(--text-light);
}

/* Contact Section */
.contact-section {
    padding: 160px 0;
    background-color: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.contact-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.email-section {
    margin-top: 48px;
}

.email-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.email-link {
    font-size: 18px;
    color: var(--accent-color);
    text-decoration: none;
}

.email-link:hover {
    text-decoration: underline;
}

.contact-form-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .contact-form-card {
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }
}

.form-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-input,
.form-textarea {
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    color: var(--text-dark);
    background-color: var(--bg-white);
    transition: border-color 0.2s, background-color 0.3s ease, color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

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

.hidden {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.submit-button {
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: 8px;
}

.submit-button:hover {
    background-color: #d04a35;
}

.submit-button:active {
    transform: scale(0.98);
}

/* Success Notification (Bottom Right) */
.success-notification {
    position: fixed;
    bottom: -100px;
    right: 24px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
}

.success-notification.show {
    bottom: 24px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.success-notification-content {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 280px;
    max-width: 320px;
    border: 1px solid var(--border-light);
    transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

@media (prefers-color-scheme: dark) {
    .success-notification-content {
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    }
}

.success-icon {
    color: #10B981;
    flex-shrink: 0;
}

.success-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.success-text strong {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
}

.success-text span {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.4;
}

/* Footer */
.footer {
    background-color: var(--bg-dark);
    color: var(--bg-white);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-logo {
    margin-bottom: 16px;
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-contact {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.footer-phone {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
    font-variant-numeric: tabular-nums;
}

.phone-number {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.footer-phone:hover {
    color: var(--accent-color);
}

.footer-phone:hover .phone-icon {
    color: var(--accent-color);
}

.phone-icon {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
    transition: color 0.2s;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-align: right;
}

/* Responsive Design - Desktop First */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 32px;
    }
}

@media (max-width: 968px) {
    .reality-content,
    .scales-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 64px;
    }

    .reality-left {
        position: static;
    }

    .feature-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .team-cards {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .footer-contact {
        margin-bottom: 16px;
        align-items: flex-start;
    }

    .footer-phone {
        justify-content: flex-start;
    }

    .footer-copyright {
        text-align: left;
    }

    .hero {
        padding: 120px 0 140px;
    }

    .reality-section,
    .belief-section,
    .scales-section,
    .flagship-section,
    .contact-section {
        padding: 120px 0;
    }
    
    .team-section {
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 72px;
    }

    .header {
        padding: 20px 0;
    }

    .logo-img {
        height: 36px;
    }

    .hero-title {
        font-size: 42px;
        line-height: 1.2;
    }

    .section-title,
    .belief-title,
    .scales-title,
    .contact-title,
    .team-title {
        font-size: 32px;
    }

    .hero-description,
    .belief-description {
        font-size: 18px;
    }

    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 100px 0 120px;
    }

    .reality-section,
    .belief-section,
    .scales-section,
    .flagship-section,
    .contact-section {
        padding: 100px 0;
    }
    
    .team-section {
        padding: 60px 0;
    }

    .flagship-card {
        padding: 32px 24px;
    }

    .flagship-integrations {
        gap: 16px;
    }

    .integration-logo-wrapper {
        padding: 12px 16px;
    }

    .integration-logo {
        height: 40px;
    }

    .success-notification {
        right: 16px;
        left: 16px;
        max-width: calc(100% - 32px);
    }

    .success-notification.show {
        bottom: 16px;
    }

    .success-notification-content {
        min-width: auto;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    body {
        padding-top: 68px;
    }

    .header {
        padding: 16px 0;
    }

    .logo-img {
        height: 32px;
    }

    .hero-title {
        font-size: 32px;
        line-height: 1.15;
    }

    .section-title,
    .belief-title,
    .scales-title,
    .contact-title,
    .team-title {
        font-size: 26px;
        line-height: 1.2;
    }

    .hero-description,
    .belief-description {
        font-size: 16px;
    }

    .section-text,
    .point-text,
    .scale-text,
    .contact-description {
        font-size: 15px;
    }

    .container {
        padding: 0 16px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .reality-section,
    .belief-section,
    .scales-section,
    .flagship-section,
    .contact-section {
        padding: 80px 0;
    }

    .team-section {
        padding: 50px 0;
    }

    .feature-icon {
        width: 56px;
        height: 56px;
        padding: 12px;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .contact-form-card {
        padding: 28px 20px;
    }

    .submit-button {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
    }

    .nav-link {
        font-size: 15px;
    }

    .hero-cta {
        font-size: 16px;
    }

    .flagship-card {
        padding: 28px 20px;
    }

    .flagship-text {
        font-size: 18px;
    }

    .flagship-feature {
        font-size: 16px;
    }

    .team-avatar {
        width: 100px;
        height: 100px;
    }

    .footer {
        padding: 40px 0 30px;
    }

    .footer-logo-img {
        height: 36px;
    }

    .footer-tagline {
        font-size: 14px;
    }

    .footer-copyright {
        font-size: 12px;
    }
}

/* Extra small devices (phones in portrait, less than 360px) */
@media (max-width: 360px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title,
    .belief-title,
    .scales-title,
    .contact-title,
    .team-title {
        font-size: 24px;
    }

    .container {
        padding: 0 12px;
    }

    .feature-card,
    .contact-form-card,
    .flagship-card {
        padding: 24px 16px;
    }
}

/* Ensure images are responsive */
img {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly targets */
button,
a,
input,
textarea {
    -webkit-tap-highlight-color: rgba(232, 93, 68, 0.2);
}

/* Prevent horizontal scroll */
* {
    max-width: 100%;
}

