/* ===================================================
   DREAM DESK OFFICES — GLASSMORPHIC DARK THEME
   Clean dark BG · VIVID accents · Glass sections
   =================================================== */

:root {
  /* NEON vivid palette */
  --primary: #101935;
  --accent: #00FFD1;
  --accent-glow: #00FFD1;
  --secondary: #D946EF;
  --tertiary: #FF3399;

  /* Background — visible dark blue (NOT black) */
  --bg: #1A2550;

  /* Text */
  --text: #F8FAFF;
  --text-muted: rgba(248, 250, 255, 0.7);

  /* Gradients — neon */
  --gradient-accent: linear-gradient(135deg, #00FFD1, #D946EF);
  --gradient-warm: linear-gradient(135deg, #D946EF, #FF3399);
  --gradient-full: linear-gradient(135deg, #00FFD1, #D946EF, #FF3399);

  /* Glass — VERY visible */
  --glass: rgba(255, 255, 255, 0.16);
  --glass-border: rgba(255, 255, 255, 0.28);
  --glass-hover: rgba(255, 255, 255, 0.24);
  --glass-hover-border: rgba(0, 255, 209, 0.55);

  /* Glow — STRONG */
  --glow-accent: 0 0 30px rgba(0, 255, 209, 0.4), 0 0 80px rgba(0, 255, 209, 0.12);
  --glow-purple: 0 0 30px rgba(217, 70, 239, 0.35), 0 0 80px rgba(217, 70, 239, 0.1);

  /* Typography */
  --font-heading: 'DM Serif Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Shadows */
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.5);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Keyframes ---- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollShowcase {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

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

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(40px, -30px); }
  50% { transform: translate(-20px, -50px); }
  75% { transform: translate(-40px, 20px); }
}

/* ---- Reset ---- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 100px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Fixed background glow orbs — everything scrolls over these */
.bg-orbs {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.orb-teal {
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(0, 255, 209, 0.65) 0%, transparent 65%);
  top: -200px; right: -100px;
  animation: orbFloat 22s ease-in-out infinite;
}
.orb-purple {
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(217, 70, 239, 0.55) 0%, transparent 65%);
  bottom: -100px; left: -100px;
  animation: orbFloat 28s ease-in-out infinite reverse;
}
.orb-pink {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255, 51, 153, 0.45) 0%, transparent 65%);
  top: 40%; left: 25%;
  animation: orbFloat 25s ease-in-out infinite 5s;
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
}
h1 { font-size: 3.5rem; margin-bottom: 1.5rem; }
h2 { font-size: 2.75rem; margin-bottom: 1.25rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: rgba(255,255,255,0.75); }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; border-radius: 12px; }

/* ---- Utilities ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
section { padding: 4rem 0; position: relative; z-index: 1; }
.text-center { text-align: center; }
.max-w-800 { max-width: 800px; margin-inline: auto; }
.mt-12 { margin-top: 3rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-6 { margin-top: 1.5rem; }
.w-full { width: 100%; }
.mx-auto { margin-inline: auto; }
.text-white { color: #fff !important; }
.position-relative { position: relative; z-index: 2; }
.subtitle { font-size: 1.15rem; color: var(--text-muted); }
.opacity-90 { opacity: 0.9; }

.grid { display: grid; gap: 2rem; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-auto { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.align-items-center { align-items: center; }
.lg-gap { gap: 2.5rem; }

.clean-list { list-style: none; }
.clean-list li { margin-bottom: 0.5rem; display: flex; align-items: flex-start; gap: 0.75rem; }

.section-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* ---- Glass Panel (reusable) ---- */
.glass {
  background: var(--glass);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
}

