/* Typography & Color Palette */
@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&display=swap');

:root {
    --dark-blue: #1e3a8a;      /* Main dark blue circle */
    --light-blue: #60a5fa;     /* Light blue circuit lines */
    --light-green: #34d399;    /* Vibrant light green nodes */
    --white: #ffffff;          /* White diagonal bar */
    --black: #000000;          /* Outer background */
    --dark-bg: #0a0a0a;        /* Slightly lighter black for backgrounds */
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --card-bg: #1a1a1a;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Figtree', 'Figtree Placeholder', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    vertical-align: middle;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nava {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.nava:hover {
    color: var(--light-green);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

#currentLink {
    color: var(--light-green);
}

/* Buttons */
.btn-primary {
    background: transparent;
    color: var(--light-green);
    margin-top: 5px;
    padding: 10px 22px;
    border: 2px solid var(--light-green);
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.3); */
    transform: translate(-50%, -50%);
    transition: width 1s ease-out, height 1s ease-out;
}

.btn-primary:hover {
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.4), 0 0 20px rgba(52, 211, 153, 0.3);
    background: #22d3a4 ;
}

.btn-primary:hover::before {
    width: 3000px;
    height: 3000px;
}

.btn-primary.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-secondary {
    background: transparent;
    color: var(--light-green);
    padding: 12px 24px;
    border: 2px solid var(--light-green);
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--light-green);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--black);
    border-color: var(--light-green);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.4), 0 0 20px rgba(52, 211, 153, 0.3);
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(30, 58, 138, 0.9), rgba(96, 165, 250, 0.6) 30%, rgba(52, 211, 153, 0.4) 50%, transparent 65%);
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.7), rgba(52, 211, 153, 0.5) 40%, transparent 60%);
    animation: pulse 6s ease-in-out infinite reverse;
    border-radius: 50%;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1);
    }
    50% { 
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.15);
    }
}

/* Animated Stars */
.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.star {
    position: absolute;
    background: var(--white);
    border-radius: 50%;
    opacity: 0;
    animation: skyfall linear forwards;
    will-change: transform, opacity;
}

.star.small {
    width: 2px;
    height: 2px;
}

.star.medium {
    width: 3px;
    height: 3px;
}

.star.large {
    width: 4px;
    height: 4px;
}

