:root {
    --bg    : linear-gradient(135deg, #0f2027, #203a43);
    --card  : rgba(255, 255, 255, 0.03);
    --muted : #c0c5ce;
    --accent: #1ed760;
    --glass : rgba(255, 255, 255, 0.05);
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    list-style: none;
}

body {
    font-family           : 'Poppins', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
    margin                : 0;
    background            : var(--bg);
    color                 : #e6efe6;
    -webkit-font-smoothing: antialiased;
    overflow-x            : hidden;
}

/* ===== CONTENT PAGES (Terms, Privacy) ===== */
.content-page {
    max-width: 900px;
    margin: 2rem auto 3rem;
    padding: 0 1.5rem;
}

.content-page article {
    background: var(--card);
    border: 1px solid var(--glass);
    border-radius: 14px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}

.content-page h1 {
    font-size: 2.2rem;
    margin: 0 0 0.5rem 0;
}

.content-page .meta {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.content-page h2 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.25rem;
    color: var(--accent);
}

.content-page h3 {
    margin: 1rem 0 0.5rem;
    font-size: 1.05rem;
    color: var(--accent);
}

.content-page p {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0 0 0.75rem 0;
}

.content-page ul {
    list-style: disc;
    color: var(--muted);
    margin: 0.25rem 0 0.75rem 1.25rem;
}

.content-page li {
    margin: 0.35rem 0;
}

@media (max-width: 600px) {
    .content-page {
        margin: 1rem auto 2rem;
        padding: 0 1rem;
    }
    .content-page article {
        padding: 1.25rem;
    }
    .content-page h1 {
        font-size: 1.75rem;
    }
    .content-page h2 {
        font-size: 1.1rem;
    }
}

i{
    color: var(--accent);
}

/* ===== HEADER & NAVIGATION ===== */
header {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    padding        : 1.25rem 1.5rem;
    background     : var(--bg);
    position       : sticky;
    top            : 0;
    z-index        : 100;
    gap            : 1rem;
}

.brand {
    display    : flex;
    gap        : 0.75rem;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width          : 44px;
    height         : 44px;
    border-radius  : 12px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    flex-shrink    : 0;
    overflow       : hidden;
}

.brand-text {
    display       : flex;
    flex-direction: column;
    gap           : 0.125rem;
}

.brand-name {
    font-weight: 800;
    font-size  : 1rem;
}

.brand-tagline {
    font-size: 0.75rem;
    color    : #c0c5ce;
}

nav {
    display        : flex;
    align-items    : center;
    gap            : 1.5rem;
    flex           : 1;
    justify-content: flex-end;
}

nav a {
    color          : var(--muted);
    text-decoration: none;
    font-size      : 0.875rem;
    transition     : color 0.3s ease;
    white-space    : nowrap;
}

nav a:hover {
    color: var(--accent);
}

.btn-primary {
    padding        : 0.875rem 2rem;
    border-radius  : 12px;
    font-weight    : 600;
    text-decoration: none;
    background     : linear-gradient(135deg, var(--accent), #17b34f);
    color          : #051401;
    transition     : all 0.3s ease;
    font-size      : 1rem;
    white-space    : nowrap;
    border         : none;
    cursor         : pointer;
    position       : relative;
    overflow       : hidden;
    box-shadow     : 0 4px 15px rgba(30, 215, 96, 0.3);
}

.btn-primary::before {
    content    : '';
    position   : absolute;
    top        : 0;
    left       : -100%;
    width      : 100%;
    height     : 100%;
    background : linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition : left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform : translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 215, 96, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-block {
    width: 100%;
    display: block;
    text-align: center;
}

.btn-secondary {
    color          : #c0c5ce;
    text-decoration: none;
    padding        : 0.875rem 2rem;
    border-radius  : 8px;
    background     : transparent;
    border         : 1px solid rgba(255, 255, 255, 0.2);
    transition     : all 0.3s ease;
    font-size      : 1rem;
    white-space    : nowrap;
}

.btn-secondary:hover {
    border-color: var(--accent);
    color       : var(--accent);
    transform   : translateY(-2px);
}

/* Mobile menu toggle */
.menu-toggle {
    display       : none;
    flex-direction: column;
    gap           : 0.375rem;
    background    : none;
    border        : none;
    cursor        : pointer;
    padding       : 0.5rem;
    margin-right  : -0.5rem;
}

.menu-toggle span {
    width     : 24px;
    height    : 2px;
    background: var(--muted);
    transition: all 0.3s ease;
    display   : block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ===== HERO SECTION ===== */
.hero {
    max-width    : 1200px;
    margin       : 1.75rem auto 3.75rem;
    padding      : 0rem 1.5rem;
    text-align   : center;
}

.hero-grid {
    display        : flex;
    justify-content: center;
    align-items    : center;
}

.hero-left {
    max-width: 800px;
}

.hero-svg {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 2.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero-svg svg {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(30, 215, 96, 0.1));
}

h1 {
    font-size  : 3.5rem;
    line-height: 1.1;
    margin     : 0 auto;
    font-weight: 800;
    color      : #f5fbf5;
    animation  : fadeInUp 0.8s ease-out 0.2s backwards;
}

h1 .accent {
    color: var(--accent);
}

p.lead {
    color      : var(--muted);
    margin     : 0.875rem auto 0;
    max-width  : 640px;
    font-size  : 1rem;
    line-height: 1.6;
    animation  : fadeInUp 0.8s ease-out 0.3s backwards;
}

.hero-cta {
    margin-top     : 1.375rem;
    display        : flex;
    gap            : 0.875rem;
    flex-wrap      : wrap;
    animation      : fadeInUp 0.8s ease-out 0.4s backwards;
    justify-content: center;
}

/* ===== SECTIONS ===== */
.section {
    max-width: 1200px;
    margin   : 2.5rem auto;
    padding  : 1.75rem 1.5rem;
}

.section h2 {
    margin                 : 0 0 1.5rem 0;
    font-weight            : 800;
    font-size              : 2rem;
    background             : linear-gradient(135deg, var(--accent), #1ed760);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
}

/* ===== STATS SECTION ===== */
.stats-section {
    background   : linear-gradient(135deg, rgba(30, 215, 96, 0.05), rgba(30, 215, 96, 0.02));
    border-radius: 16px;
    padding      : 3rem 1.5rem !important;
}

.stats-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap                  : 2rem;
    max-width            : 1000px;
    margin               : 0 auto;
}

.stat-item {
    text-align: center;
    padding   : 1.5rem;
    opacity   : 0;
    transform : translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animate-in {
    opacity  : 1;
    transform: translateY(0);
}

.stat-number {
    font-size              : 3.5rem;
    font-weight            : 800;
    background             : linear-gradient(135deg, var(--accent), #15b34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    line-height            : 1;
    margin-bottom          : 0.5rem;
}

.stat-label {
    color      : var(--muted);
    font-size  : 0.95rem;
    font-weight: 500;
}

.stat-icon {
    font-size    : 2.5rem;
    color        : var(--accent);
    margin-bottom: 1rem;
    display      : inline-block;
}

/* ===== WHO WE ARE ===== */
.who {
    display              : grid;
    grid-template-columns: 1fr 360px;
    gap                  : 1.5rem;
    align-items          : start;
    background           : var(--card);
    padding              : 2rem;
    border-radius        : 14px;
    border               : 1px solid var(--glass);
}

.who p {
    color      : var(--muted);
    line-height: 1.6;
    font-size  : 0.95rem;
    text-align: justify;
}

.who-content,
.who-culture {
    opacity   : 0;
    transform : translateY(20px);
    transition: all 0.6s ease;
}

.who-content.animate-in,
.who-culture.animate-in {
    opacity  : 1;
    transform: translateY(0);
}

.who-content h3 {
    font-size: 1.35rem;
    color    : var(--accent);
}

.who-content p {
    color : var(--muted);
}

.who-culture {
    background   : transparent;
    border-radius: 10px;
}

.who-culture h3 {
    margin   : 0 0 0.5rem 0;
    font-size: 1.125rem;
    color    : var(--accent);
}

.who-culture h4 {
    margin-top : 1rem;
    font-size  : 0.95rem;
    color      : var(--accent);
    font-weight: 700;
}

.who-culture ul {
    color       : #c0c5ce;
    padding-left: 1.125rem;
    margin      : 0.375rem 0 0 0;
    font-size   : 0.9rem;
}

.sneaks {
    display              : block;
    margin-top           : 0.75rem;
}

.sneaks img {
    width        : 100%;
    height       : 350px;
    object-fit   : cover;
    border-radius: 12px;
    box-shadow   : 0 12px 30px rgba(0,0,0,0.45);
    border       : 1px solid rgba(255,255,255,0.02);
}

.sneak-label {
    margin-top : 1rem;
    font-weight: 600;
    color      : var(--accent);
    font-size  : 0.95rem;
}

/* ===== WHO GRID (new layout matching provided design) ===== */
.who-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 1.5rem;
    align-items: start;
    max-width: 1200px;
    margin-top: 0.5rem;
}

.who-left-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass);
    box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}

.who-label {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.who-title {
    font-size: 2.5rem;
    line-height: 1.02;
    margin: 0 0 1rem 0;
    color: #f5fbf5;
}

.who-intro {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
}

.who-right { display: flex; flex-direction: column; gap: 1rem; }

.who-image-card {
    background: var(--card);
    border: 1px solid var(--glass);
    border-radius: 14px;
    overflow: hidden;
    height: 260px;
}

.who-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.who-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.stat-box {
    position: relative;
    background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding: 1.6rem;
    border-radius: 16px;
    color: #e6efe6;
    border: 1px solid var(--glass);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    transition: transform 0.35s cubic-bezier(.2,.9,.2,1), box-shadow 0.35s ease, background 0.25s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}

.stat-box::before {
    /* subtle decorative glow in the card corner */
    content: '';
    position: absolute;
    right: -40px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(30,215,96,0.08), transparent 40%);
    transform: rotate(8deg);
    pointer-events: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--muted);
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(30,215,96,0.12);
    background: rgba(255,255,255,0.03);
}

@media (max-width: 980px) {
    .who-grid { grid-template-columns: 1fr; }
    .who-right { order: -1; }
    .who-image-card { height: 200px; }
    .who-title { font-size: 1.9rem; }
}


/* ===== SERVICES ===== */
.services-list {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap                  : 1.25rem;
    margin-top           : 1.125rem;
    align-items          : stretch;
    grid-auto-rows       : 1fr;
}

.service {
    background    : linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
    padding       : 1.75rem;
    border-radius : 16px;
    color         : #e6efe6;
    transition    : transform 0.35s cubic-bezier(.2,.9,.2,1), box-shadow 0.35s ease, opacity 0.6s ease;
    display       : flex;
    flex-direction: column;
    gap           : 0.75rem;
    border        : 1px solid var(--glass);
    opacity       : 0;
    transform     : translateY(30px);
    min-height    : 220px;
    position      : relative;
    overflow      : hidden;
}

.service.animate-in {
    opacity  : 1;
    transform: translateY(0);
}

.service:hover {
    transform : translateY(-8px);
    box-shadow: 0 18px 40px rgba(30, 215, 96, 0.12);
    background: rgba(255,255,255,0.03);
}

.service h4 {
    margin     : 0;
    font-size  : 1.125rem;
    color      : var(--accent);
    font-weight: 700;
}

.service p {
    color      : var(--muted);
    font-size  : 0.9rem;
    margin     : 0;
    line-height: 1.5;
}

.service-icon {
    font-size    : 1.25rem;
    color        : var(--accent);
    margin-bottom: 1rem;
    width        : 56px;
    height       : 56px;
    display      : inline-flex;
    align-items  : center;
    justify-content: center;
    background   : rgba(30,215,96,0.08);
    border-radius: 50%;
    flex-shrink  : 0;
    box-shadow   : inset 0 -6px 12px rgba(0,0,0,0.15);
}

.service::before {
    /* subtle decorative glow in the card corner */
    content: '';
    position: absolute;
    right: -40px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, rgba(30,215,96,0.08), transparent 40%);
    transform: rotate(8deg);
    pointer-events: none;
}

.service:hover .service-icon {
    background: linear-gradient(135deg, rgba(30,215,96,0.14), rgba(20,150,50,0.08));
    transform: translateY(-3px);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap                  : 1.5rem;
    margin-top           : 1.5rem;
}

.portfolio-item {
    background   : var(--card);
    border-radius: 12px;
    overflow     : hidden;
    border       : 1px solid var(--glass);
    transition   : all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity      : 0;
    transform    : translateY(30px) scale(0.95);
}

.portfolio-item.animate-in {
    opacity  : 1;
    transform: translateY(0) scale(1);
}

.portfolio-item:hover {
    transform : translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(30, 215, 96, 0.2);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
    height  : 240px;
}

.portfolio-image img {
    width     : 100%;
    height    : 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position  : absolute;
    bottom    : 0;
    left      : 0;
    right     : 0;
    padding   : 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    transform : translateY(100%);
    transition: transform 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-tags {
    display  : flex;
    gap      : 0.5rem;
    flex-wrap: wrap;
}

.portfolio-tags span {
    padding      : 0.25rem 0.75rem;
    background   : var(--accent);
    color        : #051401;
    border-radius: 6px;
    font-size    : 0.75rem;
    font-weight  : 600;
}

.portfolio-content {
    padding: 1.25rem;
}

.portfolio-content h3 {
    margin     : 0 0 0.5rem 0;
    font-size  : 1.125rem;
    font-weight: 700;
    color      : #f5fbf5;
}

.portfolio-content p {
    margin     : 0;
    color      : var(--muted);
    font-size  : 0.9rem;
    line-height: 1.5;
}

/* ===== TECH STACK SECTION ===== */
.tech-categories {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap                  : 1.5rem;
    margin-top           : 1.5rem;
}

.tech-category {
    background   : var(--card);
    padding      : 1.5rem;
    border-radius: 12px;
    border       : 1px solid var(--glass);
    opacity      : 0;
    transform    : translateY(30px);
    transition   : all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    height       : 100%;
    display      : flex;
    flex-direction: column;
}

.tech-category.animate-in {
    opacity  : 1;
    transform: translateY(0);
}

.tech-category:hover {
    transform : translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 215, 96, 0.15);
}

.tech-category h3 {
    margin        : 0 0 1rem 0;
    font-size     : 1.125rem;
    color         : var(--accent);
    font-weight   : 700;
    padding-bottom: 0.75rem;
    border-bottom : 1px solid var(--glass);
}

.tech-items {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap                  : 0.75rem;
    margin-top           : 0.75rem;
    align-items          : start;
}

.tech-item {
    display        : flex;
    align-items    : center;
    gap            : 0.5rem;
    padding        : 0.625rem;
    background     : var(--glass);
    border-radius  : 8px;
    transition     : all 0.3s ease;
    cursor         : pointer;
}

.tech-item {
    min-width: 0;
}

.tech-item:hover {
    background: rgba(30, 215, 96, 0.1);
    transform : translateX(5px);
}

.tech-icon {
    font-size  : 1.5rem;
    line-height: 1;
}

.tech-item span {
    font-size  : 0.875rem;
    color      : #e6efe6;
    font-weight: 500;
}

.tech-item span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* ===== PROCESS TIMELINE ===== */
.process-timeline {
    max-width : 900px;
    margin    : 2rem auto 0;
    position  : relative;
    padding   : 0 1rem;
}

.process-timeline::before {
    content   : '';
    position  : absolute;
    left      : 50%;
    top       : 0;
    bottom    : 0;
    width     : 2px;
    background: linear-gradient(to bottom, var(--accent), rgba(30, 215, 96, 0.2));
    transform : translateX(-50%);
}

.process-step {
    display      : grid;
    grid-template-columns: 1fr 1fr;
    gap          : 2rem;
    margin-bottom: 3rem;
    position     : relative;
    opacity      : 0;
    transform    : translateX(-50px);
    transition   : all 0.6s ease;
}

.process-step.animate-in {
    opacity  : 1;
    transform: translateX(0);
}

.process-step:nth-child(even) {
    transform: translateX(50px);
}

.process-step:nth-child(even).animate-in {
    transform: translateX(0);
}

.process-step:nth-child(odd) .process-number {
    order: 2;
}

.process-step:nth-child(odd) .process-content {
    text-align: right;
}

.process-number {
    font-size              : 4rem;
    font-weight            : 800;
    background             : linear-gradient(135deg, var(--accent), #15b34d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip        : text;
    line-height            : 1;
    display                : flex;
    align-items            : center;
    justify-content        : center;
    opacity                : 0.3;
    transition             : opacity 0.3s ease;
}

.process-step:hover .process-number {
    opacity: 1;
}

.process-content {
    padding      : 1.5rem;
    background   : var(--card);
    border-radius: 12px;
    border       : 1px solid var(--glass);
    transition   : all 0.3s ease;
}

.process-content:hover {
    background: var(--glass);
    transform : scale(1.05);
}

.process-content h3 {
    margin     : 0 0 0.75rem 0;
    font-size  : 1.25rem;
    color      : var(--accent);
    font-weight: 700;
}

.process-content p {
    margin     : 0;
    color      : var(--muted);
    font-size  : 0.9rem;
    line-height: 1.6;
}

/* ===== REVIEWS ===== */
.reviews {
    display              : grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap                  : 1.5rem;
    margin-top           : 1.5rem;
}

.review {
    padding      : 1.5rem;
    background   : linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border-radius: 16px;
    border       : 1px solid var(--glass);
    opacity      : 0;
    transform    : translateY(30px) scale(0.95);
    transition   : all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display      : flex;
    flex-direction: column;
    gap          : 1rem;
    position     : relative;
    overflow     : hidden;
}

.review::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30,215,96,0.05), transparent 60%);
    pointer-events: none;
}