/* ---- Scroll Reveal ---- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.875rem 2rem; border-radius: 50px; font-weight: 600;
  cursor: pointer; border: none; font-family: var(--font-body);
  gap: 0.5rem; transition: var(--transition); position: relative; overflow: hidden;
}

.btn-primary {
  background: var(--gradient-accent);
  background-size: 200% 200%;
  color: #0D1B2A;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0, 245, 212, 0.3);
}
.btn-primary:hover {
  box-shadow: 0 4px 30px rgba(0, 245, 212, 0.5);
  transform: translateY(-2px);
  background-position: right center;
}

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-whatsapp { background-color: #25D366; color: white; }
.btn-whatsapp:hover { background-color: #20BA56; transform: translateY(-2px); box-shadow: 0 0 25px rgba(37,211,102,0.4); }

/* ---- Navigation ---- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%;
  padding: 1.25rem 0; z-index: 100; transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(16, 25, 53, 0.85);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

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

.logo { display: flex; align-items: center; }
.nav-logo { height: 50px; width: auto; object-fit: contain; transition: var(--transition); }

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a:not(.btn) {
  font-weight: 500; color: rgba(255,255,255,0.7); position: relative; font-size: 0.9rem;
}
.nav-links a:not(.btn):hover { color: var(--accent); }
.nav-links a:not(.btn)::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: var(--transition);
}
.nav-links a:not(.btn):hover::after { width: 100%; }

.btn-nav {
  padding: 0.6rem 1.5rem;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  color: white;
  border: 1px solid rgba(255,255,255,0.12);
}
.navbar.scrolled .btn-nav {
  background: var(--gradient-accent);
  color: #0D1B2A; font-weight: 700;
  border: none;
}
.btn-nav:hover {
  background: var(--gradient-accent);
  color: #0D1B2A; border-color: transparent;
  box-shadow: var(--glow-accent);
}

.mobile-toggle { display: none; background: none; border: none; color: white; cursor: pointer; }

.mobile-menu {
  position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
  background: rgba(16, 25, 53, 0.95);
  backdrop-filter: blur(28px);
  box-shadow: -10px 0 40px rgba(0,0,0,0.5);
  display: flex; flex-direction: column; padding: 6rem 2rem 2rem; gap: 2rem;
  transition: var(--transition); z-index: 90;
  border-left: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu.active { right: 0; }
.mobile-menu a { color: rgba(255,255,255,0.85); font-size: 1.25rem; font-weight: 600; }
.mobile-menu a:hover { color: var(--accent); }

/* ---- Hero ---- */
.hero {
  min-height: 75vh; display: flex; align-items: center;
  color: white; padding-top: 80px; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover; background-position: center; z-index: -2;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(to right, rgba(13,27,42,0.96) 0%, rgba(13,27,42,0.75) 50%, rgba(13,27,42,0.35) 100%);
  z-index: -1;
}
.hero-content { width: 100%; }
.hero-inner { max-width: 600px; }

.hero-eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 3px;
  color: #fff; margin-bottom: 1.25rem;
}
.hero-inner h1 { font-size: 3.2rem; color: white; line-height: 1.12; margin-bottom: 1.25rem; }
.hero-inner p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 2rem; color: white; line-height: 1.7; }
.hero-buttons { display: flex; gap: 1rem; }

/* ---- About Section ---- */
.primary-bg-section {
  padding: 4rem 0 9rem 0;
  overflow: visible;
  position: relative;
}

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

.about-text-content { margin-bottom: 2rem; }
.about-text-content h2 { color: white; margin-bottom: 1.5rem; font-size: 2.5rem; }
.about-text-content p { color: rgba(255,255,255,0.75); }
.about-buttons { display: flex; gap: 1rem; }

.about-cards-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.card {
  background: var(--glass);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 16px; padding: 12px; width: 70%;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--glow-accent);
  border-color: var(--glass-hover-border);
}
.card img { border-radius: 12px; width: 100%; height: 200px; object-fit: cover; }

.card-1 { z-index: 2; }
.card-2 { z-index: 3; align-self: flex-end; }
.card-3 { z-index: 1; width: 65%; }