@keyframes skyfall {
    0% {
        opacity: 0;
        transform: translateY(-5vh) translateX(0) scale(0.8);
    }
    5% {
        opacity: 0.9;
    }
    95% {
        opacity: 0.9;
    }
    100% {
        opacity: 0;
        transform: translateY(105vh) translateX(0) scale(0.8);
    }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

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

.badge {
    display: inline-block;
    background: var(--light-green);
    color: var(--black);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

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

.hero-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    background: linear-gradient(135deg, var(--white), var(--light-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.trust-text {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Section Styles */
section {
    padding: 100px 20px;
    position: relative;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 800;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 60px;
}

/* Services Section */
.services {
    background: var(--dark-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.service-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-green));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    color: var(--light-blue);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.service-card > p {
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.service-features span {
    background: rgba(96, 165, 250, 0.1);
    color: var(--light-blue);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
}

/* Task List */
.task-list-container {
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.task-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
}

.badge-small {
    background: var(--light-green);
    color: var(--black);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
}

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

.task-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    animation: slideIn 0.5s ease-out;
    animation-fill-mode: both;
}

.task-item:nth-child(1) { animation-delay: 0.1s; }
.task-item:nth-child(2) { animation-delay: 0.2s; }
.task-item:nth-child(3) { animation-delay: 0.3s; }
.task-item:nth-child(4) { animation-delay: 0.4s; }
.task-item:nth-child(5) { animation-delay: 0.5s; }

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

.task-name {
    color: var(--text-primary);
}

.task-status {
    color: var(--text-secondary);
    font-size: 12px;
}

.task-status.cancelled {
    color: #ef4444;
}

/* AI Chat */
.ai-chat-container {
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.chat-header {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--light-blue);
}

.chat-message {
    background: rgba(52, 211, 153, 0.1);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--light-green);
}

.chat-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chat-action-btn {
    background: rgba(96, 165, 250, 0.2);
    color: var(--light-blue);
    border: 1px solid var(--light-blue);
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.chat-action-btn:hover {
    background: var(--light-blue);
    color: var(--black);
}

/* Email Container */
.email-container {
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.email-status {
    margin-bottom: 15px;
}

.email-status-text {
    color: var(--light-green);
    font-weight: 600;
    animation: pulse-text 2s infinite;
}

@keyframes pulse-text {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.email-filters {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
}

.filter-btn.active {
    background: var(--light-blue);
    color: var(--black);
    border-color: var(--light-blue);
}

.contacts-list {
    margin-bottom: 20px;
}

.contact-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 10px;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.contact-info strong {
    color: var(--white);
}

.verified {
    background: var(--light-green);
    color: var(--black);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.contact-details {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5px 15px;
    font-size: 12px;
    color: var(--text-secondary);
}

.email-tabs {
    display: flex;
    gap: 10px;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    padding-top: 15px;
}

.tab-btn {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    padding: 8px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    border-bottom: 2px solid transparent;
}

.tab-btn.active {
    color: var(--light-blue);
    border-bottom-color: var(--light-blue);
}

/* Project Dashboard */
.project-dashboard {
    background: rgba(30, 58, 138, 0.1);
    border-radius: 12px;
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.dashboard-header h4 {
    color: var(--light-green);
    margin-bottom: 5px;
}

.dashboard-header p {
    color: var(--text-secondary);
    font-size: 12px;
    margin-bottom: 20px;
}

.project-progress {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
    color: var(--text-secondary);
}

.progress-bar {
    background: rgba(96, 165, 250, 0.2);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 5px;
}

.progress-fill {
    background: linear-gradient(90deg, var(--light-blue), var(--light-green));
    height: 100%;
    border-radius: 4px;
    animation: progressFill 2s ease-out;
}

@keyframes progressFill {
    from { width: 0; }
}

.progress-text {
    color: var(--light-green);
    font-size: 12px;
    font-weight: 600;
}

.schedule-calendar {
    margin-top: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 20px;
}

.calendar-day {
    text-align: center;
    padding: 8px;
    background: rgba(96, 165, 250, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.calendar-day.active {
    background: var(--light-blue);
    color: var(--black);
    font-weight: 600;
}

.schedule-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.schedule-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 12px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.schedule-item strong {
    color: var(--white);
}

/* Process Section */
.process {
    background: var(--black);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 60px;
    margin-top: 60px;
}

.process-step {
    position: relative;
}

.step-number {
    font-size: 14px;
    color: var(--light-green);
    font-weight: 600;
    margin-bottom: 10px;
}

.process-step h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.process-step > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.analyzing-animation {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.analyzing-text {
    color: var(--light-blue);
    font-weight: 600;
    margin-bottom: 20px;
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.analyzing-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.analyzing-item {
    background: rgba(96, 165, 250, 0.1);
    padding: 12px;
    border-radius: 6px;
    border-left: 3px solid var(--light-blue);
    animation: slideInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.analyzing-item:nth-child(1) { animation-delay: 0.1s; }
.analyzing-item:nth-child(2) { animation-delay: 0.2s; }
.analyzing-item:nth-child(3) { animation-delay: 0.3s; }
.analyzing-item:nth-child(4) { animation-delay: 0.4s; }
.analyzing-item:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.code-block {
    background: var(--card-bg);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    overflow-x: auto;
}

.code-block pre {
    margin: 0;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
}

.code-block code {
    color: var(--light-green);
}

/* Benefits Section */
.benefits {
    background: var(--dark-bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-green);
    box-shadow: 0 20px 40px rgba(52, 211, 153, 0.2);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--white);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Pricing Section */
.pricing {
    background: var(--black);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 60px;
}

.toggle-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 2px solid rgba(96, 165, 250, 0.3);
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.toggle-btn.active {
    background: var(--light-blue);
    color: var(--black);
    border-color: var(--light-blue);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    transition: all 0.3s ease;
    position: relative;
    text-align: center;
}

.pricing-card.featured {
    border-color: var(--light-green);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue), var(--light-green));
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-green);
    color: var(--black);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--white);
}

.price {
    margin-bottom: 20px;
}

.price .currency {
    font-size: 24px;
    color: var(--text-secondary);
}

.price .amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
}

.price .period {
    font-size: 16px;
    color: var(--text-secondary);
}

.pricing-card > p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-top: 30px;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(96, 165, 250, 0.1);
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-green);
    font-weight: bold;
}

/* Testimonials Section */
.testimonials {
    background: var(--dark-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(96, 165, 250, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--light-blue);
    box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
}

.quote-mark {
    font-size: 64px;
    color: var(--light-blue);
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 30px;
    line-height: 1;
}

.testimonial-card p {
    color: var(--text-primary);
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--white);
    font-size: 18px;
}

.testimonial-author span {
    color: var(--text-secondary);
    font-size: 14px;
}

/* FAQs Section */
.faqs {
    background: var(--black);
}

.faqs-list {
    max-width: 800px;
    margin: 60px auto 0;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid rgba(96, 165, 250, 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--light-blue);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-primary);
    padding: 24px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--light-blue);
}

.faq-icon {
    font-size: 24px;
    color: var(--light-blue);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--dark-blue), rgba(30, 58, 138, 0.8));
    text-align: center;
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2), transparent);
    animation: rotate 20s linear infinite;
}

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

.cta h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 380px;
    height: 380px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(30, 58, 138, 0.9), rgba(96, 165, 250, 0.6) 30%, rgba(52, 211, 153, 0.4) 50%, transparent 65%);
    animation: pulse 4s ease-in-out infinite;
    border-radius: 50%;
    pointer-events: none;
}

.contact::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(96, 165, 250, 0.7), rgba(52, 211, 153, 0.5) 40%, transparent 60%);
    animation: pulse 6s ease-in-out infinite reverse;
    border-radius: 50%;
    pointer-events: none;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Contact Info Cards - Top Section */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.phone-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3)); */
    pointer-events: none;
}

.contact-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 4px;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
}

.detail-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    font-weight: 500;
}

.detail-value {
    color: var(--white);
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    display: block;
}

.detail-value:hover {
    color: var(--light-green);
}

.phone-card .detail-value + .detail-value {
    margin-top: 4px;
}

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

.contact-form {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    font-size: 13px;
    color: var(--text-secondary);
}

.contact-form input,
.contact-form textarea {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #4b5563;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.5);
    background: rgba(15, 23, 42, 0.95);
}

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

.contact-submit {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    background: transparent;
    color: var(--light-green);
    border: 2px solid var(--light-green);
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.contact-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    /* background: rgba(255, 255, 255, 0.3); */
    transform: translate(-50%, -50%);
    transition: width 1s ease-out, height 1s ease-out;
}

.contact-submit:hover {
    color: #000;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(52, 211, 153, 0.4), 0 0 20px rgba(52, 211, 153, 0.3);
    background: #22d3a4;
}

