:root {
  --bg: #FFFFFF;
  --bg-2: #F8FAFC; 
  --card: #FFFFFF;
  --line: rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.15);
  --orange: #F97316;
  --orange-light: #EA6A0C;
  --orange-dim: rgba(249, 115, 22, 0.1);
  --pink: #FF007F; 
  --white: #0F172A; 
  --gray: #475569;
  --gray-dim: #94A3B8;
  --radius: 24px; 
  --maxw: 1240px;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(249, 115, 22, 0.1);
}

/* Global Reset & Overflow Protection */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth; overflow-x: hidden; max-width: 100vw;}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  cursor: url('assets/cursor.png'), auto;
}

/* Base Interactions */
a, button, .btn, .spread-card, input, textarea, select {
  cursor: url('assets/cursor.png'), pointer;
}
input, textarea, select {
  font-size: 16px; /* Prevents iOS auto-zoom */
}

h1,h2,h3,h4,h5{font-family:'Space Grotesk',sans-serif;font-weight:700;letter-spacing:-0.03em;line-height:1.1;}
a{color:inherit;text-decoration:none;}
img, video {max-width:100%; height:auto; display:block;}
ul{list-style:none;}
.wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px; width: 100%;}

.eyebrow{display:inline-flex;align-items:center;gap:8px;color:var(--orange);font-size:13.5px;font-weight:700;letter-spacing:.15em;text-transform:uppercase;margin-bottom:16px;}
.eyebrow::before{content:"";width:24px;height:2px;background:var(--orange);border-radius:2px;}
section{position:relative; width: 100%; overflow: hidden;}

/* Base Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:16px 32px;border-radius:12px;font-weight:600;font-size:15.5px;border:1px solid transparent;transition:all .3s cubic-bezier(0.4, 0, 0.2, 1);white-space:nowrap;}
.btn-primary{background:var(--orange);color:#FFFFFF;box-shadow:0 8px 20px rgba(249,115,22,.25);}
.btn-primary:hover{background:var(--orange-light);box-shadow:0 12px 28px rgba(249,115,22,.35);transform:translateY(-3px);}
.btn-ghost{background:transparent;color:var(--white);border-color:var(--line-strong);}
.btn-ghost:hover{border-color:var(--orange);color:var(--orange);background:var(--orange-dim);}

/* ========================================================= */
/* --- REDESIGNED HEADER --- */
/* ========================================================= */
header {position: absolute;top: 0; left: 0; right: 0;z-index: 1000;padding: 24px 0;transition: .4s ease;background: transparent;}
header.scrolled {background: rgba(255,255,255,.95);backdrop-filter: blur(20px);border-bottom: 1px solid var(--line);box-shadow: var(--shadow-sm);padding: 12px 0;}

header .wrap { max-width: 100%; padding: 0 60px; }
nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.logo { display: flex; align-items: center; flex: 1; justify-content: flex-start; }
.logo img {
  height: 55px; 
  width: auto; 
  clip-path: inset(4px 0 0 0); 
  margin-top: 0; 
  opacity: 0; 
  transform-origin: left center; 
  animation: revealTopLogo 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) 0.6s forwards;
}
@keyframes revealTopLogo { 
  0% { opacity: 0; transform: translateY(20px) scale(1.8); } 
  100% { opacity: 1; transform: translateY(0) scale(1.8); } 
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
  background: var(--orange); 
  padding: 6px; 
  border-radius: 100px;
  flex: 0 1 auto;
  margin: 0 auto;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9); 
  padding: 8px 20px; 
  border-radius: 100px;
  transition: .3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.2);
}

.nav-links a.active {
  background: #FFFFFF; 
  color: var(--orange); 
}

/* Nav CTA & Hamburger */
.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  justify-content: flex-end;
}

.btn-lets-work {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--orange);
  border-radius: 100px;
  padding: 6px 6px 6px 24px; 
  transition: transform 0.2s ease;
  border: none;
}

.btn-lets-work .text {
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.05em;
}

.btn-lets-work .icon-circle {
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.15); 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 20px;
  transition: 0.3s;
}

.btn-lets-work:hover {
  transform: scale(1.05);
  background: var(--orange-light);
}

.btn-lets-work:hover .icon-circle {
  background: #FFFFFF;
  color: var(--orange);
  transform: rotate(90deg);
}

