/* On Talep Landing Page - Ultra Modern Styles */

.otlp-landing-wrapper {
    --otlp-primary: #2563eb;
    --otlp-primary-dark: #1d4ed8;
    --otlp-primary-light: #3b82f6;
    --otlp-accent: #f59e0b;
    --otlp-dark: #0f172a;
    --otlp-dark-light: #1e293b;
    --otlp-gray: #64748b;
    --otlp-gray-light: #94a3b8;
    --otlp-gray-bg: #f1f5f9;
    --otlp-white: #ffffff;
    --otlp-success: #10b981;
    --otlp-danger: #ef4444;
    --otlp-shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --otlp-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --otlp-shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --otlp-shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --otlp-radius: 12px;
    --otlp-radius-lg: 20px;
    --otlp-radius-xl: 24px;
    --otlp-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--otlp-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* ===== NAVIGATION ===== */
.otlp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--otlp-transition);
}

.otlp-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--otlp-shadow);
    padding: 0.75rem 2rem;
}

.otlp-nav.scrolled .otlp-logo span,
.otlp-nav.scrolled .otlp-nav-links a {
    color: var(--otlp-dark);
}

.otlp-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.otlp-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--otlp-white);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.otlp-nav.scrolled .otlp-logo span {
    color: var(--otlp-dark);
}

.otlp-nav-links {
    display: flex;
    gap: 2.5rem;
}

.otlp-nav-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--otlp-transition);
    position: relative;
}

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

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

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

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

.otlp-mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--otlp-white);
    transition: var(--otlp-transition);
    border-radius: 2px;
}

.otlp-nav.scrolled .otlp-mobile-toggle span {
    background: var(--otlp-dark);
}

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

.otlp-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 25%, #2563eb 50%, #1e3a5f 75%, #0f172a 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

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

.otlp-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, rgba(15, 23, 42, 0.7) 100%);
}

.otlp-hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.otlp-hero-particles::before,
.otlp-hero-particles::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.otlp-hero-particles::before {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.otlp-hero-particles::after {
    bottom: 10%;
    right: 10%;
    width: 300px;
    height: 300px;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.1); }
}

.otlp-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
}

.otlp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    color: var(--otlp-white);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.otlp-pulse {
    width: 8px;
    height: 8px;
    background: var(--otlp-accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.otlp-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--otlp-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.otlp-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Countdown Timer */
.otlp-countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.otlp-countdown-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--otlp-radius);
    padding: 1rem 1.5rem;
    min-width: 80px;
    text-align: center;
}

.otlp-countdown-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--otlp-white);
    line-height: 1;
}

.otlp-countdown-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.25rem;
}

.otlp-countdown-sep {
    font-size: 2rem;
    font-weight: 700;
    color: var(--otlp-accent);
}

/* Hero CTA Button */
.otlp-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--otlp-accent) 0%, #d97706 100%);
    color: var(--otlp-white);
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: var(--otlp-radius);
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--otlp-transition);
    animation: fadeInUp 0.8s ease 0.8s both;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.otlp-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.otlp-hero-cta svg {
    transition: var(--otlp-transition);
}

.otlp-hero-cta:hover svg {
    transform: translateX(5px);
}

/* Hero Stats */
.otlp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 0.8s ease 1s both;
    flex-wrap: wrap;
}

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

.otlp-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--otlp-white);
    display: block;
}

.otlp-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.otlp-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Scroll Indicator */
.otlp-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: fadeIn 1s ease 1.2s both;
}

.otlp-scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.otlp-scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s ease infinite;
}

@keyframes scrollWheel {
    0% { top: 6px; opacity: 1; }
    100% { top: 20px; opacity: 0; }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== SECTION STYLES ===== */
.otlp-section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.otlp-section-tag {
    display: inline-block;
    color: var(--otlp-primary);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
}

.otlp-section-tag::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--otlp-accent);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.otlp-section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--otlp-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.otlp-section-desc {
    color: var(--otlp-gray);
    font-size: 1.1rem;
}

/* ===== FEATURES SECTION ===== */
.otlp-features {
    padding: 6rem 2rem;
    background: var(--otlp-gray-bg);
}

.otlp-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.otlp-feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--otlp-radius-lg);
    background: var(--otlp-white);
    transition: var(--otlp-transition);
    border: 1px solid transparent;
    box-shadow: var(--otlp-shadow);
}