.contact-submit:hover::before {
    width: 3000px;
    height: 3000px;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--light-green);
}

.newsletter {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.newsletter input {
    flex: 1;
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.3);
    padding: 12px;
    border-radius: 8px;
    color: var(--text-primary);
    outline: none;
}

.newsletter input::placeholder {
    color: var(--text-secondary);
}

.newsletter button {
    background: var(--light-blue);
    color: var(--black);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter button:hover {
    background: var(--light-green);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(96, 165, 250, 0.1);
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(0, 0, 0, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
        gap: 20px;
    }

    .nav-menu.active {
        left: 0;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .services-grid,
    .benefits-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .pricing-card.featured {
        transform: scale(1);
    }

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

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

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

/* Smooth Scroll Animation */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .benefit-card,
    .testimonial-card,
    .pricing-card {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease-out forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
}

/* AI Assistant Widget */
.ai-assistant-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    font-family: 'Figtree', 'Figtree Placeholder', sans-serif;
}

.ai-assistant-button {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
    transition: all 0.3s ease;
    position: relative;
    border: none;
}

.ai-assistant-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.ai-assistant-button svg {
    width: 24px;
    height: 24px;
}

.ai-assistant-chat {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    height: 500px;
    background: rgba(26, 26, 26, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(96, 165, 250, 0.2);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.ai-assistant-chat.active {
    display: flex;
    animation: slideUp 0.3s ease-out;
}

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

.ai-chat-header {
    background: transparent;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.ai-chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ai-chat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.ai-chat-header h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
}

.ai-chat-header p {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.ai-chat-close {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.ai-chat-close:hover {
    background: rgba(96, 165, 250, 0.1);
    color: var(--white);
}

.ai-chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ai-chat-messages::-webkit-scrollbar {
    width: 6px;
}

.ai-chat-messages::-webkit-scrollbar-track {
    background: transparent;
}

.ai-chat-messages::-webkit-scrollbar-thumb {
    background: rgba(96, 165, 250, 0.3);
    border-radius: 3px;
}

.ai-chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(96, 165, 250, 0.5);
}

.ai-message {
    display: flex;
    gap: 8px;
}

.ai-message-bot {
    justify-content: flex-start;
}

.ai-message-user {
    justify-content: flex-end;
}

.ai-message-content {
    max-width: 75%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.ai-message-bot .ai-message-content {
    background: rgba(96, 165, 250, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.ai-message-user .ai-message-content {
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    color: var(--white);
}

.ai-message-content p {
    margin: 0;
}

.ai-chat-input-container {
    padding: 16px 20px;
    border-top: 1px solid rgba(96, 165, 250, 0.2);
    display: flex;
    gap: 12px;
    background: transparent;
}

.ai-chat-input {
    flex: 1;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(96, 165, 250, 0.2);
    border-radius: 10px;
    padding: 12px 14px;
    color: var(--text-primary);
    font-size: 14px;
    outline: none;
    transition: all 0.2s ease;
    font-family: 'Figtree', 'Figtree Placeholder', sans-serif;
}

.ai-chat-input::placeholder {
    color: var(--text-secondary);
}

.ai-chat-input:focus {
    border-color: var(--light-blue);
    box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.3);
    background: rgba(15, 23, 42, 0.95);
}

.ai-chat-send {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--dark-blue), var(--light-blue));
    border: none;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.ai-chat-send:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(30, 58, 138, 0.4);
}

.ai-chat-send:active {
    transform: translateY(0);
}

/* Responsive AI Assistant */
@media (max-width: 768px) {
    .ai-assistant-widget {
        bottom: 20px;
        right: 20px;
    }

    .ai-assistant-button {
        width: 52px;
        height: 52px;
    }

    .ai-assistant-chat {
        width: calc(100vw - 40px);
        max-width: 380px;
        height: calc(100vh - 100px);
        max-height: 500px;
        right: -20px;
    }

     section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  /* Hero spacing */
  .about-hero {
    gap: 2.5rem;
  }

  .about-hero h1 {
    margin-bottom: 1.5rem;
  }

  .about-hero p {
    margin-bottom: 2rem;
  }

  .about-hero-buttons {
    gap: 1.25rem;
  }

  /* Floating / info cards spacing */
  .about-cards {
    gap: 1.75rem;
    margin-top: 2.5rem;
  }

  .about-card {
    padding: 1.75rem;
  }

  /* Values / timeline spacing */
  .values-wrapper {
    gap: 2.5rem;
  }

  .value-item {
    margin-bottom: 2rem;
    padding: 1.75rem;
  }

  /* Footer / CTA spacing */
  .cta-section {
    margin-top: 4rem;
  }
}

/* ===========================
   Luxury Smooth Motion Overrides
   (adds premium animation without changing layout/content)
   =========================== */
:root{
  --ease-lux: cubic-bezier(.16, 1, .3, 1);
  --dur-lux: 900ms;
  --dur-lux-fast: 520ms;
}

/* Scroll reveal */
.lux-reveal{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition:
    opacity var(--dur-lux) var(--ease-lux),
    transform var(--dur-lux) var(--ease-lux),
    filter var(--dur-lux) var(--ease-lux);
  will-change: opacity, transform, filter;
}
.lux-reveal.lux-in{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* Premium hover feel on cards */
.service-card,
.benefit-card,
.pricing-card,
.testimonial-card{
  transition:
    transform 700ms var(--ease-lux),
    box-shadow 700ms var(--ease-lux),
    border-color 700ms var(--ease-lux),
    background 700ms var(--ease-lux);
}

.service-card:hover,
.benefit-card:hover,
.pricing-card:hover,
.testimonial-card:hover{
  transform: translateY(-6px) scale(1.01);
}

/* Subtle cursor-follow glow */
.lux-glow{
  position: relative;
  overflow: hidden;
}
.lux-glow::after{
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 50%),
    rgba(96, 165, 250, 0.14),
    rgba(34, 197, 94, 0.08) 25%,
    transparent 55%);
  opacity: 0;
  transition: opacity 700ms var(--ease-lux);
  pointer-events: none;
}
.lux-glow:hover::after{
  opacity: 1;
}

/* Buttons: smoother, more "luxury" */
.btn-primary,
.btn-secondary,
.nav-links a,
.book-call-btn{
  transition:
    transform var(--dur-lux-fast) var(--ease-lux),
    box-shadow var(--dur-lux-fast) var(--ease-lux),
    background var(--dur-lux-fast) var(--ease-lux),
    border-color var(--dur-lux-fast) var(--ease-lux),
    color var(--dur-lux-fast) var(--ease-lux),
    opacity var(--dur-lux-fast) var(--ease-lux);
}

.btn-primary:hover,
.btn-secondary:hover,
.book-call-btn:hover{
  transform: translateY(-2px);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce){
  .lux-reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .service-card,
  .benefit-card,
  .pricing-card,
  .testimonial-card,
  .btn-primary,
  .btn-secondary,
  .nav-links a,
  .book-call-btn{
    transition: none !important;
    transform: none !important;
  }
  .lux-glow::after{ display:none !important; }
}


/* =========================
   ABOUT PAGE (AT Dev Studio)
   ========================= */

.about-hero-container {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero--about .badge{
    background: rgba(52, 211, 153, 0.95);
}

.about-intro{
    background: var(--dark-bg);
}

.section-title--left{
    text-align: left;
}

.section-subtitle--left{
    text-align: left;
    margin-left: 0;
}

.about-split{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: start;
}

.about-bullets{
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.about-bullet{
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 14px;
    align-items: start;
    padding: 18px 18px;
    background: rgba(0,0,0,0.25);
    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.about-bullet:hover{
    border-color: rgba(52, 211, 153, 0.35);
    transform: translateY(-4px);
    box-shadow: 0 18px 35px rgba(30, 58, 138, 0.25);
}

.about-bullet-icon{
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(96, 165, 250, 0.15);
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.about-bullet h3{
    font-size: 18px;
    margin-bottom: 4px;
}

.about-bullet p{
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.75;
}

.about-split-visual{
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 120px;
}

.about-logo-card{
    background: var(--card-bg);
    border: 1px solid rgba(96, 165, 250, 0.15);
    border-radius: 20px;
    padding: 20px;
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 14px;
    align-items: center;
}

.about-logo{
    width: 72px;
    height: 72px;
    border-radius: 18px;
    /* background: radial-gradient(circle at 30% 30%, rgba(96, 165, 250, 0.35), rgba(30, 58, 138, 0.15), transparent 70%); */
    display: grid;
    place-items: center;
    overflow: hidden;
}

.about-logo img{
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,0.35));
}

.about-logo-text strong{
    display: block;
    font-size: 16px;
    margin-bottom: 2px;
}

.about-logo-text span{
    display: block;
    color: var(--text-secondary);
    font-size: 13px;
}

.about-stats{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.about-stat{
    padding: 22px;
}

.about-stat .benefit-icon{
    font-size: 36px;
    margin-bottom: 14px;
}

.about-stat h3{
    font-size: 18px;
    margin-bottom: 8px;
}

.about-stat p{
    font-size: 13px;
}

/* Timeline */
.about-timeline{
    background: var(--black);
}

.timeline{
    max-width: 900px;
    margin: 60px auto 0;
    position: relative;
    padding-left: 26px;
}

.timeline::before{
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.2), rgba(52, 211, 153, 0.35), rgba(96, 165, 250, 0.2));
}

.timeline-item{
    position: relative;
    margin-bottom: 26px;
}

.timeline-dot{
    position: absolute;
    left: -2px;
    top: 34px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(52, 211, 153, 1), rgba(96, 165, 250, 0.8));
    box-shadow: 0 0 0 6px rgba(52, 211, 153, 0.12), 0 0 30px rgba(52, 211, 153, 0.18);
}

.timeline-content{
    background: var(--card-bg);
    border: 1px solid rgba(96, 165, 250, 0.12);
    border-radius: 18px;
    padding: 26px 26px 22px;
    margin-left: 18px;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-content{
    border-color: rgba(96, 165, 250, 0.35);
    transform: translateY(-6px);
    box-shadow: 0 22px 45px rgba(30, 58, 138, 0.25);
}

.timeline-content h3{
    font-size: 26px;
    margin-bottom: 8px;
}

.timeline-content p{
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.8;
}

.timeline-tags{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.timeline-tags span{
    background: rgba(96, 165, 250, 0.1);
    border: 1px solid rgba(96, 165, 250, 0.18);
    color: var(--light-blue);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
}

/* CTA banner */
.about-cta{
    background: var(--dark-bg);
}

.cta-banner{
    border: 1px solid rgba(96, 165, 250, 0.18);
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.20), rgba(0,0,0,0.25));
    border-radius: 22px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.cta-banner h2{
    font-size: 32px;
    margin-bottom: 8px;
}

.cta-banner p{
    color: var(--text-secondary);
}

.cta-actions{
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 980px){
    .about-split{
        grid-template-columns: 1fr;
    }
    .about-split-visual{
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px){
    .about-stats{
        grid-template-columns: 1fr;
    }
    .cta-banner{
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   ABOUT PAGE REDESIGN (Hero + Values) — AT Dev Studio
   ========================================================= */

.badge--solid{
  background: linear-gradient(90deg, rgba(52,211,153,.95), rgba(96,165,250,.95));
  color: #051012;
  border: 0;
  box-shadow: 0 12px 28px rgba(52,211,153,.18);
}

.about-hero{
    height: 100vh;
  position: relative;
  padding: 110px 0 70px;
  overflow: hidden;
}

.about-hero .stars{
  opacity: .55;
  pointer-events: none;
}

.about-hero-bg{
  position:absolute;
  inset:0;
  pointer-events:none;
}

.about-hero-orb{
  position:absolute;
  width: 780px;
  height: 780px;
  border-radius: 50%;
  filter: blur(18px);
  opacity:.32;
  transform: translate3d(0,0,0);
  animation: aboutFloat 12s ease-in-out infinite;
}

.about-hero-orb.orb--a{
  left: 50%;
  top: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(52,211,153,.9), rgba(96,165,250,.2), transparent 60%);
}

.about-hero-orb.orb--b{
  right: -220px;
  bottom: -260px;
  width: 640px;
  height: 640px;
  opacity:.22;
  animation-duration: 16s;
  background: radial-gradient(circle at 30% 30%, rgba(96,165,250,.75), rgba(52,211,153,.12), transparent 62%);
}

.about-hero-grid{
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(circle at 60% 20%, rgba(52,211,153,.14), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(96,165,250,.14), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,.06), transparent 24%, transparent 76%, rgba(255,255,255,.05)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0 1px, transparent 1px 80px);
  mask-image: radial-gradient(circle at 50% 35%, rgba(0,0,0,1) 0 55%, rgba(0,0,0,0) 78%);
  opacity: .35;
}

@keyframes aboutFloat{
  0%,100%{ transform: translateY(0) }
  50%{ transform: translateY(22px) }
}

.about-hero-gridwrap{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 36px;
  align-items: top;
}

.about-hero-copy{
  max-width: 640px;
}

.about-hero-title{
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  margin: 16px 0 14px;
  letter-spacing: -0.04em;
}

.gradient-text{
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.about-hero-subtitle{
  color: var(--text-secondary);
  font-size: 18px;
  line-height: 1.7;
  max-width: 56ch;
  margin-bottom: 22px;
}

.about-hero-actions{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.about-hero-proof{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.proof-chip{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.86);
  font-size: 13px;
}

.proof-chip .dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--light-green);
  box-shadow: 0 0 0 6px rgba(52,211,153,.10);
}

.about-hero-panel{
    /* height: 100%; */
  position:relative;
  min-height: 480px;
}

.panel-card{
    height: 100%;
  position:relative;
  padding: 18px 18px 16px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(12px);
  box-shadow: 0 26px 70px rgba(0,0,0,.45);
  overflow:hidden;
  /* display: flex;
  flex-direction: column;
  justify-content: space-between; */
}

.panel-glow{
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 30% 20%, rgba(52,211,153,.22), transparent 55%),
              radial-gradient(circle at 80% 55%, rgba(96,165,250,.22), transparent 62%);
  opacity:.9;
  filter: blur(18px);
  pointer-events:none;
  mask-image: radial-gradient(circle at 50px 0, rgba(0,0,0,1), rgba(0,0,0,.2));
}

.panel-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  position:relative;
  z-index:1;
}

.panel-dots{
  display:flex;
  gap: 7px;
}
.panel-dots span{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
}
.panel-dots span:nth-child(1){ background: rgba(255,255,255,.20); }
.panel-dots span:nth-child(2){ background: rgba(96,165,250,.35); }
.panel-dots span:nth-child(3){ background: rgba(52,211,153,.35); }

.panel-label{
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.panel-body{
    height: 90%;
  padding-top: 14px;
  display:flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 12px;
  position:relative;
  z-index:1;
}

.panel-metric{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(255,255,255,.08);
}

.metric-title{
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

.metric-value{
  font-weight: 700;
  color: rgba(255,255,255,.92);
}

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

.panel-divider{
  height: 1px;
  background: rgba(255,255,255,.10);
  margin: 2px 0 6px;
}

.panel-pills{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill{
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.82);
  font-size: 12px;
  transition: transform .25s ease, border-color .25s ease;
}

.pill:hover{
  transform: translateY(-2px);
  border-color: rgba(52,211,153,.55);
}

.panel-float{
  position:absolute;
  width: 220px;
  padding: 14px 14px 12px;
  border-radius: 18px;
  background: rgba(10,10,10,.72);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0,0,0,.5);
}

.panel-float.float--a{
  right: -14px;
  top: 70px;
  transform: rotate(2deg);
}

.panel-float.float--b{
  left: -12px;
  bottom: 30px;
  transform: rotate(-2deg);
}

.float-title{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.70);
  margin-bottom: 8px;
}

.float-row{
  display:flex;
  justify-content: space-between;
  padding: 6px 0;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  border-bottom: 1px dashed rgba(255,255,255,.10);
}
.float-row:last-child{ border-bottom: 0; padding-bottom: 0; }

.float-accent{
  color: var(--light-blue);
  font-weight: 700;
}

/* Values timeline */
.values{
  padding: 80px 0 90px;
  position:relative;
}

.values-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.values-stat{
  max-width: 260px;
  padding: 18px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}

.values-stat-num{
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  -webkit-background-clip:text;
  background-clip:text;
  color: transparent;
}

.values-stat-text{
  margin-top: 8px;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 14px;
}

.values-timeline{
  position:relative;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 48px;
  padding-top: 16px;
}

.values-line{
  position:absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(52,211,153,.0), rgba(52,211,153,.45), rgba(96,165,250,.35), rgba(96,165,250,.0));
  opacity: .75;
}

.value-item{
  position:relative;
  display:flex;
  gap: 14px;
  align-items: flex-start;
}

.value-item--left{ grid-column: 1; justify-content: flex-end; text-align: left; }
.value-item--right{ grid-column: 2; justify-content: flex-start; text-align: left; }

.value-badge{
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display:grid;
  place-items:center;
  font-weight: 800;
  letter-spacing: .04em;
  color: rgba(0,0,0,.85);
  background: linear-gradient(90deg, var(--light-green), var(--light-blue));
  box-shadow: 0 18px 38px rgba(52,211,153,.18);
  flex: 0 0 auto;
}

.value-card{
  width: min(520px, 100%);
  padding: 18px 18px 16px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 60px rgba(0,0,0,.38);
  position:relative;
  overflow:hidden;
  transition: transform .35s ease, border-color .35s ease;
}

.value-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(circle at 20% 20%, rgba(52,211,153,.18), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(96,165,250,.18), transparent 62%);
  opacity:.85;
  filter: blur(18px);
  pointer-events:none;
}

.value-card > *{ position:relative; z-index:1; }

.value-card h3{
  margin: 2px 0 6px;
  font-size: 18px;
}

.value-card p{
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0 0 12px;
}

.value-tags{
  display:flex;
  flex-wrap: wrap;
  gap: 8px;
}

.value-tags span{
  font-size: 12px;
  color: rgba(255,255,255,.78);
  padding: 7px 9px;
  border-radius: 999px;
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.10);
}

.value-item:hover .value-card{
  transform: translateY(-4px);
  border-color: rgba(52,211,153,.45);
}

/* Responsive */
@media (max-width: 980px){
  .about-hero-gridwrap{
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .about-hero-panel{
    min-height: unset;
  }
  .panel-float.float--a,
  .panel-float.float--b{
    position:relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    width: 100%;
    transform: none;
    margin-top: 12px;
  }
  .values-head{
    flex-direction: column;
    align-items: flex-start;
  }
  .values-timeline{
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .values-line{ display:none; }
  .value-item--left,
  .value-item--right{ grid-column: 1; justify-content:flex-start; }
  .value-card{ width: 100%; }
}

@media (max-width: 520px){
  .about-hero{
    padding: 96px 0 60px;
  }
  .about-hero-subtitle{ font-size: 16px; }
  .proof-chip{ width: 100%; justify-content:flex-start; }
}



/* =========================================================
   ABOUT PAGE — Mobile responsiveness fixes
   ========================================================= */

@media (max-width: 980px){
  .about-hero{
    height: auto;
    min-height: 100svh;
    padding: 96px 0 60px;
  }

  .about-hero-gridwrap{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero-copy{
    max-width: 100%;
  }

  .about-hero-title{
    font-size: clamp(34px, 9vw, 54px);
  }

  .about-hero-subtitle{
    font-size: 16px;
  }

  .about-hero-panel{
    min-height: auto;
  }

  .about-hero-orb{
    width: 520px;
    height: 520px;
    opacity: .22;
  }

  .about-hero-orb.orb--b{
    width: 440px;
    height: 440px;
  }

  /* turn the floating cards into stacked cards (no overlap on mobile) */
  .panel-float{
    position: static;
    width: 100%;
    transform: none;
    margin-top: 14px;
  }
  .panel-float.float--a,
  .panel-float.float--b{
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
}

@media (max-width: 560px){
  .about-hero{
    padding: 92px 0 46px;
  }

  .about-hero-actions > a{
    width: 100%;
  }

  .panel-card{
    border-radius: 20px;
    padding: 16px;
  }

  .panel-metric{
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  /* values section: single column */
  .values{
    padding: 64px 0 70px;
  }

  .values-head{
    flex-direction: column;
    align-items: flex-start;
  }

  .values-stat{
    width: 100%;
    max-width: none;
  }

  .values-timeline{
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .values-line{
    left: 22px;
    transform: none;
  }

  .value-item{
    grid-column: 1 !important;
    justify-content: flex-start;
    padding-left: 54px;
  }

  .value-badge{
    position: absolute;
    left: 0;
    top: 0;
  }

  .value-card{
    width: 100%;
  }
}

/* Intl-Tel-Input styling to match site theme */
.iti {
  width: 100%;
}

.iti__flag-container {
  padding: 0;
}

#phone {
    width: 100%;
}

.iti--separate-dial-code .iti__selected-flag {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-right: none;
  border-radius: 10px 0 0 10px;
  padding: 10px 12px;
  height: 44px;
}

.iti--separate-dial-code input#phone {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.2);
  border-radius: 0 10px 10px 0;
  padding-left: 130px !important; /* space for flag + dial code */
  height: 44px;
}

.iti__selected-dial-code {
  color: var(--text-primary);
  font-weight: 600;
}

.iti__country-list {
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid rgba(96, 165, 250, 0.2);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.6);
}

.iti__country {
  color: var(--text-primary);
}

.iti__country:hover, .iti__country.iti__highlight {
  background: rgba(96, 165, 250, 0.15);
}

.iti__divider {
  border-bottom: 1px solid rgba(96, 165, 250, 0.2);
}

.iti--separate-dial-code .iti__selected-flag:focus,
.iti--separate-dial-code .iti__selected-flag:hover {
  border-color: var(--light-blue);
}

.iti--separate-dial-code input#phone:focus {
  border-color: var(--light-blue);
  box-shadow: 0 0 0 1px rgba(96, 165, 250, 0.5);
  background: rgba(15, 23, 42, 0.95);
}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

.blog-hero{
  min-height: 85vh;
  display:flex;
  align-items:center;
  padding: 160px 20px 90px;
  position:relative;
  overflow:hidden;
  background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.3) 50%, var(--dark-bg) 100%);
}

.blog-hero::before{
  content:'';
  position:absolute;
  top:20%;
  left:50%;
  width:800px;
  height:800px;
  transform:translate(-50%, -50%);
  background: radial-gradient(circle, rgba(96,165,250,.20) 0%, rgba(52,211,153,.15) 40%, transparent 70%);
  border-radius:50%;
  animation: pulse 8s ease-in-out infinite;
  opacity:.6;
}

.blog-hero::after{
  content:'';
  position:absolute;
  bottom:10%;
  right:10%;
  width:400px;
  height:400px;
  background: radial-gradient(circle, rgba(52,211,153,.12) 0%, transparent 60%);
  border-radius:50%;
  animation: float 12s ease-in-out infinite;
  opacity:.5;
}

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

.blog-hero .container{ 
  position:relative; 
  z-index:2; 
}

.blog-hero-inner{
  max-width: 900px;
  margin: 0 auto;
  text-align:center;
  animation: fadeInUp 1s ease-out;
}

.blog-hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(96,165,250,.3);
  background: linear-gradient(135deg, rgba(96,165,250,.15), rgba(52,211,153,.1));
  backdrop-filter: blur(10px);
  color: var(--light-blue);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 11px;
  margin-bottom: 32px;
  transition: all .3s ease;
  animation: fadeIn 0.8s ease-out 0.2s both;
}