/* Hidden Burger by default on Desktop */
.burger {
  display: none;
  background: var(--orange);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  z-index: 1001;
  cursor: pointer;
}
.burger span {
  width: 20px;
  height: 2px;
  background: #FFFFFF;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* NEW HERO */
.center-hero {
  padding: 100px 0 40px; 
  background: var(--bg-2);
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.15; 
  pointer-events: none;
}
.hero-overlay {position: absolute; top:0; left:0; width: 100%; height: 100%; opacity: 0.05; mix-blend-mode: multiply; pointer-events: none; background-size: cover; background-position: center;}
.text-center { text-align: center; width: 100%; display: flex; flex-direction: column; align-items: center; position: relative; z-index: 5;}

.hero-title { font-size: clamp(28px, 4.5vw, 48px); max-width: 900px; margin: 0 auto 5px auto; color: var(--white); line-height: 1.15; }
.hero-title .accent{background: linear-gradient(to right, var(--orange) 20%, var(--pink) 50%, var(--orange) 80%);background-size: 200% auto;color: transparent;-webkit-background-clip: text;background-clip: text;animation: textShine 4s linear infinite;}

.card-spread-container {
  position: relative;
  width: 100%;
  max-width: 1400px; 
  height: 280px;
  margin: 10px auto 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  z-index: 2;
}

.spread-card {
  position: absolute;
  width: 170px; 
  height: 240px; 
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 16px 32px rgba(0,0,0,0.1);
  transform-origin: bottom center;
  will-change: transform, opacity;
}

.small-lead {
  font-size: 15px !important; 
  max-width: 700px;
  margin: 0 auto 24px auto;
  color: var(--gray);
}
.center-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.pill-btn {
  border-radius: 100px !important; 
  padding: 12px 28px !important; 
  font-size: 14px !important;
}
.btn-ghost.pill-btn {
  background: #FFFFFF;
  border: 1px solid var(--line-strong);
  color: var(--white);
  box-shadow: var(--shadow-sm);
}
.btn-ghost.pill-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--bg-2);
}

/* About */
.about-bento-grid {display: grid;grid-template-columns: 0.9fr 1.1fr;gap: 40px; align-items: center;}
.bento-visual {position: relative; min-height: 500px; border-radius: 32px; display: flex; align-items: center; justify-content: center;}
.float-img { border-radius: 20px; box-shadow: var(--shadow-lg); object-fit: cover; position: absolute; }
.img-main { width: 80%; height: 350px; left: 0; top: 10%; z-index: 2; border: 4px solid white; }
.img-sub { width: 60%; height: 250px; right: 0; bottom: 0; z-index: 1; opacity: 0.9; }
.bento-content {background: var(--card);border: 1px solid var(--line);border-radius: 32px;padding: 56px;box-shadow: var(--shadow-sm);display: flex;flex-direction: column;justify-content: center;}
.bento-content .lead-text {font-size: 20px;color: var(--white);font-weight: 500;margin-bottom: 16px;line-height: 1.5;}
.bento-content .sub-text {font-size: 16px;color: var(--gray);margin-bottom: 40px;}
.bento-stats {display: grid;grid-template-columns: repeat(3, 1fr);gap: 24px;border-top: 1px solid var(--line);padding-top: 32px;}
.bento-stats .num {font-family: 'Space Grotesk', sans-serif;font-size: 36px;font-weight: 700;color: var(--orange);line-height: 1;margin-bottom: 8px;}
.bento-stats .lbl {font-size: 14px;color: var(--gray-dim);text-transform: uppercase;letter-spacing: 0.05em;font-weight: 600;}