.otlp-feature-card:hover {
    border-color: rgba(37, 99, 235, 0.1);
    box-shadow: var(--otlp-shadow-lg);
    transform: translateY(-5px);
}

.otlp-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--otlp-primary) 0%, var(--otlp-primary-light) 100%);
    border-radius: var(--otlp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--otlp-white);
    transition: var(--otlp-transition);
}

.otlp-feature-card:hover .otlp-feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
}

.otlp-feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--otlp-dark);
    margin-bottom: 0.75rem;
}

.otlp-feature-card p {
    color: var(--otlp-gray);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===== PROJECTS SECTION ===== */
.otlp-projects {
    padding: 6rem 2rem;
    background: var(--otlp-white);
}

.otlp-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.otlp-project-card {
    background: var(--otlp-white);
    border-radius: var(--otlp-radius-lg);
    overflow: hidden;
    box-shadow: var(--otlp-shadow);
    transition: var(--otlp-transition);
    cursor: pointer;
}

.otlp-project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--otlp-shadow-xl);
}

.otlp-project-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.otlp-project-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--otlp-primary);
    color: var(--otlp-white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
}

.otlp-badge-hot {
    background: #ef4444;
}

.otlp-badge-vip {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.otlp-project-info {
    padding: 1.5rem;
}

.otlp-project-info h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--otlp-dark);
    margin-bottom: 0.5rem;
}

.otlp-project-info p {
    color: var(--otlp-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.otlp-project-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--otlp-gray-bg);
}

.otlp-project-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    color: var(--otlp-gray);
}

.otlp-project-meta svg {
    color: var(--otlp-primary);
}

/* ===== TRUST SECTION ===== */
.otlp-trust {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, var(--otlp-dark) 0%, var(--otlp-dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.otlp-trust::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.otlp-trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.otlp-trust-content {
    color: var(--otlp-white);
}

.otlp-trust-content .otlp-section-tag {
    color: var(--otlp-primary-light);
}

.otlp-trust-content .otlp-section-title {
    color: var(--otlp-white);
    margin-bottom: 1.5rem;
}

.otlp-trust-content > p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.otlp-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.otlp-trust-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 1rem 1.5rem;
    border-radius: var(--otlp-radius);
    transition: var(--otlp-transition);
}

.otlp-trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(10px);
}

.otlp-trust-badge svg {
    color: var(--otlp-accent);
    flex-shrink: 0;
}

.otlp-trust-badge span {
    color: var(--otlp-white);
    font-weight: 600;
}

.otlp-trust-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.otlp-trust-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 30px rgba(37, 99, 235, 0.3); }
    50% { box-shadow: 0 0 60px rgba(37, 99, 235, 0.5); }
}

.otlp-trust-inner {
    text-align: center;
}

.otlp-trust-percent {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--otlp-white);
    line-height: 1;
}

.otlp-trust-text {
    display: block;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

/* ===== FORM SECTION ===== */
.otlp-form-section {
    padding: 6rem 2rem;
    background: var(--otlp-gray-bg);
}

.otlp-form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.otlp-form-info {
    color: var(--otlp-dark);
}

.otlp-form-info .otlp-section-tag {
    color: var(--otlp-primary);
}

.otlp-form-info .otlp-section-title {
    color: var(--otlp-dark);
    margin-bottom: 1.5rem;
}

.otlp-form-info > p {
    color: var(--otlp-gray);
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.otlp-contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.otlp-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.otlp-contact-item .otlp-contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--otlp-primary) 0%, var(--otlp-primary-light) 100%);
    border-radius: var(--otlp-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--otlp-white);
    flex-shrink: 0;
}