.blog-hero-badge:hover{
  border-color: rgba(52,211,153,.5);
  background: linear-gradient(135deg, rgba(96,165,250,.2), rgba(52,211,153,.15));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52,211,153,.15);
}

.blog-hero-badge svg{
  animation: rotate 3s linear infinite;
}

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

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

.blog-hero-title{
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--white) 0%, var(--light-blue) 50%, var(--light-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.blog-hero-subtitle{
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 740px;
  margin: 0 auto 42px;
  line-height: 1.75;
  font-weight: 400;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.blog-hero-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom: 48px;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.blog-categories{
  display:flex;
  gap:12px;
  justify-content:center;
  flex-wrap:wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(96,165,250,.1);
  animation: fadeIn 1s ease-out 0.6s both;
}

.blog-pill{
  appearance:none;
  border:none;
  cursor:pointer;
  padding: 12px 20px;
  border-radius: 50px;
  background: rgba(96,165,250,.08);
  color: var(--light-blue);
  border: 1px solid rgba(96,165,250,.2);
  font-weight: 600;
  font-size: 13px;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
  position:relative;
  overflow:hidden;
}

.blog-pill::before{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  width:0;
  height:0;
  border-radius:50%;
  background: rgba(96,165,250,.2);
  transform:translate(-50%, -50%);
  transition: width .4s ease, height .4s ease;
}

.blog-pill:hover::before{
  width:120%;
  height:120%;
}

.blog-pill:hover{
  transform: translateY(-3px) scale(1.05);
  border-color: rgba(52,211,153,.5);
  box-shadow: 0 12px 30px rgba(52,211,153,.2);
  color: var(--light-green);
}

.blog-pill span{
  position:relative;
  z-index:1;
}

.blog-pill.active{
  background: linear-gradient(135deg, rgba(52,211,153,.2), rgba(96,165,250,.15));
  color: var(--light-green);
  border-color: rgba(52,211,153,.5);
  box-shadow: 0 4px 15px rgba(52,211,153,.15);
}

.blog-pill.active::before{
  background: rgba(52,211,153,.15);
}

.blog-featured{
  background: var(--dark-bg);
  padding-top: 70px;
  padding-bottom: 70px;
}

.featured-post{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  background: var(--card-bg);
  border-radius: 22px;
  border: 1px solid rgba(96,165,250,.15);
  text-decoration:none;
  color: inherit;
  overflow:hidden;
  position:relative;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.featured-post::before{
  content:'';
  position:absolute;
  inset:0;
  background: radial-gradient(600px 300px at 20% 30%, rgba(52,211,153,.12), transparent 55%),
              radial-gradient(500px 300px at 80% 35%, rgba(96,165,250,.14), transparent 60%);
  opacity:.9;
  pointer-events:none;
}

.featured-post:hover{
  transform: translateY(-10px);
  border-color: rgba(52,211,153,.55);
  box-shadow: 0 30px 70px rgba(0,0,0,.55), 0 0 30px rgba(52,211,153,.10);
}

.featured-content{
  padding: 38px;
  position:relative;
  z-index:2;
}

.featured-meta{
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
  align-items:center;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 12px;
}

.featured-tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(52,211,153,.18);
  color: var(--light-green);
  border: 1px solid rgba(52,211,153,.55);
  font-weight: 800;
}

.featured-content h2{
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin-bottom: 12px;
}

.featured-content p{
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 22px;
  max-width: 58ch;
}

.featured-cta{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--light-blue);
  font-weight: 800;
}

.featured-cta .arrow{
  display:inline-flex;
  width: 34px;
  height: 34px;
  align-items:center;
  justify-content:center;
  border-radius: 10px;
  background: rgba(96,165,250,.16);
  border: 1px solid rgba(96,165,250,.28);
  transition: transform .25s ease, background .25s ease;
}

.featured-post:hover .featured-cta .arrow{
  transform: translateX(4px);
  background: rgba(52,211,153,.18);
  border-color: rgba(52,211,153,.55);
}

.featured-visual{ position:relative; min-height: 280px; }

.featured-orb{ position:absolute; border-radius:50%; opacity:.95; }

.featured-orb.orb-a{
  width: 220px; height: 220px;
  right: -60px; top: 40px;
  background: radial-gradient(circle, rgba(96,165,250,.95), rgba(96,165,250,.15) 60%, transparent 72%);
}

.featured-orb.orb-b{
  width: 260px; height: 260px;
  left: -70px; bottom: -80px;
  background: radial-gradient(circle, rgba(52,211,153,.90), rgba(52,211,153,.18) 60%, transparent 75%);
}

.featured-grid{
  position:absolute;
  inset:0;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at 40% 40%, rgba(0,0,0,.95), transparent 70%);
  opacity:.8;
}

