/* ================================
   CALL TO KEYS - STYLES V3
   Premium Agency Quality
   ================================ */

:root {
    --black: #0a0a0a;
    --black-light: #0f0f0f;
    --black-lighter: #151515;
    --white: #fafafa;
    --gold: #D4AF37;
    --gold-dark: #B8960C;
    --gold-light: rgba(212, 175, 55, 0.15);
    --gray: #888;
    --gray-dark: #333;
    --gray-light: #aaa;
    --red: #ff3333;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

/* ================================
   NAVIGATION
   ================================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 2px;
    color: var(--white);
}

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

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.nav-cta {
    background: var(--gold);
    color: var(--black);
    padding: 0.8rem 2rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--black);
    z-index: 2000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu ul {
    list-style: none;
    text-align: center;
}

.mobile-menu li {
    margin: 1.5rem 0;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

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

.mobile-menu .mobile-cta {
    color: var(--gold);
}

/* ================================
   BUTTONS
   ================================ */
.btn-primary {
    background: var(--gold);
    color: var(--black);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 2px solid var(--gold);
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid var(--gray-dark);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

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

.btn-outline.btn-gold {
    border-color: var(--gold);
    color: var(--gold);
}

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

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

/* ================================
   HERO SECTION
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 4rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.03) 100%);
    clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 750px;
    position: relative;
    z-index: 1;
}

.hero-tag {
    display: inline-block;
    background: var(--gold-light);
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero h1 {
    font-size: clamp(4rem, 10vw, 8rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.1s backwards;
}

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

.hero-stat {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-stat .number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--gold);
    line-height: 1;
}

.hero-stat .label {
    font-size: 1.2rem;
    color: var(--gray);
}

.hero p {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 550px;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease 0.3s backwards;
}

.hero-ctas {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

/* ================================
   SECTION HEADERS
   ================================ */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
}

.section-header h2 span {
    color: var(--gold);
}

.section-header p {
    color: var(--gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   PROBLEM SECTION
   ================================ */
.problem {
    padding: 8rem 4rem;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--red);
    transition: height 0.4s ease;
}

.problem-card:hover::before {
    height: 100%;
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-5px);
}

.problem-stat {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--red);
    line-height: 1;
    margin-bottom: 1rem;
}

.problem-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

.problem-card p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ================================
   SOLUTION SECTION
   ================================ */
.solution {
    padding: 8rem 4rem;
    background: var(--black-light);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.solution-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.solution-text h2 span {
    color: var(--gold);
}

.solution-text > p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.solution-list {
    list-style: none;
}

.solution-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.solution-list strong {
    color: var(--white);
}

.solution-list span {
    color: var(--gray);
}

.metric-box {
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    text-align: center;
    position: relative;
}

.metric-box::before {
    content: 'YOUR RESULTS';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black-light);
    padding: 0 1rem;
    font-size: 0.75rem;
    letter-spacing: 2px;
    color: var(--gold);
}

.metric-comparison {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 3rem;
    margin-bottom: 2rem;
}

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

.metric-item .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
}

.metric-item.before .value {
    color: var(--gray);
}

.metric-item.after .value {
    color: var(--gold);
}

.metric-item .label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.metric-arrow {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.metric-box > p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ================================
   CAPABILITIES SECTION
   ================================ */
.capabilities {
    padding: 8rem 4rem;
    background: var(--black);
    position: relative;
}

.capabilities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.capability-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 3rem;
    position: relative;
    transition: all 0.4s ease;
}

.capability-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.capability-card:hover {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

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

.capability-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.capability-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--gold);
}

.capability-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
}

.capability-lead {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 500;
}

