/*
Theme Name: MyTechSolutions
Author: MyTechSolutions
Description: A unique, modern, and intuitive custom theme for technology consulting and SaaS.
Version: 2.0
*/

/* ===================================
   RESET & BASE
   =================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #0a0a0a;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

/* ===================================
   KEYFRAME ANIMATIONS
   =================================== */
@keyframes subtleZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
}

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

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50%      { opacity: 1;   transform: scaleY(0.6); }
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    height: 68px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.navbar-inner {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* Logo */
.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.navbar-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

.navbar-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -0.2px;
    color: #0a0a0a;
}

.navbar-logo-accent {
    color: rgba(10,10,10,0.4);
}

/* Desktop Nav */
.navbar-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-links a,
.navbar-links button {
    text-decoration: none;
    color: #555;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.navbar-links a:hover,
.navbar-links button:hover {
    color: #0a0a0a;
}

/* Products Dropdown */
.products-dropdown {
    position: relative;
}

.products-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
}

.products-toggle svg {
    transition: transform 0.25s ease;
    opacity: 0.5;
}

.products-dropdown.active .products-toggle svg {
    transform: rotate(180deg);
}

.products-dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(4px) scale(0.97);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 100;
    padding-top: 8px;
}

.products-dropdown.active .products-dropdown-panel {
    transform: translateX(-50%) translateY(8px) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.products-dropdown-inner {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    border-radius: 12px;
    padding: 8px;
    min-width: 240px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.product-item:hover {
    background: rgba(10,10,10,0.04);
}

.product-item-icon {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #0a0a0a;
}

.product-item-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.product-item-name {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: #0a0a0a;
    display: block;
    margin-bottom: 2px;
}

.product-item-desc {
    font-size: 12px;
    color: rgba(10,10,10,0.4);
    line-height: 1.4;
    display: block;
}

/* Nav CTA Button */
.navbar-cta {
    display: inline-flex;
    text-decoration: none;
    background: #0a0a0a;
    color: #fff;
    border-radius: 9999px;
    padding: 10px 22px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: background 0.2s;
}

.navbar-cta:hover {
    background: #222;
}

/* Mobile Menu Toggle */
.navbar-mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: #0a0a0a;
}

.navbar-mobile-toggle svg {
    width: 24px;
    height: 24px;
}

/* Mobile Menu */
.navbar-mobile-menu {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 20px 24px;
    flex-direction: column;
    gap: 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

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

.navbar-mobile-menu a {
    text-decoration: none;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.navbar-mobile-menu a:hover {
    color: #0a0a0a;
}

.navbar-mobile-products-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #555;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 0;
}

.navbar-mobile-products-toggle:hover {
    color: #0a0a0a;
}

.navbar-mobile-products-toggle svg {
    transition: transform 0.25s ease;
    opacity: 0.5;
}

.mobile-products-sub {
    display: none;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 2px solid rgba(10,10,10,0.08);
}

.mobile-products-sub.active {
    display: block;
}

.mobile-product-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.mobile-product-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: #0a0a0a;
}

.mobile-product-icon svg {
    width: 14px;
    height: 14px;
    color: #fff;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.mobile-product-name {
    font-size: 13px;
    font-weight: 600;
    color: #0a0a0a;
    display: block;
}

.mobile-product-desc {
    font-size: 11px;
    color: rgba(10,10,10,0.4);
    display: block;
}

.navbar-mobile-cta {
    display: block;
    text-decoration: none;
    background: #0a0a0a;
    color: #fff;
    text-align: center;
    border-radius: 9999px;
    padding: 12px 22px;
    font-size: 13px;
    font-weight: 600;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    animation: subtleZoom 12s ease-out forwards;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.75) 100%);
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 68px 24px 120px;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.85);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-eyebrow-sep {
    color: rgba(255,255,255,0.4);
}

/* Heading */
.hero-title {
    color: #fff;
    max-width: 820px;
    margin-bottom: 40px;
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(52px, 7vw, 96px);
    line-height: 1.0;
    letter-spacing: -1px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.55s forwards;
}

.hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0a0a0a;
    border-radius: 9999px;
    padding: 16px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
}

.hero-cta:hover {
    background: #0a0a0a;
    color: #fff;
}

.hero-cta svg {
    transition: transform 0.3s;
}

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

/* Scroll hint */
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 1s ease 1.4s forwards;
}

.hero-scroll-text {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* Teaser Strip */
.teaser-strip {
    background: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding: 20px 24px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.4);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.teaser-divider {
    width: 1px;
    height: 16px;
    background: rgba(255,255,255,0.15);
}

/* ===================================
   SECTION LABEL (reusable)
   =================================== */
.section-label {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
    padding-left: 20px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #9a9a9a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 1px;
    background: #9a9a9a;
}

.section-label-light {
    color: rgba(255,255,255,0.3);
}

.section-label-light::before {
    background: rgba(255,255,255,0.3);
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services-section {
    padding: 120px 24px;
    background: #f9f9f9;
}

.services-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 72px;
}

.services-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: #0a0a0a;
}