.about-stats { display: flex; justify-content: space-between; margin-top: 2rem; color: white; padding-right: 2rem; }
.about-stats .stat { position: relative; text-align: center; }
.stat-accent { display: block; width: 32px; height: 3px; background: var(--gradient-full); border-radius: 2px; margin: 0 auto 0.6rem; }
.about-stats .stat h3 { font-size: 2.2rem; margin-bottom: 0.15rem; color: white; font-family: var(--font-heading); }
.about-stats .stat p { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; opacity: 0.5; margin-bottom: 0; color: white; }

.curved-trust-card {
  position: absolute; bottom: 0; right: 0; width: 55%;
  background: var(--glass);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  padding: 2.5rem 3.5rem; border-top-left-radius: 80px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
  display: flex; flex-direction: column; gap: 0.5rem; z-index: 1;
}
.curved-trust-card .stars { font-size: 1.25rem; letter-spacing: 2px; }
.curved-trust-card strong { color: white; font-size: 1.15rem; font-weight: 600; }

/* ---- Founder Section ---- */
.founder-section { padding: 5rem 0; }

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

.founder-photo img {
  border-radius: 24px; width: 100%;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--glass-border);
}
.founder-content { color: white; }
.founder-content h2 { margin-bottom: 0.5rem; }

.founder-title {
  color: var(--accent) !important;
  font-weight: 600; font-size: 1.1rem;
  margin-bottom: 1.5rem !important;
}
.founder-content p { color: rgba(255,255,255,0.7); line-height: 1.8; }

.founder-stats {
  display: flex; gap: 3rem; margin-top: 2rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.founder-stats div { text-align: center; }
.founder-stats strong { display: block; font-size: 1.5rem; color: var(--accent); font-family: var(--font-heading); margin-bottom: 0.25rem; }
.founder-stats span { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; }

/* ---- Solutions (Compact) ---- */
.solutions { padding: 3rem 0; }

.solutions-compact-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem; margin-top: 1.5rem;
}

.solution-card-compact {
  background: var(--glass);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  padding: 1.25rem 1.5rem; border-radius: 14px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: flex-start; gap: 1rem;
  transition: var(--transition);
}
.solution-card-compact:hover {
  background: var(--glass-hover);
  border-color: var(--glass-hover-border);
  box-shadow: var(--glow-accent);
}
.solution-card-compact h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; color: white; margin-bottom: 0.3rem; }
.solution-card-compact p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 0; line-height: 1.5; }

.c-icon-sm {
  width: 40px; height: 40px; min-width: 40px;
  background: var(--gradient-warm); color: white;
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
}
.c-icon-sm svg, .c-icon-sm i { width: 20px; height: 20px; }

/* ---- What's Included (Tabs) ---- */
.included { padding: 4rem 0; }
.included h2 { color: white; }

.tabs-nav {
  display: flex; gap: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 2rem; overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border: none; background: none;
  cursor: pointer; font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 600;
  color: var(--text-muted); white-space: nowrap;
  position: relative; transition: var(--transition);
  border-bottom: 3px solid transparent; margin-bottom: -1px;
}
.tab-btn:hover { color: var(--accent); }
.tab-btn.active { color: var(--accent); }
.tab-btn.active::after {
  content: ''; position: absolute; bottom: -1px; left: 0; right: 0;
  height: 3px; background: var(--accent); border-radius: 3px 3px 0 0;
}
.tab-btn i, .tab-btn svg { width: 18px; height: 18px; }

.tab-panels { min-height: 180px; }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
.tab-panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.tab-panel-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }

.included-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--glass);
  backdrop-filter: blur(24px);
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.included-item:hover {
  border-color: var(--glass-hover-border);
  background: var(--glass-hover);
}
.included-item i, .included-item svg { color: var(--accent); flex-shrink: 0; width: 20px; height: 20px; }
.included-item span { color: rgba(255,255,255,0.85); font-weight: 500; }