.review.animate-in {
    opacity  : 1;
    transform: translateY(0) scale(1);
}

.review:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 16px 40px rgba(30,215,96,0.1);
    border-color: rgba(30,215,96,0.2);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(30,215,96,0.15), rgba(30,215,96,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 2px solid rgba(30,215,96,0.2);
}

.review-meta {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.review-name {
    font-weight: 700;
    font-size: 1rem;
    color: #f5fbf5;
}

.review-role {
    font-size: 0.85rem;
    color: var(--muted);
    opacity: 0.8;
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    color: var(--accent);
    font-size: 0.95rem;
}

.rev-body {
    color      : var(--muted);
    font-size  : 0.95rem;
    line-height: 1.6;
    font-style : italic;
    position   : relative;
}

/* ===== FAQ SECTION ===== */
.faq-container {
    max-width : 800px;
    margin    : 1.5rem auto 0;
}

/* ===== CONTACT FORM SECTION ===== */
/* Contact + FAQ Merged Section */
.contact-faq-section {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem 1.5rem;
}

.contact-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.subsection-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #e6efe6;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.subsection-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    border-radius: 2px;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-form .form-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-form label {
    font-size: 0.9rem;
    color: #e6efe6;
    font-weight: 500;
}

.contact-form input,
.contact-form textarea {
    background: rgba(15,32,39,0.5);
    border: 1px solid rgba(255,255,255,0.08);
    color: #e6efe6;
    padding: 0.875rem 1rem;
    border-radius: 10px;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(15,32,39,0.7);
    box-shadow: 0 0 0 3px rgba(30,215,96,0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .form-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-form .form-note {
    color: var(--muted);
    font-size: 0.85rem;
    text-align: center;
}

/* FAQ Wrapper */
.faq-wrapper {
    display: flex;
    flex-direction: column;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border-color: rgba(30,215,96,0.2);
}

.contact-info-box .info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(30,215,96,0.15), rgba(30,215,96,0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-info-box h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.125rem;
    color: #f5fbf5;
}

.contact-info-box p {
    margin: 0 0 0.75rem 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-info-box .info-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-info-box .info-link:hover {
    text-decoration: underline;
}

.contact-info-box .info-text {
    color: var(--muted);
    font-size: 0.9rem;
}

.contact-social {
    background: var(--card);
    padding: 1.5rem;
    border-radius: 14px;
    border: 1px solid var(--glass);
}

.contact-social h4 {
    margin: 0 0 1rem 0;
    font-size: 1rem;
    color: #f5fbf5;
}

.social-icons {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(30,215,96,0.08);
    border: 1px solid rgba(30,215,96,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent);
    color: #051401;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(30,215,96,0.25);
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-form .form-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-faq-section {
        padding: 1.5rem 1rem;
    }
    
    .contact-faq-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .contact-form-wrapper {
        padding: 1.5rem;
    }
    
    .subsection-title {
        font-size: 1.3rem;
    }
}

.faq-item {
    background   : var(--card);
    border       : 1px solid var(--glass);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow     : hidden;
    transition   : all 0.3s ease;
    opacity      : 0;
    transform    : translateY(20px);
}

.faq-item.animate-in {
    opacity  : 1;
    transform: translateY(0);
}

.faq-item:hover {
    border-color: var(--accent);
}

/* When an FAQ item is open/active, suppress hover visuals so it stays visually 'active' */
.faq-item.active,
.faq-item.active .faq-question,
.faq-item.active .faq-question:hover {
    border-color: var(--glass) !important;
    background: transparent !important;
    cursor: default;
}

.faq-item.active:hover {
    /* prevent the border-color from changing on hover when active */
    border-color: var(--glass) !important;
}

.faq-question {
    padding        : 1.25rem 1.5rem;
    cursor         : pointer;
    display        : flex;
    justify-content: space-between;
    align-items    : center;
    gap            : 1rem;
    transition     : all 0.3s ease;
}

.faq-question:hover {
    background: var(--glass);
}

.faq-question h4 {
    margin     : 0;
    font-size  : 1rem;
    font-weight: 600;
    color      : #f5fbf5;
}

.faq-icon {
    font-size  : 1.5rem;
    color      : var(--accent);
    transition : transform 0.3s ease;
    flex-shrink: 0;
}

.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 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding   : 0 1.5rem 1.25rem 1.5rem;
}

.faq-answer p {
    margin     : 0;
    color      : var(--muted);
    font-size  : 0.9rem;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
/* ===== FOOTER (Design matching the provided screenshot) ===== */
.site-footer {
    padding: 6.0rem 2rem;
    margin-top: 2.5rem;
    background     : var(--bg);
    border-radius: 12px;
}

.footer-wrap { max-width: 1200px; margin: 0 auto; }

.footer-top {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-left { flex: 1 1 420px; max-width: 640px; }
.footer-right { display: flex; gap: 2.5rem; align-items: flex-start; }

.footer-label { color: rgba(255,255,255,0.36); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 0.6rem; }
.footer-hero { color: #ffffff; font-size: 2.3rem; line-height: 1.05; margin: 0 0 1rem 0; font-weight: 700; }

.footer-actions { margin-bottom: 1.25rem; }
.footer-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.75rem 1.25rem; border-radius: 40px; }

.footer-email-label { color: rgba(255,255,255,0.36); font-size: 0.8rem; margin-top: 1rem; margin-bottom: 0.5rem; }
.email-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1rem;
    border-radius: 28px;
    background: transparent;
    border: 1px dashed rgba(255,255,255,0.06);
    color: #dfeee1;
    text-decoration: none;
}
.email-pill i { opacity: 0.7; }

.footer-col { min-width: 160px; }
.col-title { color: rgba(255,255,255,0.6); font-weight: 700; margin-bottom: 0.8rem; font-size: 0.85rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin: 0.45rem 0; }
.footer-col a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; }

.footer-divider { height: 1px; background: rgba(255,255,255,0.03); margin: 1.75rem 0; }

.footer-bottom { display:flex; justify-content:space-between; align-items:center; gap:1rem; }
.footer-bottom-left { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.footer-bottom-right a { color: rgba(255,255,255,0.8); margin-left: 0.6rem; }
.social-icons a { margin-left: 0.6rem; color: rgba(255,255,255,0.85); font-size: 0.95rem; }

/* Rounded outer padding like in screenshot */
body > .site-footer { border-radius: 12px; }

@media (max-width: 900px) {
    .footer-top { flex-direction: column; }
    .footer-right { width: 100%; display: grid; grid-template-columns: repeat(2,1fr); gap:1.25rem; }
    .footer-hero { font-size: 1.75rem; }
}

@media (max-width: 520px) {
    .footer-hero { font-size: 1.4rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
}
/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity  : 0;
        transform: translateY(20px);
    }

    to {
        opacity  : 1;
        transform: translateY(0);
    }
}

/* ===== RESPONSIVE ===== */

/* Large tablets and small desktops */
@media (max-width: 1024px) {
    .section {
        padding: 1.5rem 1.25rem;
    }

    h1 {
        font-size: 3rem;
    }

    .section h2 {
        font-size: 1.75rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-categories {
        grid-template-columns: repeat(2, 1fr);
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    header {
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    nav {
        position       : fixed;
        top            : 0;
        right          : -100%;
        width          : 80%;
        max-width      : 320px;
        height         : 100vh;
        background     : #0f2027;
        flex-direction : column;
        justify-content: flex-start;
        padding        : 5rem 2rem 2rem;
        transition     : right 0.3s ease;
        box-shadow     : -5px 0 15px rgba(0, 0, 0, 0.5);
        z-index        : 99;
        gap            : 2rem;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1rem;
    }

    .hero {
        margin : 1.5rem auto 2.5rem;
        padding: 1.5rem 1.25rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    p.lead {
        font-size: 0.95rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items   : flex-start;
    }

    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .section {
        margin : 2rem auto;
        padding: 1.25rem 1rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap                  : 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2rem;
    }

    .who {
        grid-template-columns: 1fr;
        gap                  : 1.5rem;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap                  : 1rem;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
        gap                  : 1.25rem;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap                  : 1.25rem;
    }

    .tech-items {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Make room on the left for the timeline and number badges so they don't overflow */
    .process-timeline {
        padding: 0 0 0 88px;
        overflow: visible;
    }

    /* Move the vertical line slightly to the right so it sits between digits and cards */
    .process-timeline::before {
        left: 65px;
    }

    .process-step {
        grid-template-columns: 1fr;
        gap                  : 1rem;
        text-align           : left !important;
        padding-left         : 0;
        position             : relative;
        overflow             : visible;
    }

    .process-step:nth-child(even) {
        transform: translateX(-50px);
    }

    .process-step:nth-child(odd) .process-number {
        order: 1;
    }

    .process-step:nth-child(odd) .process-content {
        text-align: left;
        order     : 2;
    }

    .process-number {
        position       : absolute;
        /* place the digit to the left of the vertical line */
        left           : -85px;
        top            : 0;
        width          : 56px;
        height         : 56px;
        font-size      : 1.75rem;
        justify-content: center;
        align-items     : center;
        z-index         : 3;
        display         : flex;
    }

    .reviews {
        grid-template-columns: 1fr;
        padding              : 1rem;
    }

    footer {
        grid-template-columns: 1fr;
        text-align           : center;
        gap                  : 1.5rem;
    }

    .foot-links {
        justify-content: center;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    header {
        padding: 0.875rem;
    }

    .brand-name {
        font-size: 0.9rem;
    }

    .brand-tagline {
        font-size: 0.7rem;
    }

    .logo {
        width : 38px;
        height: 38px;
    }

    nav {
        width    : 85%;
        max-width: none;
        padding  : 4rem 1.5rem 2rem;
    }

    .hero {
        margin : 1rem auto 2rem;
        padding: 1.25rem 1rem;
    }

    h1 {
        font-size  : 2rem;
        line-height: 1.2;
    }

    p.lead {
        font-size  : 0.9rem;
        line-height: 1.5;
        margin-top : 0.75rem;
    }

    .hero-cta {
        margin-top: 1rem;
        gap       : 0.75rem;
    }

    .btn-primary,
    .btn-secondary {
        padding  : 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .section {
        margin : 1.5rem auto;
        padding: 1rem 0.875rem;
    }

    .section h2 {
        font-size    : 1.375rem;
        margin-bottom: 1.25rem;
    }

    .stats-section {
        padding: 2rem 1rem !important;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap                  : 1.25rem;
    }

    .stat-item {
        padding: 1rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-icon {
        font-size    : 1.75rem;
        margin-bottom: 0.75rem;
    }

    .stat-label {
        font-size: 0.875rem;
    }

    .who-culture {
        padding: 1rem;
    }

    .who-culture h3 {
        font-size: 1rem;
    }

    .who-culture ul {
        font-size: 0.85rem;
    }

    .sneaks img {
        height: 200px;
    }

    .service {
        padding: 1.25rem;
    }

    .service h4 {
        font-size: 1rem;
    }

    .service p {
        font-size: 0.85rem;
    }

    .service-icon {
        font-size    : 1.75rem;
        margin-bottom: 0.75rem;
    }

    .portfolio-grid {
        gap: 1rem;
    }

    .portfolio-image {
        height: 200px;
    }

    .portfolio-content {
        padding: 1rem;
    }

    .portfolio-content h3 {
        font-size: 1rem;
    }

    .portfolio-content p {
        font-size: 0.85rem;
    }

    .tech-category {
        padding: 1.25rem;
    }

    .tech-category h3 {
        font-size: 1rem;
    }

    .tech-items {
        gap: 0.5rem;
    }

    .tech-item {
        padding: 0.5rem;
    }

    .tech-icon {
        font-size: 1.25rem;
    }

    .tech-item span {
        font-size: 0.8rem;
    }

    .process-timeline {
        margin: 1.5rem auto 0;
    }

    .process-step {
        margin-bottom: 2rem;
    }

    .process-number {
        width    : 35px;
        height   : 35px;
        font-size: 1.5rem;
    }

    .process-content {
        padding: 1.25rem;
    }

    .process-content h3 {
        font-size: 1rem;
    }

    .process-content p {
        font-size: 0.85rem;
    }

    .reviews {
        padding              : 0.875rem;
        grid-template-columns: 1fr;
        gap                  : 0.875rem;
    }

    .review {
        padding: 1rem;
    }

    .review-name {
        font-size: 0.875rem;
    }

    .rev-body {
        font-size: 0.85rem;
    }

    .faq-container {
        margin: 1rem auto 0;
    }

    .faq-item {
        margin-bottom: 0.75rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
    }

    .faq-question h4 {
        font-size: 0.9rem;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .contact-form .form-group {
        grid-template-columns: 1fr;
    }

    footer {
        padding: 1.5rem 1rem;
        gap    : 1.25rem;
    }

    .footer-brand {
        font-size: 0.95rem;
    }

    .footer-tagline {
        font-size: 0.85rem;
    }

    .foot-links {
        flex-wrap: wrap;
        gap      : 1rem;
    }

    .foot-links a {
        font-size: 0.8rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    h1 {
        font-size: 1.75rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stats-grid {
        gap: 1rem;
    }

    .tech-items {
        grid-template-columns: 1fr;
    }

    .portfolio-image {
        height: 180px;
    }

    .sneaks img {
        height: 160px;
    }
}

/* Floating WhatsApp button */
#whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 22px;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
}

#whatsapp-float a {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: white;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(37,211,102,0.18);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

#whatsapp-float a:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(37,211,102,0.22); }

#whatsapp-float i.fab { font-size: 1.25rem; }

#whatsapp-float .wa-text { display: inline-block; }

@media (max-width: 520px) {
    #whatsapp-float { right: 14px; bottom: 16px; }
    #whatsapp-float a { padding: 0.6rem 0.8rem; }
    #whatsapp-float .wa-text { display: none; }
}

/* ===== Toast notification for contact form status ===== */
.toast {
    position: fixed;
    right: 20px;
    bottom: 22px;
    background: linear-gradient(135deg, rgba(25,130,60,0.95), rgba(30,215,96,0.95));
    color: #051401;
    padding: 0.85rem 1rem;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.45);
    display: flex;
    gap: 0.75rem;
    align-items: center;
    min-width: 240px;
    max-width: calc(100% - 40px);
    transform: translateY(8px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1400;
}

.toast.toast-error {
    background: linear-gradient(135deg, rgba(180,40,40,0.95), rgba(230,80,80,0.95));
    color: #fff;
}

.toast.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.toast .toast-icon {
    font-size: 1.15rem;
    opacity: 0.95;
}

.toast .toast-text {
    font-size: 0.95rem;
    line-height: 1.2;
    color: inherit;
}

@media (max-width: 520px) {
    .toast { right: 12px; left: 12px; bottom: 16px; }
}

    /* ===== Sticky header anchor offset ===== */
    /* Ensure browser-scrolled anchors appear below the sticky header */
    html {
        scroll-behavior: smooth;
        /* Default offset for desktop header (4.5rem = 72px) */
        scroll-padding-top: 4.5rem;
    }

    /* Fallback for elements that may be targeted directly (older browsers) */
    .section,
    .content-page h1,
    .content-page h2,
    .content-page [id] {
        scroll-margin-top: 4.75rem; /* slightly larger to be safe */
    }

    @media (max-width: 768px) {
        /* Mobile header is taller when menu is visible; increase offset */
        html { scroll-padding-top: 6rem; }
        .section,
        .content-page h1,
        .content-page h2,
        .content-page [id] { scroll-margin-top: 6.25rem; }
    }