.services-title em {
    font-style: italic;
    font-weight: 300;
    color: #9a9a9a;
}

.services-subtitle {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
    max-width: 520px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
    background: #d0d0d0;
    border: 1px solid #d0d0d0;
    border-radius: 16px;
    overflow: hidden;
}

.service-card {
    position: relative;
    background: #ffffff;
    padding: 44px 36px;
    transition: background 0.3s, color 0.3s;
    cursor: default;
}

.service-card:hover {
    background: #0a0a0a;
}

.service-card-num {
    position: absolute;
    top: 28px;
    right: 32px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #d0d0d0;
    transition: color 0.3s;
}

.service-card:hover .service-card-num {
    color: rgba(255,255,255,0.15);
}

.service-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    border: 1px solid #d0d0d0;
    background: transparent;
    transition: all 0.3s;
}

.service-card:hover .service-card-icon {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

.service-card-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: #555;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke 0.3s;
}

.service-card:hover .service-card-icon svg {
    stroke: rgba(255,255,255,0.6);
}

.service-card-title {
    margin-bottom: 12px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0a0a0a;
    transition: color 0.3s;
}

.service-card:hover .service-card-title {
    color: #fff;
}

.service-card-desc {
    font-size: 13.5px;
    line-height: 1.7;
    font-weight: 400;
    color: #555;
    transition: color 0.3s;
}

.service-card:hover .service-card-desc {
    color: rgba(255,255,255,0.5);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 24px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #0a0a0a;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    transition: all 0.3s;
}

.service-card:hover .service-card-link {
    color: rgba(255,255,255,0.75);
    gap: 10px;
}

/* ===================================
   WHY SECTION
   =================================== */
.why-section {
    padding: 120px 24px;
    background: #fff;
}

.why-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

/* Image block */
.why-image-block {
    position: relative;
}

.why-image-wrap {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.why-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
}

.why-stat-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background: #f5f5f5;
    padding: 10px 20px;
    border: 1px solid #e8e8e8;
}

.why-stat-value {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 15px;
    color: #0a0a0a;
}

.why-stat-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #666;
}

/* Right content */
.why-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 4.5vw, 62px);
    line-height: 1.08;
    letter-spacing: -0.5px;
    color: #0a0a0a;
    margin-bottom: 16px;
}

.why-title em {
    font-style: italic;
    font-weight: 300;
    color: #9a9a9a;
}

.why-text {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    font-weight: 400;
    max-width: 520px;
}

.why-text p {
    margin-bottom: 16px;
}

.why-text p:last-child {
    margin-bottom: 0;
}

/* Why points */
.why-points {
    margin-top: 52px;
    display: flex;
    flex-direction: column;
}

.why-point {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: padding-left 0.3s;
}

.why-point:first-child {
    border-top: 1px solid #f0f0f0;
}

.why-point:hover {
    padding-left: 8px;
}

.why-point-num {
    flex-shrink: 0;
    width: 36px;
    padding-top: 2px;
    font-family: 'Fraunces', serif;
    font-size: 28px;
    font-weight: 300;
    color: #d0d0d0;
    line-height: 1;
}

.why-point-title {
    margin-bottom: 6px;
    font-size: 15px;
    font-weight: 700;
    color: #0a0a0a;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.why-point-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #555;
    font-weight: 400;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding: 100px 24px;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.7) 50%, rgba(10,10,10,0.85) 100%);
}

.cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(32px, 4.5vw, 54px);
    line-height: 1.12;
    letter-spacing: -0.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    font-weight: 400;
    max-width: 480px;
    margin: 0 auto 40px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: #0a0a0a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    text-decoration: none;
    transition: background 0.3s;
}

.cta-btn-primary:hover {
    background: #e5e5e5;
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 14px 32px;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.2);
    text-decoration: none;
    transition: border-color 0.3s;
}

.cta-btn-secondary:hover {
    border-color: rgba(255,255,255,0.5);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    position: relative;
    overflow: hidden;
    background: #0a0a0a;
    padding: 0;
}

.contact-bg-text {
    position: absolute;
    pointer-events: none;
    user-select: none;
    bottom: -40px;
    left: -20px;
    font-family: 'Fraunces', serif;
    font-size: clamp(100px, 18vw, 240px);
    font-weight: 600;
    letter-spacing: -8px;
    color: rgba(255,255,255,0.03);
    white-space: nowrap;
    line-height: 1;
}

.contact-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
    padding: 120px 24px;
}

.contact-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(36px, 4.5vw, 64px);
    line-height: 1.06;
    letter-spacing: -0.5px;
    color: #fff;
    margin-bottom: 24px;
}

.contact-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
}

.contact-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.4);
    max-width: 400px;
    margin-bottom: 48px;
}

/* Contact info items */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.contact-info-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
}