.blog-latest{ background: var(--black); }

.blog-head{
  display:flex;
  gap: 24px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
  margin-bottom: 24px;
}

.section-title--left{ text-align:left; }
.section-subtitle--left{ text-align:left; margin-left: 0; }

.blog-search{ min-width: 240px; display:flex; justify-content:flex-end; }

.blog-search input{
  width: min(420px, 100%);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(96,165,250,.20);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.blog-search input::placeholder{ color: rgba(161,161,170,.8); }

.blog-search input:focus{
  border-color: rgba(52,211,153,.65);
  box-shadow: 0 0 0 4px rgba(52,211,153,.12);
}

.blog-grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
  margin-top: 26px;
}

.blog-card{
  grid-column: span 4;
  background: var(--card-bg);
  border-radius: 18px;
  border: 1px solid rgba(96,165,250,.12);
  overflow:hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease, opacity .35s ease;
  opacity: 1;
  transform: translateY(0);
}

.blog-card-link{
  display:block;
  padding: 28px 26px;
  color: inherit;
  text-decoration:none;
  height: 100%;
}

.blog-card-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom: 14px;
  color: var(--text-secondary);
  font-size: 12px;
}

.blog-card-tag{
  display:inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(96,165,250,.12);
  color: var(--light-blue);
  border: 1px solid rgba(96,165,250,.22);
  font-weight: 800;
}

