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

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0f;
    color: #e6e8f2;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.gradient-text {
    background: linear-gradient(135deg, #c084fc, #8b5cf6, #4f46e5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Header / Navigation */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(12px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: white;
}

.logo i {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #8b5cf6, #c084fc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-accent {
    color: #8b5cf6;
}

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

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: #8b5cf6;
}

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

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 20%, #1a1a2e, #0a0a0f);
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800"><circle cx="400" cy="400" r="300" fill="rgba(139,92,246,0.03)"/></svg>');
    pointer-events: none;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 40px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.125rem;
    color: #cfd3df;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(95deg, #8b5cf6, #6d28d9);
    color: white;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: white;
}

.btn-outline:hover {
    border-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.btn-outline-white {
    border: 1px solid white;
    background: transparent;
    color: white;
    padding: 12px 28px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-secondary {
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: #c084fc;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-small {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 30px;
    text-decoration: none;
    color: #c084fc;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-primary-sm {
    background: #8b5cf6;
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-outline-sm {
    border: 1px solid rgba(139, 92, 246, 0.5);
    padding: 8px 20px;
    border-radius: 30px;
    text-decoration: none;
    color: #c084fc;
    font-size: 0.85rem;
}

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

/* Hero Metrics */
.hero-metrics {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.metric {
    text-align: left;
}

.metric-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #8b5cf6;
    display: block;
}

.metric-label {
    font-size: 0.8rem;
    color: #b5bac8;
}

/* Hero Visual / Floating Cards */
.hero-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    background: rgba(25, 25, 40, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 12px 20px;
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-card i {
    font-size: 1.6rem;
    color: #8b5cf6;
}

.fc-1 {
    top: 20px;
    right: 20px;
}

.fc-2 {
    bottom: 100px;
    left: 0;
}

.fc-3 {
    bottom: 20px;
    right: 60px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 0.5rem;
}

.section-subtitle {
    color: #c4c8d4;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0.5rem auto 0;
}

/* Products Section - Card Based */
.products-section {
    padding: 80px 0;
    background: #0f0f18;
}

.products-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.product-card {
    background: linear-gradient(145deg, #15151f, #0f0f18);
    border-radius: 28px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
}

.premium-card {
    background: linear-gradient(135deg, #1a1733, #0f0f18);
    border-left: 3px solid #f97316;
}

.card-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(139, 92, 246, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #c084fc;
}

.card-badge.lightning {
    background: #f97316;
    color: #0a0a0f;
}

.card-icon {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: #cfd3df;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.card-stats {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: #b5bac8;
}

.card-stats i {
    color: #8b5cf6;
    margin-right: 4px;
}

.card-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #8b5cf6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: gap 0.2s;
}

.card-cta:hover {
    gap: 12px;
}

/* Why Section / Features */
.why-section {
    padding: 80px 0;
    background: #0a0a0f;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: #0f0f18;
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.2s;
}

.feature-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
}

.feature-card i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #cfd3df;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #0f0f18;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: #15151f;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.testimonial-card i {
    color: #8b5cf6;
    font-size: 2rem;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author strong {
    display: block;
    color: white;
}

.author span {
    font-size: 0.8rem;
    color: #b5bac8;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
}

.cta-card {
    background: linear-gradient(135deg, #1a1733, #0a0a0f);
    border-radius: 48px;
    padding: 4rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.cta-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Services Page - Card Based */
.services-cards-section {
    padding: 60px 0;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, #15151f, #0f0f18);
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(139, 92, 246, 0.3);
}

.service-icon {
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: #cfd3df;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.service-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.service-tech-stack span {
    background: rgba(139, 92, 246, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-family: monospace;
    color: #c084fc;
}

.service-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 10px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #c084fc;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.2s;
    text-align: center;
}

.service-cta-btn:hover {
    background: rgba(139, 92, 246, 0.25);
    gap: 12px;
}

/* Service CTA Banner */
.service-cta-banner {
    padding: 60px 0;
}

.cta-banner-inner {
    background: linear-gradient(135deg, #1a1733, #0f0f18);
    border-radius: 32px;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-banner-inner h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Portfolio Page */
.portfolio-section {
    padding: 60px 0;
}

.portfolio-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
    background: #0f0f18;
    border-radius: 32px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-item.reverse {
    direction: rtl;
}

.portfolio-item.reverse .portfolio-content {
    direction: ltr;
}

.portfolio-image img {
    width: 100%;
    border-radius: 24px;
    height: 100%;
    object-fit: cover;
}

.product-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1rem 0;
}

.portfolio-features div {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.portfolio-features i {
    color: #8b5cf6;
}

.portfolio-tech {
    font-family: monospace;
    font-size: 0.85rem;
    color: #b5bac8;
    margin: 1rem 0;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Essay Grader Demo */
.essay-grader-demo {
    background: linear-gradient(135deg, #1a1733, #0f0f18);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    border-radius: 24px;
}

.demo-card {
    text-align: center;
    padding: 2rem;
}

.demo-card i {
    font-size: 3rem;
    color: #f97316;
    margin-bottom: 1rem;
}

.timer-circle {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 1rem auto;
    border: 2px solid #f97316;
}

.timer-circle span {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: monospace;
}

.demo-btn {
    background: #f97316;
    border: none;
    padding: 12px 24px;
    border-radius: 40px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem 0;
    transition: 0.2s;
}

.demo-btn:hover {
    background: #fd7e14;
    transform: scale(1.02);
}

.demo-note {
    font-size: 0.85rem;
    color: #cfd3df;
}

.premium-item {
    background: linear-gradient(135deg, #1a1733, #0f0f18);
    border: 1px solid #f97316;
}

.lightning-badge-main {
    background: #f97316;
    color: #0a0a0f;
}

.portfolio-cta-group {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

/* Deployment Stats */
.deployment-stats {
    padding: 60px 0;
    background: #0a0a0f;
    text-align: center;
}

.stats-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.big-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #8b5cf6;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #cfd3df;
    font-size: 1.05rem;
    max-width: 720px;
    margin: 0.5rem auto 0;
}

/* About Page */
.about-hero {
    background: linear-gradient(135deg, #1a1a2e, #0a0a0f);
    padding: 120px 0 60px;
    text-align: center;
}

.about-hero p {
    max-width: 760px;
    margin: 1rem auto 0;
    color: #cfd3df;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-mission {
    padding: 60px 0;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text h2 {
    margin-top: 1.5rem;
}

.mission-text h2:first-of-type {
    margin-top: 0;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1rem;
}

.mission-stats div {
    background: #0f0f18;
    padding: 1rem;
    border-radius: 16px;
    text-align: center;
}

.mission-stats strong {
    font-size: 1.5rem;
    color: #8b5cf6;
}

.mission-image img {
    width: 100%;
    border-radius: 24px;
}

.about-values {
    background: #0f0f18;
    padding: 60px 0;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    padding: 1.5rem;
    background: #15151f;
    border-radius: 20px;
}

.value-card i {
    font-size: 2rem;
    color: #8b5cf6;
    margin-bottom: 1rem;
}

.about-team {
    padding: 60px 0;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-card {
    background: #0f0f18;
    padding: 1.5rem;
    border-radius: 24px;
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

/* Contact Page */
.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

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

.info-card {
    background: #0f0f18;
    padding: 1.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card i {
    font-size: 1.8rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.info-card a {
    color: #c084fc;
    text-decoration: none;
}

.contact-form {
    background: #0f0f18;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: #1a1a2e;
    border: 1px solid #2d2a4a;
    border-radius: 12px;
    color: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b5cf6;
}

.form-note {
    font-size: 0.78rem;
    color: #9ba0ad;
    text-align: center;
    margin-top: 1rem;
}

.office-locations {
    padding: 60px 0;
    text-align: center;
    background: #0f0f18;
}

.locations-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.locations-grid div {
    text-align: center;
}

.locations-grid i {
    font-size: 1.5rem;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
    display: block;
}

/* Footer */
.footer {
    background: #050508;
    padding: 48px 0 24px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
}

.footer-brand i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: #b5bac8;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    line-height: 1.6;
}

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

.social-links a {
    color: #b5bac8;
    font-size: 1.2rem;
    transition: color 0.2s;
}

.social-links a:hover {
    color: #8b5cf6;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    text-decoration: none;
    color: #b5bac8;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #c084fc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.8rem;
    color: #9ba0ad;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-container,
    .why-grid,
    .portfolio-item,
    .contact-grid,
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .nav-list {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-list.show {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #0a0a0f;
        padding: 1.5rem;
        border-bottom: 1px solid rgba(139, 92, 246, 0.2);
        gap: 1rem;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        gap: 2rem;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .products-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-inner h3 {
        font-size: 1.4rem;
    }
    
    .portfolio-item {
        grid-template-columns: 1fr;
    }
    
    .portfolio-item.reverse {
        direction: ltr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}
/* =========================================================
   Direction Next — additional styles for migrated sections
   ========================================================= */

/* Force dark scheme for native form controls (better readability) */
html { color-scheme: dark; }

/* Brighter section subtitle baseline already updated above */

/* Generic 3-column variants (so why-section / values-grid render as 3, not auto-fit) */
.features-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.values-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 968px) {
    .features-grid-3,
    .values-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* feature-card stat row */
.feature-card .feature-stat {
    color: #c084fc;
    font-weight: 700;
    font-size: 0.9rem;
    margin: 0.25rem 0 0.75rem;
    letter-spacing: 0.5px;
}
.feature-card {
    text-align: left;
    padding: 1.75rem;
}
.feature-card i {
    margin-bottom: 0.75rem;
}
.feature-card h4 {
    font-size: 1.15rem;
}

/* =========================================================
   Innovation Spotlight (4 Lock Protocol — Astro Yagya)
   ========================================================= */
.innovation-section {
    padding: 80px 0;
    background: #0c0c14;
}
.innovation-card {
    background: linear-gradient(135deg, #1a1733 0%, #0f0f18 100%);
    border-radius: 32px;
    border: 1px solid rgba(139, 92, 246, 0.25);
    padding: 3rem;
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}
.innovation-lead {
    color: #d8dbe6;
    font-size: 1.1rem;
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 880px;
}
.innovation-lead strong {
    color: #c084fc;
    font-weight: 700;
}
.innovation-locks {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}
.lock-item {
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    transition: 0.2s;
}
.lock-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-3px);
}
.lock-num {
    font-family: 'Inter', monospace;
    font-size: 1.6rem;
    font-weight: 800;
    color: #8b5cf6;
    background: linear-gradient(135deg, #c084fc, #6d28d9);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
}
.lock-item h4 {
    color: #ffffff;
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.lock-item p {
    color: #c8ccd8;
    font-size: 0.88rem;
    line-height: 1.55;
}
.innovation-note {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    background: rgba(139, 92, 246, 0.08);
    border-left: 3px solid #8b5cf6;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #c8ccd8;
    font-size: 0.92rem;
    line-height: 1.6;
}
.innovation-note i {
    color: #c084fc;
    margin-top: 3px;
}
@media (max-width: 968px) {
    .innovation-card { padding: 2rem; }
    .innovation-locks { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .innovation-locks { grid-template-columns: 1fr; }
}

/* =========================================================
   Services page — detail blocks
   ========================================================= */
.services-detail-section {
    padding: 60px 0;
}
.service-detail {
    background: linear-gradient(145deg, #15151f, #0f0f18);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    scroll-margin-top: 96px;
}
.service-detail-head {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(139, 92, 246, 0.18);
}
.service-icon-lg {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    color: #c084fc;
}
.service-detail h2 {
    font-size: 1.9rem;
    margin-bottom: 0.25rem;
}
.service-tag-line {
    color: #c084fc;
    font-weight: 600;
    margin: 0;
}
.service-lead {
    color: #d4d8e2;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 920px;
}
.service-tracks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.service-track {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    padding: 1.25rem;
}
.service-track h4 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.service-track h4 i {
    color: #8b5cf6;
    font-size: 0.9rem;
}
.service-track p {
    color: #c8ccd8;
    font-size: 0.88rem;
    line-height: 1.6;
}
.service-stack-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin: 1.25rem 0 1.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.stack-label {
    color: #b5bac8;
    font-size: 0.85rem;
    font-weight: 600;
}
.service-edge {
    background: rgba(139, 92, 246, 0.08);
    border-left: 3px solid #8b5cf6;
    border-radius: 10px;
    padding: 1rem 1.25rem;
    margin: 1.25rem 0 1.5rem;
    color: #d4d8e2;
    line-height: 1.65;
    font-size: 0.95rem;
}
.service-edge i {
    color: #c084fc;
    margin-right: 0.5rem;
}
.service-edge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0 1.5rem;
}
.service-edge-grid > div {
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.18);
    border-radius: 12px;
    padding: 0.85rem 1rem;
    color: #d4d8e2;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.service-edge-grid i {
    color: #c084fc;
}

/* =========================================================
   Engagement models
   ========================================================= */
.engagement-section {
    padding: 60px 0;
    background: #0c0c14;
}
.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.engagement-card {
    background: #15151f;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 22px;
    padding: 1.75rem;
    text-align: center;
    transition: 0.2s;
}
.engagement-card:hover {
    border-color: rgba(139, 92, 246, 0.35);
    transform: translateY(-3px);
}
.engagement-card i {
    font-size: 1.8rem;
    color: #c084fc;
    margin-bottom: 0.75rem;
}
.engagement-card h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.engagement-card p {
    color: #c8ccd8;
    font-size: 0.9rem;
    line-height: 1.6;
}
@media (max-width: 968px) {
    .engagement-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Portfolio extras (image placeholders + Astro showcase)
   ========================================================= */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: 24px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f18 100%);
    border: 1px solid rgba(139, 92, 246, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-align: center;
    padding: 2rem;
}
.image-placeholder i {
    font-size: 3.5rem;
    color: #8b5cf6;
}
.image-placeholder h4 {
    font-size: 1.4rem;
    color: #ffffff;
}
.image-placeholder p {
    color: #c8ccd8;
    font-size: 0.95rem;
}
.image-placeholder.coming-soon {
    border-style: dashed;
    border-color: rgba(249, 115, 22, 0.4);
}
.image-placeholder.coming-soon i {
    color: #f97316;
}
.coming-soon-badge {
    background: rgba(249, 115, 22, 0.18);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.35);
}

/* Astro Yagya showcase */
.astro-showcase {
    background: linear-gradient(135deg, #1a1733, #0f0f18);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
    border-radius: 24px;
    border: 1px solid rgba(249, 115, 22, 0.25);
}
.astro-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin: 1.25rem 0;
    width: 100%;
    max-width: 320px;
}
.astro-stats-grid > div {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 14px;
    padding: 0.85rem 0.5rem;
    text-align: center;
}
.astro-stats-grid strong {
    display: block;
    color: #f97316;
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.1;
}
.astro-stats-grid span {
    color: #d8dbe6;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.astro-showcase .demo-btn {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Portfolio item — make sure premium border colour is consistent */
.premium-item {
    border-color: rgba(249, 115, 22, 0.5);
}

/* =========================================================
   About — mission visual cards & founder
   ========================================================= */
.mission-visual {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.mission-visual-card {
    background: linear-gradient(145deg, #15151f, #0f0f18);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.mission-visual-card i {
    font-size: 1.6rem;
    color: #c084fc;
    margin-bottom: 0.4rem;
}
.mission-visual-card strong {
    font-size: 1.1rem;
    color: #ffffff;
}
.mission-visual-card span {
    color: #c8ccd8;
    font-size: 0.88rem;
}

.value-card {
    text-align: left;
    padding: 1.75rem;
}
.value-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.value-card p {
    color: #cfd3df;
    font-size: 0.95rem;
    line-height: 1.6;
}
.value-card i {
    margin-bottom: 0.75rem;
}

.about-founder {
    padding: 60px 0;
    background: #0c0c14;
}
.founder-card {
    background: linear-gradient(145deg, #15151f, #0f0f18);
    border: 1px solid rgba(139, 92, 246, 0.25);
    border-radius: 28px;
    padding: 2.25rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
.founder-icon {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    color: #c084fc;
}
.founder-body h3 {
    font-size: 1.4rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}
.founder-role {
    color: #c084fc;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}
.founder-body p {
    color: #d4d8e2;
    line-height: 1.7;
    margin-bottom: 0.85rem;
}
.founder-quote {
    background: rgba(139, 92, 246, 0.1);
    border-left: 3px solid #8b5cf6;
    border-radius: 10px;
    padding: 0.85rem 1.1rem;
    font-style: italic;
    color: #e6e8f2;
}
.founder-quote i {
    color: #c084fc;
    margin-right: 0.5rem;
    opacity: 0.7;
}
@media (max-width: 720px) {
    .founder-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-icon { margin: 0 auto; }
    .founder-quote { text-align: left; }
}

/* =========================================================
   Contact form — labels & helpers
   ========================================================= */
.form-group label {
    display: block;
    color: #d4d8e2;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.form-group .optional {
    color: #9ba0ad;
    font-weight: 400;
    font-size: 0.8rem;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #8a8f9e;
}
.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23c084fc' d='M6 8L0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}
.form-group select option {
    background: #15151f;
    color: #e6e8f2;
}
.info-card-note {
    color: #b5bac8;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    line-height: 1.5;
}
.info-card h3 {
    margin-bottom: 0.4rem;
}

/* =========================================================
   Premium card (flagship) — orange accent for Astro Yagya
   ========================================================= */
.premium-card {
    border-left-color: #f97316;
}
.premium-card .card-icon {
    color: #f97316;
}

/* =========================================================
   Responsive small fixes
   ========================================================= */
@media (max-width: 968px) {
    .service-detail { padding: 1.75rem; }
    .service-detail-head { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .innovation-section { padding: 60px 0; }
    .why-section .features-grid-3 { gap: 1rem; }
}

/* =========================================================
   Section header CTA + product card extensions (home page)
   ========================================================= */
.section-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.55rem 1.25rem;
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    background: rgba(139, 92, 246, 0.08);
    color: #c084fc;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: 0.2s;
}
.section-header-cta:hover {
    background: rgba(139, 92, 246, 0.18);
    gap: 0.75rem;
}

.product-card .card-tag {
    display: inline-block;
    background: rgba(139, 92, 246, 0.12);
    color: #c084fc;
    padding: 3px 10px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.4px;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}
.product-card .card-live-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    color: #c8ccd8;
    font-size: 0.85rem;
    margin: 0.6rem 0 1rem;
    padding-top: 0.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.product-card .card-live-row a {
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.product-card .card-live-row a:hover {
    color: #d8b4fe;
}
.live-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.7);
    vertical-align: middle;
}

/* =========================================================
   Why section — feature cards with badge + CTA, plus live-products callout
   ========================================================= */
.feature-card {
    position: relative;
}
.feature-card .feature-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: #c084fc;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 0.75rem;
    text-transform: none;
}
.feature-card .feature-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.5rem 1.1rem;
    border-radius: 30px;
    border: 1px solid rgba(139, 92, 246, 0.35);
    background: transparent;
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: 0.2s;
}
.feature-card .feature-cta:hover {
    background: rgba(139, 92, 246, 0.15);
    gap: 0.75rem;
}

.why-callout {
    margin-top: 3rem;
    background: linear-gradient(135deg, #1a1733 0%, #0f0f18 100%);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 28px;
    padding: 2.25rem;
    text-align: center;
}
.why-callout-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(34, 197, 94, 0.15);
    color: #4ade80;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    margin-bottom: 1rem;
}
.why-callout h3 {
    color: #ffffff;
    font-size: 1.7rem;
    margin-bottom: 0.5rem;
}
.why-callout p {
    color: #c8ccd8;
    font-size: 1rem;
    max-width: 640px;
    margin: 0 auto 1.5rem;
}
.why-callout-products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.why-product-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}
.why-product-pill i {
    color: #c084fc;
}
.why-product-pill:hover {
    background: rgba(139, 92, 246, 0.18);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-2px);
}

/* =========================================================
   Portfolio twin-panel layout
   ========================================================= */
.portfolio-twin {
    padding: 60px 0 30px;
}
.portfolio-twin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.twin-panel {
    background: linear-gradient(145deg, #15151f, #0f0f18);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 28px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: 0.25s;
    scroll-margin-top: 96px;
}
.twin-panel:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
}
.twin-flagship {
    border-color: rgba(249, 115, 22, 0.45);
    background: linear-gradient(145deg, #1f1820, #0f0f18);
}
.twin-edtech {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(145deg, #16162a, #0f0f18);
}
.twin-badge {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0.4px;
}
.twin-badge-flagship > span:first-child {
    background: rgba(249, 115, 22, 0.2);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.4);
    padding: 4px 14px;
    border-radius: 30px;
}
.twin-badge-edtech > span:first-child {
    background: rgba(139, 92, 246, 0.18);
    color: #c084fc;
    border: 1px solid rgba(139, 92, 246, 0.4);
    padding: 4px 14px;
    border-radius: 30px;
}
.twin-live {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #4ade80;
    font-weight: 600;
}
.twin-icon {
    font-size: 2.2rem;
    color: #f97316;
}
.twin-icon-edtech {
    color: #c084fc;
}
.twin-panel h2 {
    font-size: 2rem;
    margin: 0;
    color: #ffffff;
}
.twin-subtitle {
    color: #c8ccd8;
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0;
}
.twin-list-heading {
    margin-top: 0.5rem;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
}
.twin-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.twin-list li {
    color: #d8dbe6;
    font-size: 0.95rem;
    line-height: 1.55;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.6rem;
    align-items: flex-start;
}
.twin-list li i {
    color: #f97316;
    margin-top: 4px;
    flex-shrink: 0;
}
.twin-list-edtech li i {
    color: #c084fc;
}
.twin-list-edtech li i.fa-hourglass-half {
    color: #f97316;
}
.twin-inline-link {
    color: #c084fc;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.twin-inline-link:hover {
    color: #d8b4fe;
}
.coming-pill {
    background: rgba(249, 115, 22, 0.18);
    color: #fdba74;
    border: 1px solid rgba(249, 115, 22, 0.35);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.twin-cta-row {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.twin-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: 0.2s;
    color: #ffffff;
    flex-grow: 1;
    justify-content: center;
}
.twin-cta-flagship {
    background: linear-gradient(135deg, #f97316, #c2410c);
    box-shadow: 0 10px 24px -8px rgba(249, 115, 22, 0.4);
}
.twin-cta-flagship:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(249, 115, 22, 0.55);
}
.twin-cta-edtech {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
    box-shadow: 0 10px 24px -8px rgba(139, 92, 246, 0.4);
}
.twin-cta-edtech:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(139, 92, 246, 0.55);
}
.twin-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.2s;
}
.twin-cta-secondary:hover {
    border-color: rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.08);
}
.twin-meta {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, 0.08);
}
.twin-meta-label {
    color: #b5bac8;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.twin-meta-value {
    color: #c8ccd8;
    font-size: 0.85rem;
    font-family: monospace;
}

@media (max-width: 968px) {
    .portfolio-twin-grid { grid-template-columns: 1fr; }
    .twin-panel { padding: 1.75rem; }
}

/* Section header CTA on home — when used with section-header */
.section-header .section-header-cta {
    margin-top: 1.25rem;
}