.custom-block {
  padding: 1.5rem;
  background: var(--glass);
  backdrop-filter: blur(24px);
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.custom-block:hover {
  box-shadow: var(--glow-purple);
  border-color: rgba(181, 55, 242, 0.2);
  background: var(--glass-hover);
}
.custom-block strong { display: block; color: var(--secondary); font-size: 1.15rem; margin-bottom: 0.5rem; }
.custom-block span { color: var(--text-muted); font-size: 0.95rem; }

/* ---- Why Us ---- */
.why-us {
  padding: 4rem 0;
  background: var(--glass);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}

.w-card {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem; border-radius: 16px; color: white;
  display: flex; align-items: center; gap: 1rem;
  transition: var(--transition);
}
.w-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--glass-hover-border);
}
.w-card h4 {
  font-family: var(--font-body); font-weight: 500; font-size: 1.05rem;
  margin: 0; display: flex; align-items: center; gap: 1rem; color: white;
}
.w-card i, .w-card svg { color: var(--accent); }

/* ---- Workspaces Showcase (Scrolling) ---- */
.workspaces-showcase { padding: 4rem 0; overflow: hidden; }

.showcase-track-wrapper {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  margin-top: 1rem;
}
.showcase-track {
  display: flex; gap: 1.5rem;
  animation: scrollShowcase 30s linear infinite;
  width: max-content;
}
.showcase-track:hover { animation-play-state: paused; }

.showcase-item {
  flex-shrink: 0; width: 420px; height: 300px;
  border-radius: 18px; overflow: hidden; position: relative;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.showcase-item:hover {
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: var(--glow-accent);
}
.showcase-item img { width: 100%; height: 100%; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.showcase-item:hover img { transform: scale(1.05); }

.showcase-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: white; font-weight: 600; font-size: 0.9rem;
}

/* ---- 3D Designs ---- */
.designs-section { padding: 4rem 0; }

.designs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }

.design-card {
  background: var(--glass);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  border-radius: 20px; overflow: hidden;
  transition: var(--transition);
}
.design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 50px rgba(0, 245, 212, 0.15);
  border-color: rgba(0, 245, 212, 0.25);
}
.design-img img { width: 100%; height: 240px; object-fit: cover; border-radius: 0; transition: transform 0.5s ease; }
.design-card:hover .design-img img { transform: scale(1.04); }

.design-info { padding: 1.5rem 1.75rem; }
.design-info h3 { color: white; font-size: 1.3rem; margin-bottom: 0.5rem; }
.design-location {
  display: flex; align-items: center; gap: 0.5rem;
  color: var(--accent) !important;
  font-size: 0.9rem; font-weight: 500;
  margin-bottom: 0.75rem !important;
}
.design-location i, .design-location svg { width: 16px; height: 16px; color: var(--accent); }
.design-info > p:last-child { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

/* ---- Location ---- */
.location { padding: 3.5rem 0; }
.location h2 { color: white; }
.location p { color: var(--text-muted); }
.loc-details { margin-top: 1.5rem; }
.loc-details p { color: white; }
.loc-details i, .loc-details svg { color: var(--accent); }
.loc-map iframe { border: 1px solid var(--glass-border); border-radius: 16px !important; }

/* ---- FAQ ---- */
.faq { padding: 3.5rem 0; }
.faq h2 { color: white; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: var(--glass);
  backdrop-filter: blur(24px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}
.faq-item:has(.faq-toggle.active) {
  border-left: 3px solid var(--accent);
}

.faq-toggle {
  width: 100%; padding: 1.25rem 1.75rem;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none;
  font-size: 1.05rem; font-weight: 600; color: white;
  text-align: left; cursor: pointer; transition: var(--transition);
}
.faq-toggle:hover { color: var(--accent); }
.faq-toggle i, .faq-toggle svg { transition: var(--transition); color: var(--text-muted); }
.faq-toggle.active i, .faq-toggle.active svg { transform: rotate(180deg); color: var(--accent); }

.faq-content {
  padding: 0 1.75rem; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease; color: var(--text-muted);
}
.faq-content.active { padding-bottom: 1.25rem; }

/* ---- Contact CTA ---- */
.contact-cta { padding: 5rem 0; color: white; }
.cta-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; }
.cta-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(26, 37, 80, 0.88);
  backdrop-filter: blur(8px);
  z-index: 1;
}
.contact-cta h2 { color: white; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; }