.blog-card h3{ 
  font-size: 20px; 
  line-height: 1.25; 
  margin-bottom: 10px; 
  color: var(--text-primary);
  font-weight: 700;
}

.blog-card p{ color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px; }

.blog-card-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  color: var(--text-secondary);
  font-size: 12px;
}

.blog-card-arrow{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(96,165,250,.18);
  color: var(--light-blue);
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.blog-card:hover{
  transform: translateY(-10px);
  border-color: rgba(52,211,153,.55);
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
}

.blog-card:hover .blog-card-arrow{
  transform: translateX(4px);
  background: rgba(52,211,153,.14);
  border-color: rgba(52,211,153,.55);
  color: var(--light-green);
}

.blog-pagination{
  margin-top: 34px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 16px;
}

.blog-page-btn[disabled]{ opacity:.45; cursor:not-allowed; }

.blog-page-dots{ display:flex; gap: 8px; }

.blog-page-dots .dot{
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
}

.blog-page-dots .dot.active{ background: var(--light-green); }

.blog-newsletter{
  background: var(--dark-bg);
  padding-top: 90px;
  padding-bottom: 90px;
}

.blog-newsletter-card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border: 1px solid rgba(96,165,250,.18);
  border-radius: 22px;
  padding: 34px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 20px;
  position:relative;
  overflow:hidden;
}