/* Process */
.process-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center;}
.process-visual {position: relative; height: 100%; min-height: 400px; display: flex; align-items: center;}
.process-img { width: 100%; height: auto; max-height: 500px; border-radius: 24px; border: 4px solid white; position: relative;}
.process-track{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.process-step{border:1px solid var(--line);border-radius:var(--radius);padding:32px;background:var(--card);text-align:left;box-shadow:var(--shadow-sm);transition:0.3s;}
.process-step .num{display:inline-flex;width:40px;height:40px;border-radius:10px;background:var(--orange-dim);align-items:center;justify-content:center;font-family:'Space Grotesk';color:var(--orange);font-size:18px;font-weight:700;margin-bottom:20px;}
.process-step h4{font-size:18px;margin-bottom:10px;}
.process-step p{font-size:14.5px;color:var(--gray);}

/* Section Headings */
.sec-head{max-width:680px;margin-bottom: 40px; }
.sec-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.sec-head h2{font-size:clamp(32px,4vw,48px);color:var(--white);}

/* SERVICES SHOWCASE */
.services-showcase {position: relative;width: 100%;height: 80vh;min-height: 600px;max-height: 900px;border-radius: 32px;overflow: hidden;box-shadow: 0 24px 60px rgba(0,0,0,0.1);color: #fff;}
.showcase-bg {position: absolute;top: 0; left: 0; width: 100%; height: 100%;z-index: 0;overflow: hidden;}
.bg-layer {position: absolute;top: -50%; left: -50%; width: 200%; height: 200%;opacity: 0;transition: opacity 1.2s ease-in-out;animation: fluidBg 20s linear infinite;}
.bg-layer.active { opacity: 1; }
.bg-1 { background: radial-gradient(circle at 40% 60%, #4F46E5, #0ea5e9, #8B5CF6); } 
.bg-2 { background: radial-gradient(circle at 60% 40%, #EA6A0C, #ec4899, #f43f5e); } 
.bg-3 { background: radial-gradient(circle at 50% 50%, #8B5CF6, #14b8a6, #3b82f6); } 
.noise-overlay {position: absolute;top: 0; left: 0; width: 100%; height: 100%;background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");opacity: 0.35;mix-blend-mode: overlay;pointer-events: none;z-index: 1;}
@keyframes fluidBg {0% { transform: rotate(0deg) scale(1); }50% { transform: rotate(180deg) scale(1.1); }100% { transform: rotate(360deg) scale(1); }}
.sc-top-left {position: absolute;top: 60px;left: 60px;max-width: 320px;font-size: 16px;line-height: 1.5;color: rgba(255,255,255,0.95);z-index: 2;font-weight: 500;}
.showcase-content {position: relative;z-index: 2;width: 100%;height: 100%;text-align: center;}
.sc-item {position: absolute;top: 50%;left: 50%;transform: translate(-50%, -40%);width: 100%;padding: 0 20px;opacity: 0;transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);pointer-events: none;}
.sc-item.active {opacity: 1;transform: translate(-50%, -50%);pointer-events: auto;}
.sc-item h2 { font-size: clamp(48px, 8vw, 110px); margin-bottom: 24px; color: #fff; line-height: 1.05; font-weight: 600; letter-spacing: -0.02em; }
.sc-item p { font-size: 18px; max-width: 580px; margin: 0 auto; color: rgba(255,255,255,0.9); font-weight: 400;}
.showcase-tabs-bar {position: absolute;bottom: 0;left: 0;width: 100%;display: flex;justify-content: space-between;align-items: center;padding: 0 40px;height: 90px;background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);z-index: 2;}
.sc-tab {background: transparent;border: none;color: rgba(255,255,255,0.6);padding: 12px 28px;font-size: 15px;font-family: 'Inter', sans-serif;font-weight: 500;cursor: pointer;transition: all 0.3s ease;border-radius: 100px;}
.sc-tab:hover { color: #fff; }
.sc-tab.active {background: #FFFFFF;color: #000;font-weight: 600;box-shadow: 0 4px 16px rgba(0,0,0,0.1);transform: scale(1.05);}

/* PORTFOLIO */
.portfolio-full-wrap {width: 100%;padding: 0 32px; max-width: 1800px; margin: 0 auto;}
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.portfolio-card {position: relative;aspect-ratio: 16/10; border-radius: 20px;overflow: hidden;background: var(--bg-2);box-shadow: var(--shadow-sm);transition: transform 0.3s ease;}
.portfolio-card.full-width {grid-column: 1 / -1; aspect-ratio: 21/9; }
.portfolio-video {width: 100%; height: 100%; object-fit: cover; }
.portfolio-overlay {position: absolute;top: 0; left: 0; right: 0; bottom: 0;background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);display: flex;flex-direction: column;justify-content: flex-end;padding: 40px;z-index: 2;pointer-events: none;}
.portfolio-text {transform: translateY(20px);transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);}
.portfolio-text h4 {font-size: 32px;color: #fff;margin-bottom: 8px;}
.portfolio-text p {font-size: 16px;color: rgba(255,255,255,0.85);margin: 0;max-width: 600px;}
.portfolio-card:hover .portfolio-text {transform: translateY(0);}

/* ========================================================= */
/* --- PRICING SECTION --- */
/* ========================================================= */
#pricing {
  position: relative;
  padding: 60px 0; 
  background-image: url('assets/pricing-bg.jpg');
  background-size: cover; 
  background-position: center bottom; 
  background-repeat: no-repeat;
}
#pricing .sec-head { margin-bottom: 40px; }
.pricing-grid {
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 24px;
  max-width: 1100px; 
  margin: 0 auto;
}
.pricing-card {
  background: var(--card); 
  border: 1px solid var(--line); 
  border-radius: 24px; 
  padding: 32px 28px; 
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); 
  display: flex; 
  flex-direction: column; 
  position: relative;
}
.pricing-card.popular {border: 2px solid var(--orange); box-shadow: 0 20px 60px rgba(249, 115, 22, 0.15); transform: translateY(-5px);}
.popular-badge {position: absolute; top: -15px; right: 40px; background: var(--orange); color: #fff; font-size: 13px; font-weight: 700; padding: 6px 16px; border-radius: 100px;}
.plan-name {font-size: 14px; font-weight: 700; letter-spacing: 0.1em; color: var(--gray); margin-bottom: 16px; text-transform: uppercase;}
.plan-price {font-family: 'Space Grotesk', sans-serif; font-size: 48px; font-weight: 700; color: var(--white); margin-bottom: 16px; display: flex; align-items: baseline; line-height: 1;}
.plan-price span {font-size: 20px; color: var(--gray); font-weight: 500;}
.plan-desc {font-size: 15px; color: var(--gray); margin-bottom: 32px; min-height: 45px;}
.plan-features {list-style: none; margin-bottom: 48px; flex-grow: 1;}
.plan-features li {font-size: 15px; color: var(--white); margin-bottom: 16px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid var(--line); padding-bottom: 16px;}
.plan-features li:last-child {border-bottom: none; padding-bottom: 0;}

/* ========================================================= */
/* --- FIXED TWO-COLUMN FAQ SECTION --- */
/* ========================================================= */
.faq-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
}
.faq-bg-video {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0; opacity: 1; 
}
.faq-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(255, 255, 255, 0.25); z-index: 1;
}
.faq-layout {
  position: relative; z-index: 5;
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start;
}
.faq-main-title {
  font-size: clamp(40px, 5vw, 60px); margin-bottom: 24px; color: var(--white); line-height: 1.1; letter-spacing: -0.04em;
}
.faq-contact-card {
  padding: 0; margin-top: 140px; background: transparent; border: none; box-shadow: none;
}
.faq-contact-card h3 { font-size: 24px; margin-bottom: 12px; color: var(--white); }
.faq-contact-card p { color: var(--white); margin-bottom: 24px; font-size: 15px; max-width: 90%; opacity: 0.9; }
.btn-faq { border-radius: 12px !important; padding: 14px 28px !important; width: max-content; }
.faq-scroll-container {
  max-height: 500px; overflow-y: auto; padding-right: 20px; display: block; 
}
.faq-scroll-container::-webkit-scrollbar { width: 6px; }
.faq-scroll-container::-webkit-scrollbar-track { background: var(--line); border-radius: 10px; }
.faq-scroll-container::-webkit-scrollbar-thumb { background: var(--orange-dim); border-radius: 10px; }
.faq-scroll-container::-webkit-scrollbar-thumb:hover { background: var(--orange); }

.faq-item {
  background: rgba(255, 218, 185, 0.7); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: 0.3s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03); margin-bottom: 16px; 
}
.faq-item:hover { border-color: var(--orange-dim); }
.faq-question {
  width: 100%; text-align: left; padding: 24px 32px; background: transparent; border: none;
  font-size: 16px; font-weight: 600; color: var(--white); display: flex; justify-content: space-between;
  align-items: center; font-family: 'Inter', sans-serif;
}
.faq-question::after {
  content: "▼"; font-size: 18px; color: var(--orange); transition: 0.3s; background: var(--orange-dim);
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 8px;
}
.faq-question.active::after { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 32px 24px; color: var(--gray); font-size: 15px; margin: 0; }

/* ========================================================= */
/* --- SINGLE BACKGROUND CONTACT SECTION WITH GLASS FORM --- */
/* ========================================================= */
.contact-section-split {
  position: relative; width: 100%; padding: 80px 0 140px; 
  background-image: url('assets/contact-bg.jpg'); background-size: cover;
  background-position: center; background-attachment: fixed;
}
.contact-section-split::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(15, 23, 42, 0.6); z-index: 1;
}
.contact-wrap { position: relative; z-index: 2; }
.contact-layout { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }

.split-heading {
  font-size: clamp(36px, 4vw, 56px); color: #FFFFFF; margin-bottom: 40px; line-height: 1.1; letter-spacing: -0.02em;
}

.contact-info-split { display: flex; flex-direction: column; gap: 32px; }
.contact-info-split .info-block {display: flex; gap: 16px; align-items: flex-start;}
.contact-info-split .info-block .icon {
  width: 44px; height: 44px; background: rgba(249, 115, 22, 0.2); color: var(--orange); 
  border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.contact-info-split .info-block h5 {font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 4px; letter-spacing: 0.05em;}
.contact-info-split .info-block p {font-size: 15px; color: #FFFFFF; font-weight: 500; margin: 0;}

.contact-info-split .social-row { display: flex; gap: 12px; }
.contact-info-split .social-row a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.1); color: #FFFFFF;
  display: flex; align-items: center; justify-content: center; font-size: 14px; transition: 0.3s; text-decoration: none;
}
.contact-info-split .social-row a:hover { background: var(--orange); color: #FFFFFF; }

.contact-form-wrap {
  background: rgba(249, 115, 22, 0.45); backdrop-filter: blur(24px) saturate(120%); -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.3); border-top: 1.5px solid rgba(255, 255, 255, 0.7);
  border-left: 1.5px solid rgba(255, 255, 255, 0.7); border-radius: 32px; padding: 48px; box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}
.contact-form-title { color: #FFFFFF; font-size: 28px; margin-bottom: 24px; text-shadow: 0 2px 4px rgba(0,0,0,0.1); }
.contact-form {display: flex; flex-direction: column; gap: 20px;}
.form-row {display: grid; grid-template-columns: 1fr 1fr; gap: 20px;}
.form-group {display: flex; flex-direction: column; gap: 8px;}
.form-group label {font-size: 13px; font-weight: 600; color: #FFFFFF; text-shadow: 0 1px 2px rgba(0,0,0,0.1);}

.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 16px; border: 1px solid rgba(255,255,255,0.4); border-radius: 12px; 
  background: rgba(0, 0, 0, 0.25); color: #FFFFFF; font-size: 14px; font-family: 'Inter', sans-serif; outline: none; transition: 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.7); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: #FFFFFF; background: rgba(0,0,0,0.4); }

.contact-form-wrap .btn-primary {
  background: #FFFFFF; color: var(--orange); border-radius: 100px; padding: 16px 32px;
  font-size: 16px; margin-top: 12px; box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.contact-form-wrap .btn-primary:hover { background: var(--white); color: #FFFFFF; }

/* ========================================================= */
/* --- NEWSLETTER SECTION --- */
/* ========================================================= */
#newsletter { position: relative; z-index: 20; margin-top: -80px; margin-bottom: -50px; padding: 0; }
#newsletter .wrap { max-width: 100%; padding: 0 4vw; }
.newsletter-card {
  background: rgba(234, 88, 12, 0.45); backdrop-filter: blur(24px) saturate(120%); -webkit-backdrop-filter: blur(24px) saturate(120%);
  border: 1px solid rgba(255, 255, 255, 0.2); border-top: 1.5px solid rgba(255, 255, 255, 0.7); 
  border-left: 1.5px solid rgba(255, 255, 255, 0.7); border-radius: 40px; padding: 60px 40px; 
  width: 100%; max-width: 1600px; margin: 0 auto; text-align: center; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
  position: relative; overflow: hidden; 
}
.newsletter-card .eyebrow-text { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; display: block; color: #FFFFFF !important; opacity: 1 !important; }
.newsletter-card h3 { font-size: clamp(32px, 5vw, 48px); margin-bottom: 16px; color: #FFFFFF !important; font-weight: 800; opacity: 1 !important; text-shadow: 0 2px 10px rgba(0,0,0,0.15); }
.newsletter-card p { font-size: 16px; color: #FFFFFF !important; max-width: 600px; margin: 0 auto 40px auto; opacity: 1 !important; text-shadow: 0 1px 5px rgba(0,0,0,0.15); }

.newsletter-form {
  display: flex; width: 100%; max-width: 540px; margin: 0 auto; background: rgba(0, 0, 0, 0.2); 
  border: 1px solid rgba(255, 255, 255, 0.3); border-radius: 100px; padding: 6px; position: relative; z-index: 2;
}
.newsletter-form input { background: transparent; border: none; padding: 16px 24px; color: #FFFFFF; flex-grow: 1; font-size: 15px; outline: none; }
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.8); }
.newsletter-form button.btn-subscribe { background: #FFFFFF; color: var(--orange); border-radius: 100px; padding: 14px 32px; font-weight: 700; font-size: 15px; border: none; cursor: pointer; transition: 0.3s; }
.newsletter-form button.btn-subscribe:hover { background: var(--white); color: #FFFFFF; }

/* ========================================================= */
/* --- REDESIGNED FOOTER --- */
/* ========================================================= */
.site-footer {
  position: relative; padding: 80px 0 0 0; background: #B85D30; border-radius: 80px 80px 0 0; 
  overflow: hidden; margin-top: -40px; z-index: 10;
}
.footer-content-wrap { position: relative; z-index: 2; display: flex; flex-direction: column; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 20px; 
  width: 100%; max-width: var(--maxw); margin: 0 auto; padding-left: 32px; padding-right: 32px;
}

.footer-logo { height: 50px; margin-bottom: 24px; filter: brightness(0); }
.footer-brand p { color: rgba(0,0,0,0.8); font-size: 15px; max-width: 320px; margin-bottom: 32px; font-weight: 500; }
.footer-col h4 { font-size: 18px; margin-bottom: 32px; color: #000000; font-weight: 700; position: relative; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: -12px; width: 25px; height: 2px; background: #333333; }
.footer-col h4::before { content: ""; position: absolute; left: 30px; bottom: -12px; width: 6px; height: 2px; background: #333333; }
.footer-col li { margin-bottom: 18px; }
.footer-col a { font-size: 15px; color: rgba(0,0,0,0.6); transition: .2s; font-weight: 500; }
.footer-col a:hover { color: #000000; }

.footer-socials { display: flex; gap: 12px; margin-top: 24px; }
.footer-socials a {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(0,0,0,0.05); display: flex; 
  align-items: center; justify-content: center; color: #000; font-size: 14px; transition: 0.3s;
}
.footer-socials a:hover { background: var(--orange); color: #fff; }

.footer-video-spacer { width: 100%; height: 600px; }
.footer-bg-video {
  position: absolute; bottom: 0; left: 0; width: 100%; height: 600px; object-fit: cover; object-position: center; 
  z-index: 0; mix-blend-mode: multiply; -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%); mask-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 100%);
}

.footer-bottom {
  display: flex; justify-content: center; align-items: center; padding: 24px 0; border-top: 1px solid rgba(0,0,0,0.1); 
  color: rgba(0,0,0,0.9); font-size: 15px; font-weight: 600; background: transparent; position: relative; z-index: 2;
}

#toTop{position:fixed;bottom:32px;right:32px;width:52px;height:52px;border-radius:50%;background:var(--orange);color:#FFFFFF;display:flex;align-items:center;justify-content:center;font-size:20px;font-weight:700;border:none;opacity:0;pointer-events:none;transition:.3s;z-index:900;}
#toTop.show{opacity:1;pointer-events:auto;}


/* ========================================================= */
/* --- 100% RESPONSIVE MOBILE & TABLET OPTIMIZATION --- */
/* ========================================================= */

/* Large Tablets & Small Laptops (<= 1024px) */
@media (max-width: 1024px) {
  .wrap { padding: 0 4vw; }
  .bento-content { padding: 40px; }
  .footer-grid { padding-left: 0; padding-right: 0; gap: 24px; }
}

/* Tablet Layout (<= 960px) */
@media (max-width: 960px) {
  /* Header & Modern Slide-down Menu */
  header .wrap { padding: 0 4vw; }
  .burger { display: flex; } 
  .btn-lets-work .text { display: none; } 
  .btn-lets-work { padding: 6px; border-radius: 50%; } 
  
  .nav-links {
    position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column; justify-content: center; align-items: center;
    gap: 32px; opacity: 0; pointer-events: none; transition: 0.4s ease; z-index: 1000;
    border-radius: 0; padding: 0; margin: 0;
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links a { font-size: 24px; font-weight: 700; color: var(--white); padding: 12px 24px; background: transparent; }
  .nav-links a:hover, .nav-links a.active { background: var(--orange-dim); color: var(--orange); }

  .burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .burger.open span:nth-child(2) { opacity: 0; }
  .burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -5px); }

  /* Section Layouts to 1 Column */
  .about-bento-grid, .faq-layout, .contact-layout { 
    grid-template-columns: 1fr; 
    gap: 40px; 
  }
  
  /* Process Section stays 2 column on tablet */
  .process-layout { grid-template-columns: 1fr; gap: 40px; }
  .process-track { grid-template-columns: 1fr 1fr; gap: 24px; } 

  /* Pricing Carousel for Mobile (Swipe Effect) */
  .pricing-grid { 
    display: flex !important; 
    overflow-x: auto !important; 
    scroll-snap-type: x mandatory; 
    padding-bottom: 24px; 
    gap: 24px; 
    -webkit-overflow-scrolling: touch;
  }
  .pricing-grid::-webkit-scrollbar { height: 6px; }
  .pricing-grid::-webkit-scrollbar-track { background: var(--line); border-radius: 10px; }
  .pricing-grid::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 10px; }
  .pricing-card { min-width: 320px; scroll-snap-align: center; flex: 0 0 auto; }
  
  /* Portfolio Adjustments */
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.full-width { aspect-ratio: 16/10; }
}

/* Tablets Portrait & Medium Phones (<= 768px) */
@media (max-width: 768px) {
  /* FIX: Hero Overlap Fix (Cards pull up, text pushed down) */
  .center-hero { padding: 120px 0 40px; }
  .hero-title { font-size: clamp(32px, 8vw, 48px); margin-bottom: 24px; }
  .card-spread-container { 
    transform: scale(0.60); 
    transform-origin: top center; 
    height: 160px; 
    margin-top: 20px; 
    margin-bottom: 20px; 
  }
  
  /* FIX: Logo pushed to corner */
  header .wrap { padding: 0 20px !important; }
  
  /* About Section Shrinking */
  .bento-visual { min-height: 400px; border-radius: 24px; }
  .img-main { width: 90%; height: 280px; top: 5%; left: 5%; }
  .img-sub { width: 75%; height: 220px; right: 5%; bottom: 5%; }
  .bento-content { padding: 32px 24px; border-radius: 24px; }
  
  /* Services Showcase Overlap Fix */
  .services-showcase { min-height: 550px; height: 75vh; padding-bottom: 0; border-radius: 24px; }
  .sc-top-left { top: 24px; left: 24px; transform: none; text-align: left; max-width: 85%; font-size: 13px; position: absolute; padding: 0; }
  .sc-item { top: 45%; width: 100%; padding: 0 20px; transform: translate(-50%, -50%); }
  .sc-item h2 { font-size: clamp(32px, 10vw, 56px); }
  .showcase-tabs-bar { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); height: auto; padding: 16px 20px; flex-wrap: wrap; justify-content: center; gap: 8px; margin-top: 0; }
  .sc-tab { font-size: 13px; padding: 10px 16px; width: auto; min-height: 40px; flex: 1 1 auto; }
  
  /* Process Settings */
  .process-visual { min-height: 300px; }
  .process-img { max-height: 350px; }
  
  /* FAQ Touch targets */
  .faq-scroll-container { max-height: 60vh; }
  .faq-question { padding: 16px 20px; font-size: 15px; min-height: 48px; }
  .faq-answer p { padding: 0 20px 20px; font-size: 14px; }
  
  /* Footer Layout - Side by Side Alignment on Tablet/Mobile */
  .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr) !important; gap: 24px; padding-left: 24px; padding-right: 24px; }
  .footer-brand { grid-column: 1 / -1; margin-left: -12px; }
  .footer-brand p { margin-bottom: 24px; }
}

/* Small Phones (<= 600px) */
@media (max-width: 600px) {
  /* FIX: Logo extremely pushed to edge */
  header .wrap { padding: 0 12px !important; }
  .logo { margin-left: -4px; }
  .nav-cta { margin-right: -4px; }

  /* FIX: Hero Fixes (Cards Scale Down Correctly) */
  .hero-title { font-size: 32px; margin-bottom: 24px; }
  .card-spread-container { 
    transform: scale(0.45); 
    transform-origin: top center; 
    height: 120px; 
    margin-top: 20px; 
    margin-bottom: 20px; 
  }
  
  /* Process Tracks stays 2 columns but gap reduced */
  .process-track { grid-template-columns: 1fr 1fr; gap: 16px; }
  
  /* Form Wrappers (Contact) */
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .contact-form-wrap { padding: 32px 20px; border-radius: 24px; }
  .contact-form-title { font-size: 24px; }
  .contact-left-content { padding: 0; }
  
  /* Newsletter Fixes (Stacks Inputs) */
  .newsletter-card { padding: 40px 20px; border-radius: 24px; }
  .newsletter-card h3 { font-size: 28px; }
  .newsletter-form { flex-direction: column; background: transparent; border: none; padding: 0; }
  .newsletter-form input { 
    background: rgba(0, 0, 0, 0.4); border: 1px solid rgba(255, 255, 255, 0.3); 
    border-radius: 100px; margin-bottom: 12px; width: 100%; text-align: center; 
  }
  .newsletter-form button.btn-subscribe { width: 100%; min-height: 48px; }
  
  /* Footer Adjustments */
  .site-footer { padding: 60px 0 0 0; border-radius: 40px 40px 0 0; }
  .footer-col h4 { font-size: 14px; margin-bottom: 16px; }
  .footer-col h4::after { width: 16px; bottom: -8px; }
  .footer-col h4::before { left: 20px; width: 4px; bottom: -8px; }
  .footer-col a { font-size: 13px; }
  .footer-video-spacer, .footer-bg-video { height: 300px; }
}

/* Extra Small Phones (<= 480px) */
@media (max-width: 480px) {
  /* Force Stack Hero Buttons */
  .center-actions { flex-direction: column; width: 100%; }
  .center-actions .btn { width: 100%; min-height: 48px; }
  
  /* FIX: Final adjustment for smallest screen Hero Overlap */
  .card-spread-container { 
    transform: scale(0.38); 
    transform-origin: top center; 
    height: 100px; 
    margin-top: 24px; 
    margin-bottom: 24px; 
  }
  
  /* About Stats Fix */
  .bento-stats { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .bento-stats > div { display: flex; flex-direction: column; align-items: center; }
  .bento-visual { min-height: 250px; }
  .img-main { width: 100%; height: 250px; top: 0; left: 0; }
  .img-sub { display: none; }
  
  /* Process Step Tweaks (Keeping 2 columns) */
  .process-track { grid-template-columns: 1fr 1fr !important; gap: 12px; }
  .process-step { padding: 16px; }
  .process-step h4 { font-size: 15px; }
  .process-step p { font-size: 12px; }
  
  /* Pricing adjustments */
  .pricing-card { min-width: 85vw; padding: 24px; }
  
  /* FAQ Adjustments */
  .faq-main-title { font-size: 32px; }
  
  /* Services Showcase Tab Wrap */
  .sc-tab { min-height: 44px; }

  /* Footer specific for ultra small */
  .footer-grid { padding-left: 16px; padding-right: 16px; gap: 12px; }
  .footer-col h4 { font-size: 13px; }
  .footer-col a { font-size: 12px; }
}

/* Micro Phones (<= 360px - 320px) */
@media (max-width: 360px) {
  .hero-title { font-size: 26px; }
  .contact-form-wrap { padding: 24px 16px; }
  .bento-content { padding: 24px 16px; }
  .newsletter-card { padding: 32px 16px; }
  .wrap { padding: 0 16px; }
}