.form-card {
  padding: 2.5rem; border-radius: 20px; text-align: left;
  background: var(--glass);
  backdrop-filter: blur(28px); -webkit-backdrop-filter: blur(28px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-lg);
}
.form-card h3 { color: white; margin-bottom: 1.5rem; }
.form-card input, .form-card textarea {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px; font-family: var(--font-body); font-size: 1rem;
  background: rgba(255,255,255,0.04);
  color: white; transition: var(--transition);
}
.form-card input:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 245, 212, 0.1);
  background: rgba(255,255,255,0.06);
}
.form-card input::placeholder, .form-card textarea::placeholder { color: rgba(255,255,255,0.3); }

/* ---- Footer ---- */
.site-footer {
  background: rgba(8,12,22,0.8);
  backdrop-filter: blur(28px);
  color: white; padding: 4rem 0 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer-logo { font-family: var(--font-heading); font-size: 2rem; margin-bottom: 1rem; color: white; }
.footer-logo span { color: var(--accent); }
.footer-col p { color: rgba(255,255,255,0.5); }
.footer-col h4 { margin-bottom: 1.25rem; font-size: 1.2rem; color: white; }
.footer-col a { color: rgba(255,255,255,0.5); }
.footer-col a:hover { color: var(--accent); }

.social-links { display: flex; gap: 1rem; }
.social-links a {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.social-links a:hover {
  background: rgba(0, 245, 212, 0.1);
  border-color: rgba(0, 245, 212, 0.25);
}

.contact-list li { color: rgba(255,255,255,0.5); }
.contact-list i, .contact-list svg { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 3rem; padding-top: 1.5rem;
  color: rgba(255,255,255,0.25);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  h1 { font-size: 2.75rem; }
  h2 { font-size: 2.25rem; }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  .tab-panel-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .solutions-compact-grid { grid-template-columns: repeat(2, 1fr); }
  .designs-grid { grid-template-columns: repeat(2, 1fr); }
  .curved-trust-card { width: 100%; border-top-left-radius: 40px; border-top-right-radius: 40px; position: relative; margin-top: 2.5rem; }
  .primary-bg-section { padding-bottom: 3.5rem; }
  .founder-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .founder-photo img { max-width: 400px; margin: 0 auto; display: block; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.85rem; }
  section { padding: 2.5rem 0; }
  .grid-cols-2 { grid-template-columns: 1fr; }
  .grid-cols-3 { grid-template-columns: 1fr; }
  .tab-panel-grid { grid-template-columns: 1fr; }
  .tab-panel-grid.cols-3 { grid-template-columns: 1fr; }
  .solutions-compact-grid { grid-template-columns: 1fr; }
  .designs-grid { grid-template-columns: 1fr; }
  .about-new-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .card { width: 85%; }
  .card-3 { width: 80%; }
  .about-stats { flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .form-card .grid-cols-2 { grid-template-columns: 1fr; gap: 1rem !important; }
  .form-card textarea { margin-top: 1rem !important; }
  .tabs-nav { gap: 0.25rem; }
  .tab-btn { padding: 0.7rem 1rem; font-size: 0.85rem; }
  .showcase-item { width: 300px; height: 220px; }
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-photo img { max-width: 300px; }
  .founder-stats { gap: 2rem; }
}