.blog-newsletter-card::before{
  content:'';
  position:absolute;
  inset:-2px;
  background: radial-gradient(500px 250px at 10% 30%, rgba(96,165,250,.16), transparent 60%),
              radial-gradient(500px 250px at 90% 70%, rgba(52,211,153,.14), transparent 60%);
  opacity:.9;
  pointer-events:none;
}

.blog-newsletter-copy{ position:relative; z-index:2; }

.blog-newsletter-copy h2{ font-size: 28px; margin-bottom: 8px; }

.blog-newsletter-copy p{ color: var(--text-secondary); }

.blog-newsletter-form{
  position:relative;
  z-index:2;
  display:flex;
  gap: 12px;
  align-items:center;
  width: min(520px, 100%);
  justify-content:flex-end;
}

.blog-newsletter-form input{
  flex:1;
  min-width: 220px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(96,165,250,.22);
  border-radius: 14px;
  padding: 12px 14px;
  color: var(--text-primary);
  outline:none;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.blog-newsletter-form input:focus{
  border-color: rgba(52,211,153,.65);
  box-shadow: 0 0 0 4px rgba(52,211,153,.12);
}

@media (max-width: 980px){
  .featured-post{ grid-template-columns: 1fr; }
  .featured-visual{ min-height: 240px; }
  .blog-card{ grid-column: span 6; }
}

@media (max-width: 640px){
  .blog-hero{ min-height: 86vh; }
  .blog-card{ grid-column: span 12; }
  .blog-newsletter-card{ flex-direction:column; align-items:stretch; }
  .blog-newsletter-form{ width:100%; justify-content:stretch; }
  .blog-newsletter-form input{ width:100%; }
}
