/* ============================================
   SOREN SOLUÇÕES - LANDING PAGE STYLES
   ============================================ */

:root {
    --dark-bg: #031316;
    --dark-bg-alt: #061A1D;
    --petrol: #0E4B56;
    --accent: #19D3C5;
    --green-dark: #006B64;
    --white-ice: #F7FAF9;
    --gray-border: #E4ECEA;
    --text-dark: #07151A;
    --text-secondary: #5D6B70;
    --text-light: #ffffff;
    --text-light-muted: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(25, 211, 197, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --container: 1200px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    background: var(--dark-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

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

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
    line-height: 1.4;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--accent);
    color: var(--dark-bg);
    border-color: var(--accent);
    box-shadow: 0 0 0 0 rgba(25, 211, 197, 0);
}

.btn--primary:hover {
    background: #14bfb2;
    border-color: #14bfb2;
    box-shadow: 0 0 25px rgba(25, 211, 197, 0.3);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.btn--accent {
    background: var(--accent);
    color: var(--dark-bg);
    border-color: var(--accent);
}

.btn--accent:hover {
    background: #14bfb2;
    box-shadow: 0 0 25px rgba(25, 211, 197, 0.4);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(3, 19, 22, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header--scrolled {
    padding: 10px 0;
    background: rgba(3, 19, 22, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: -0.01em;
    flex-shrink: 0;
}

.header__logo strong {
    font-weight: 700;
}

.header__logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.header__nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header__menu {
    display: flex;
    gap: 8px;
}

.header__link {
    color: var(--text-light-muted);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: var(--transition);
}

.header__link:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.header__cta {
    flex-shrink: 0;
}

.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

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

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(3, 19, 22, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__list {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu__link {
    display: block;
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 500;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.mobile-menu__link:hover {
    color: var(--accent);
    background: rgba(25, 211, 197, 0.08);
}

.mobile-menu__cta {
    margin-top: 24px;
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-bg-alt) 40%, var(--petrol) 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero__bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: pulse 6s ease-in-out infinite;
}

.hero__glow--1 {
    width: 600px;
    height: 600px;
    background: rgba(25, 211, 197, 0.08);
    top: -200px;
    right: -100px;
}

.hero__glow--2 {
    width: 400px;
    height: 400px;
    background: rgba(14, 75, 86, 0.15);
    bottom: -100px;
    left: -100px;
    animation-delay: 3s;
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(25, 211, 197, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(25, 211, 197, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    line-height: 1.7;
    margin-bottom: 28px;
    max-width: 520px;
}

.hero__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 36px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 18px;
    background: rgba(25, 211, 197, 0.08);
    border: 1px solid rgba(25, 211, 197, 0.2);
    border-radius: var(--radius-full);
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 500;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero__social {
    display: flex;
    gap: 12px;
}

.hero__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-light-muted);
    transition: var(--transition);
}

.hero__social-link svg {
    width: 20px;
    height: 20px;
}

.hero__social-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(25, 211, 197, 0.08);
    transform: translateY(-3px);
}

.hero__image {
    position: relative;
}

.hero__image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   SECTION BASE
   ============================================ */

.section {
    padding: 100px 0;
    position: relative;
}

.section--light {
    background: var(--white-ice);
}

.section--dark {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-bg-alt) 100%);
}

.section--gradient {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--petrol) 50%, var(--dark-bg-alt) 100%);
}

.section__header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section__label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    margin-bottom: 12px;
}

.section__label--light {
    color: var(--accent);
}

.section__title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.section__title--light {
    color: var(--text-light);
}

.section__description {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

.section__description--light {
    color: var(--text-light-muted);
}

.section__image-showcase {
    margin-top: 60px;
    text-align: center;
}

.section__image-showcase img {
    max-width: 600px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   SPLIT LAYOUT
   ============================================ */

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

.split--reverse {
    direction: rtl;
}

.split--reverse > * {
    direction: ltr;
}

.split__image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   FEATURES (Por que escolher)
   ============================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 28px;
}

.feature-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.feature-pill:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-2px);
}

.feature-pill svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
    flex-shrink: 0;
}

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

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(25, 211, 197, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.service-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 211, 197, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.service-card__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-card__desc {
    font-size: 0.88rem;
    color: var(--text-light-muted);
    line-height: 1.6;
}

/* ============================================
   PILLS (Funcionalidades)
   ============================================ */

.pills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
}

.pill:hover {
    border-color: var(--accent);
    background: rgba(25, 211, 197, 0.04);
    transform: translateY(-2px);
}

.pill svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent);
    flex-shrink: 0;
}

/* ============================================
   TIMELINE (Processo)
   ============================================ */

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), rgba(25, 211, 197, 0.1));
}