.capability-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.capability-stats {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cap-stat {
    display: flex;
    flex-direction: column;
}

.cap-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.cap-label {
    font-size: 0.8rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.25rem;
}

/* ================================
   PROCESS SECTION
   ================================ */
.process {
    padding: 8rem 4rem;
    background: var(--black-light);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

.process-card {
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
}

.process-card:hover {
    background: rgba(212, 175, 55, 0.03);
    border-color: rgba(212, 175, 55, 0.1);
}

.process-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 1rem;
}

.process-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 0;
}

.process-card p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ================================
   PRICING SECTION
   ================================ */
.pricing {
    padding: 8rem 4rem;
    background: var(--black);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.02) 100%);
    border: 2px solid var(--gold);
}

.pricing-card.featured:hover {
    transform: translateY(-8px);
}

.pricing-card.elite {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 3px;
}

.pricing-desc {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.pricing-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.pricing-header .currency {
    font-size: 1.25rem;
    color: var(--gold);
}

.pricing-header .amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--gold);
    line-height: 1;
}

.pricing-header .period {
    color: var(--gray);
    font-size: 0.9rem;
}

.price-per {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.75rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

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

.pricing-feature .icon {
    color: var(--gold);
    font-weight: bold;
    width: 20px;
    flex-shrink: 0;
}

.pricing-feature.inactive {
    opacity: 0.35;
}

.pricing-feature.inactive .icon {
    color: var(--gray);
}

.pricing-feature.highlight {
    background: rgba(212, 175, 55, 0.08);
    margin: 0 -2rem;
    padding: 0.65rem 2rem;
}

.pricing-feature.highlight .icon {
    color: var(--gold);
}

.pricing-cta {
    padding-top: 0.5rem;
}

.pricing-guarantee {
    text-align: center;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.guarantee-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 1rem;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
}

.pricing-guarantee p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ================================
   CONTACT / CTA SECTION
   ================================ */
.cta {
    padding: 8rem 4rem;
    background: var(--black-light);
    text-align: center;
    position: relative;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.cta h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

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

.cta > .container > p {
    color: var(--gray);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.contact-form-container {
    max-width: 650px;
    margin: 0 auto;
}

.contact-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.contact-form select option {
    background: var(--black);
    color: var(--white);
}

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

.form-note {
    color: var(--gray);
    font-size: 0.85rem;
}

.contact-alt {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-alt span {
    color: var(--gray);
    display: block;
    margin-bottom: 0.5rem;
}

.phone-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 2px;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: var(--white);
}

/* ================================
   FOOTER
   ================================ */
footer {
    padding: 4rem;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

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

.footer-tagline {
    color: var(--gray);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

.footer-phone {
    display: block;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

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

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
}

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

.footer-copy {
    color: var(--gray);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

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

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

/* ================================
   RESPONSIVE - TABLET
   ================================ */
@media (max-width: 1024px) {
    nav {
        padding: 1.5rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero {
        padding: 8rem 2rem 4rem;
    }

    .problem, .solution, .capabilities, .process, .pricing, .cta {
        padding: 6rem 2rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin: 0 auto 4rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* ================================
   RESPONSIVE - MOBILE
   ================================ */
@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-stat .number {
        font-size: 3.5rem;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        text-align: center;
        justify-content: center;
    }

    .problem, .solution, .capabilities, .process, .pricing, .cta {
        padding: 4rem 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .capability-card {
        padding: 2rem;
    }

    .capability-stats {
        flex-direction: column;
        gap: 1.5rem;
    }

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

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

    .contact-form {
        padding: 1.5rem;
    }

    .phone-number {
        font-size: 2rem;
    }

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

    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-stat .number {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .problem-stat,
    .process-number {
        font-size: 3rem;
    }

    .metric-item .value {
        font-size: 3rem;
    }

    .metric-comparison {
        gap: 1.5rem;
    }

    .cap-num {
        font-size: 2rem;
    }

    .pricing-header .amount {
        font-size: 3.5rem;
    }

    .pricing-feature.highlight {
        margin: 0 -1.5rem;
        padding: 0.65rem 1.5rem;
    }
}