.contact-info-icon svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-info-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-bottom: 2px;
}

.contact-info-text {
    font-size: 13.5px;
    color: rgba(255,255,255,0.45);
}

.contact-info-text a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s;
}

.contact-info-text a:hover {
    color: #fff;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

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

.form-group label {
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 14px 18px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.2);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.07);
}

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

.form-group select {
    appearance: none;
    cursor: pointer;
    color: rgba(255,255,255,0.4);
}

.form-group select option {
    background: #1a1a1a;
    color: white;
}

.contact-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0a0a0a;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 8px;
    padding: 16px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.contact-submit:hover {
    background: #f0f0f0;
}

.contact-submit svg {
    transition: transform 0.3s;
}

.contact-submit:hover svg {
    transform: translateX(4px);
}

/* CF7 Submit Button */
.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #0a0a0a;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    margin-top: 8px;
    padding: 16px 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: background 0.2s;
    -webkit-appearance: none;
    appearance: none;
}
.contact-form input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover {
    background: #f0f0f0;
}

/* CF7 Response Messages */
.contact-form .wpcf7-response-output {
    color: #fff !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    border-color: rgba(255,255,255,0.25) !important;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
}

.footer-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(12px) brightness(0.15);
    transform: scale(1.1);
}

.footer-bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.93) 0%, rgba(0,0,0,0.97) 100%);
}

.footer-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

/* Brand column */
.footer-brand {
    display: flex;
    flex-direction: column;
}

.footer-brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-brand-logo img {
    height: 56px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-brand-logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: -0.2px;
    color: #ffffff;
}

.footer-brand-logo-accent {
    color: rgba(255,255,255,0.5);
}

.footer-brand-tagline {
    font-size: 14px;
    line-height: 1.75;
    color: rgba(255,255,255,0.35);
    max-width: 280px;
    margin-bottom: 28px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    transition: background 0.2s;
    text-decoration: none;
}

.footer-social a:hover {
    background: rgba(255,255,255,0.1);
}

.footer-social a svg {
    width: 15px;
    height: 15px;
}

/* Footer columns */
.footer-column h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-column-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column-links a,
.footer-column-links span {
    font-size: 13.5px;
    color: rgba(255,255,255,0.35);
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column-links a:hover {
    color: rgba(255,255,255,0.7);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-copyright {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.3px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.2);
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.6);
}

/* ===================================
   REVEAL ANIMATION (JS-driven)
   =================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===================================
   RESPONSIVE
   =================================== */

/* Tablet+ (768px) */
@media (min-width: 768px) {
    .navbar {
        padding: 0 40px;
    }

    .services-section {
        padding: 120px 48px;
    }

    .services-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-end;
    }

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

    .why-section {
        padding: 120px 48px;
    }

    .contact-inner {
        padding: 120px 48px;
    }

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

    .teaser-strip {
        gap: 60px;
    }

    .footer-content {
        padding: 80px 48px 40px;
    }

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

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* Desktop (1024px) */
@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }

    .navbar-cta {
        display: inline-flex;
    }

    .navbar-mobile-toggle {
        display: none;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-inner {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }

    .contact-inner {
        grid-template-columns: 1fr 1fr;
        gap: 100px;
    }

    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile overrides (below 1024px) */
@media (max-width: 1023px) {
    .navbar-links {
        display: none;
    }

    .navbar-cta {
        display: none;
    }

    .navbar-mobile-toggle {
        display: block;
    }

    .teaser-divider {
        display: none;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(40px, 10vw, 52px);
    }

    .hero-cta {
        padding: 14px 28px;
        font-size: 12px;
    }

    .service-card {
        padding: 32px 24px;
    }
}

/* ===================================
   ABOUT PAGE
   =================================== */
.page-hero {
    position: relative;
    padding: 160px 24px 80px;
    background: #0a0a0a;
    text-align: center;
}

.page-hero-title {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: clamp(40px, 5vw, 72px);
    line-height: 1.06;
    letter-spacing: -1px;
    color: #fff;
    margin-bottom: 16px;
}

.page-hero-title em {
    font-style: italic;
    font-weight: 300;
    color: rgba(255,255,255,0.5);
}

.page-hero-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    max-width: 520px;
    margin: 0 auto;
}

/* ===================================
   SERVICES PAGE
   =================================== */
.services-page-grid {
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px 120px;
}

/* ===================================
   GENERIC PAGE CONTENT
   =================================== */
.page-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 80px 24px 120px;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.page-content h2 {
    font-family: 'Fraunces', serif;
    font-weight: 600;
    font-size: 28px;
    color: #0a0a0a;
    margin: 48px 0 16px;
}

.page-content h3 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #0a0a0a;
    margin: 32px 0 12px;
}

.page-content p {
    margin-bottom: 16px;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content ul {
    list-style: disc;
}

.page-content ol {
    list-style: decimal;
}

.page-content a {
    color: #0a0a0a;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content a:hover {
    color: #555;
}