.timeline__item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 0;
    position: relative;
}

.timeline__number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--petrol), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: white;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(25, 211, 197, 0.2);
}

.timeline__content {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    transition: var(--transition);
}

.timeline__content:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(25, 211, 197, 0.15);
}

.timeline__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
}

.timeline__desc {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    line-height: 1.5;
}

.timeline__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline__icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    opacity: 0.6;
}

/* ============================================
   PRICING TABLE
   ============================================ */

.pricing-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-table {
    background: white;
    border: 1px solid var(--gray-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.pricing-table__header {
    display: flex;
    justify-content: space-between;
    padding: 18px 28px;
    background: linear-gradient(135deg, var(--petrol), var(--dark-bg));
    color: white;
    font-weight: 700;
    font-size: 0.95rem;
}

.pricing-table__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px;
    border-bottom: 1px solid var(--gray-border);
    transition: var(--transition);
}

.pricing-table__row:last-child {
    border-bottom: none;
}

.pricing-table__row:hover {
    background: rgba(25, 211, 197, 0.03);
}

.pricing-table__row--highlight {
    background: rgba(25, 211, 197, 0.06);
}

.pricing-table__row--highlight:hover {
    background: rgba(25, 211, 197, 0.1);
}

.pricing-table__service {
    font-size: 0.93rem;
    font-weight: 500;
    color: var(--text-dark);
}

.pricing-table__value {
    font-size: 0.93rem;
    font-weight: 700;
    color: var(--petrol);
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 20px;
    font-style: italic;
}

/* ============================================
   DIFERENCIAIS
   ============================================ */

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

.diff-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 28px 20px;
    text-align: center;
    transition: var(--transition);
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(25, 211, 197, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.diff-card__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 211, 197, 0.1);
    border-radius: var(--radius-md);
    margin: 0 auto 16px;
}

.diff-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent);
}

.diff-card__title {
    font-size: 0.93rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.4;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 32px 0;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(25, 211, 197, 0.2);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(25, 211, 197, 0.12);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent);
}

.contact-card__info strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2px;
}

.contact-card__info span {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-image img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

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

.footer {
    background: var(--dark-bg);
    position: relative;
    padding-top: 0;
}

.footer__gradient-border {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--petrol), transparent);
}

.footer__inner {
    padding: 60px 24px 32px;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.footer__logo strong {
    font-weight: 700;
}

.footer__logo-icon {
    width: 36px;
    height: 36px;
}

.footer__tagline {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    max-width: 300px;
}

.footer__links h4,
.footer__social h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    transition: var(--transition);
}

.footer__links a:hover {
    color: var(--accent);
}

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

.footer__social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light-muted);
    transition: var(--transition);
}

.footer__social-links a svg {
    width: 20px;
    height: 20px;
}

.footer__social-links a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(25, 211, 197, 0.08);
}

.footer__bottom {
    padding-top: 24px;
    text-align: center;
}

.footer__bottom p {
    font-size: 0.85rem;
    color: var(--text-light-muted);
}

.footer__credits {
    margin-top: 6px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE - TABLET
   ============================================ */

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__badges {
        justify-content: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__social {
        justify-content: center;
    }

    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split--reverse {
        direction: ltr;
    }

    .split__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand {
        grid-column: 1 / -1;
    }
}

/* ============================================
   RESPONSIVE - MOBILE
   ============================================ */

@media (max-width: 768px) {
    .header__nav,
    .header__cta {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .section {
        padding: 70px 0;
    }

    .section__header {
        margin-bottom: 40px;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__image img {
        animation: none;
    }

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

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

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

    .diff-card {
        padding: 20px 14px;
    }

    .timeline::before {
        left: 24px;
    }

    .timeline__number {
        width: 48px;
        height: 48px;
        font-size: 0.95rem;
    }

    .timeline__content {
        padding: 16px 18px;
    }

    .timeline__icon {
        display: none;
    }

    .pricing-table__row {
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }

    .pricing-table__header {
        padding: 14px 20px;
    }

    .pricing-table__value {
        color: var(--accent);
    }

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

    .contact-actions {
        flex-direction: column;
    }

    .contact-actions .btn {
        width: 100%;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__brand {
        grid-column: auto;
    }

    .hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .section__image-showcase img {
        max-width: 100%;
    }

    .pills-grid {
        gap: 8px;
    }

    .pill {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
}

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

    .hero__title {
        font-size: 1.75rem;
    }

    .section__title {
        font-size: 1.5rem;
    }

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

    .diff-card {
        padding: 16px 10px;
    }

    .diff-card__title {
        font-size: 0.82rem;
    }

    .diff-card__icon {
        width: 44px;
        height: 44px;
    }
}