.otlp-contact-item strong {
    display: block;
    color: var(--otlp-dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.otlp-contact-item span {
    color: var(--otlp-gray);
    font-size: 0.95rem;
}

/* Form */
.otlp-form-wrapper {
    background: var(--otlp-white);
    border-radius: var(--otlp-radius-xl);
    padding: 2.5rem;
    box-shadow: var(--otlp-shadow-lg);
}

.otlp-talep-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

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

.otlp-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.otlp-form-group label {
    color: var(--otlp-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

.otlp-form-group input,
.otlp-form-group select,
.otlp-form-group textarea {
    background: var(--otlp-gray-bg);
    border: 2px solid transparent;
    border-radius: var(--otlp-radius);
    padding: 0.875rem 1rem;
    color: var(--otlp-dark);
    font-size: 0.95rem;
    transition: var(--otlp-transition);
    outline: none;
    font-family: inherit;
}

.otlp-form-group input:focus,
.otlp-form-group select:focus,
.otlp-form-group textarea:focus {
    border-color: var(--otlp-primary);
    background: var(--otlp-white);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

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

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

.otlp-form-checkbox {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.75rem;
}

.otlp-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--otlp-gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.otlp-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.otlp-checkmark {
    width: 20px;
    height: 20px;
    background: var(--otlp-gray-bg);
    border: 2px solid var(--otlp-gray-light);
    border-radius: 4px;
    flex-shrink: 0;
    margin-top: 1px;
    position: relative;
    transition: var(--otlp-transition);
}

.otlp-checkbox input:checked + .otlp-checkmark {
    background: var(--otlp-primary);
    border-color: var(--otlp-primary);
}

.otlp-checkbox input:checked + .otlp-checkmark::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.otlp-checkbox a {
    color: var(--otlp-primary);
    text-decoration: none;
}

.otlp-checkbox a:hover {
    text-decoration: underline;
}

.otlp-submit-btn {
    background: linear-gradient(135deg, var(--otlp-primary) 0%, var(--otlp-primary-light) 100%);
    color: var(--otlp-white);
    border: none;
    padding: 1rem 2rem;
    border-radius: var(--otlp-radius);
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--otlp-transition);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.otlp-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.otlp-submit-btn:active {
    transform: translateY(0);
}

.otlp-btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--otlp-white);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.otlp-submit-btn.loading .otlp-btn-text {
    opacity: 0.7;
}

.otlp-submit-btn.loading .otlp-btn-loader {
    display: block;
    position: absolute;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.otlp-form-message {
    padding: 1rem;
    border-radius: var(--otlp-radius);
    font-size: 0.95rem;
    display: none;
    text-align: center;
}

.otlp-form-message.success {
    display: block;
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.otlp-form-message.error {
    display: block;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ===== FOOTER ===== */
.otlp-footer {
    background: var(--otlp-dark);
    color: var(--otlp-white);
    padding: 4rem 2rem 0;
}

.otlp-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.otlp-footer-brand .otlp-logo {
    margin-bottom: 1rem;
}

.otlp-footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 300px;
}

.otlp-footer-links h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--otlp-white);
}

.otlp-footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    transition: var(--otlp-transition);
}

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

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

.otlp-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--otlp-transition);
}

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

.otlp-footer-bottom {
    text-align: center;
    padding: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===== SCROLL ANIMATIONS ===== */
.otlp-feature-card,
.otlp-project-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.otlp-feature-card.visible,
.otlp-project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .otlp-trust-container,
    .otlp-form-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .otlp-nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
        box-shadow: var(--otlp-shadow-lg);
    }

    .otlp-nav-links.active {
        display: flex;
    }

    .otlp-nav-links a {
        color: var(--otlp-dark);
    }

    .otlp-mobile-toggle {
        display: flex;
    }

    .otlp-countdown-item {
        padding: 0.75rem 1rem;
        min-width: 60px;
    }

    .otlp-countdown-number {
        font-size: 1.5rem;
    }

    .otlp-countdown-label {
        font-size: 0.65rem;
    }

    .otlp-hero-stats {
        gap: 1rem;
    }

    .otlp-stat-divider {
        display: none;
    }

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

    .otlp-footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .otlp-projects-grid {
        grid-template-columns: 1fr;
    }

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

    .otlp-trust-circle {
        width: 200px;
        height: 200px;
    }

    .otlp-trust-percent {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .otlp-hero {
        padding: 5rem 1rem 3rem;
    }

    .otlp-features,
    .otlp-projects,
    .otlp-trust,
    .otlp-form-section {
        padding: 4rem 1rem;
    }

    .otlp-form-wrapper {
        padding: 1.5rem;
    }

    .otlp-countdown {
        gap: 0.25rem;
    }

    .otlp-countdown-sep {
        font-size: 1.5rem;
    }
}
