@font-face {
  font-display: swap;
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/jetbrains-mono-v24-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/jetbrains-mono-v24-latin-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  src: url('../fonts/playfair-display-v40-latin-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/playfair-display-v40-latin-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/playfair-display-v40-latin-700.woff2') format('woff2');
}

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

:root {
  --bg-base: #0a0a0c;
  --bg-surface: rgba(25, 25, 28, 0.6);
  --bg-surface-hover: rgba(35, 35, 40, 0.8);
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(255, 255, 255, 0.2);
  --text-main: #ffffff;
  --text-muted: #a0a0ab;
  --text-dark: #121214;
  --accent-light: #f4f4f5;
  --shadow-glass: 0 12px 40px 0 rgba(0, 0, 0, 0.5);
  --font-serif: 'Playfair Display', serif;
  --font-mono: 'JetBrains Mono', monospace;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  max-width: 100vw;
}

body {
  background-color: var(--bg-base);
  color: var(--text-muted);
  font-family: var(--font-mono);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overscroll-behavior-x: none;
  width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-main);
  font-weight: 400;
  line-height: 1.2;
  text-wrap: balance;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition);
}

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

.text-serif { font-family: var(--font-serif); }
.text-mono { font-family: var(--font-mono); }
.text-main { color: var(--text-main); }
.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-spacing {
  padding: 8rem 0;
}

.navbar {
  position: fixed;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 2rem;
  z-index: 1000;
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
}

.nav-brand .brand-logo {
  max-height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--text-main);
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: var(--text-main);
  transition: var(--transition);
}

.nav-links a:hover::after, .nav-links a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-icon {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  position: relative;
  transition: var(--transition);
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-main);
  left: 0;
  transition: var(--transition);
}

.mobile-menu-icon::before { top: -6px; }
.mobile-menu-icon::after { bottom: -6px; }

.mobile-menu-btn.active .mobile-menu-icon {
  background: transparent;
}
.mobile-menu-btn.active .mobile-menu-icon::before {
  top: 0;
  transform: rotate(45deg);
}
.mobile-menu-btn.active .mobile-menu-icon::after {
  bottom: 0;
  transform: rotate(-45deg);
}

.btn {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 1rem 2.5rem;
  border-radius: 100px;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--text-main);
  color: var(--text-dark);
}

.btn-primary:hover {
  background: transparent;
  color: var(--text-main);
  border-color: var(--text-main);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-glass {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  color: var(--text-main);
}

.btn-glass:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-glow);
}

.glass-card {
  background: var(--bg-surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  opacity: 0;
  transition: var(--transition);
}

.glass-card:hover {
  border-color: var(--border-glow);
  background: var(--bg-surface-hover);
}

.glass-card:not(.visible):hover {
  transform: translateY(-5px);
}

.glass-card:hover::before {
  opacity: 1;
}

.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@keyframes luxuryFloat {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.glass-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: inherit;
  box-shadow: 0 20px 50px 0 rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
  pointer-events: none;
}

@keyframes luxuryShadow {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.glass-card.visible:not(.card-flat) {
  animation: luxuryFloat 8s ease-in-out infinite;
}
.glass-card.visible:not(.card-flat)::after {
  animation: luxuryShadow 8s ease-in-out infinite;
}

.glass-card.visible.delay-2:not(.card-flat),
.glass-card.visible.delay-2:not(.card-flat)::after { animation-delay: 0.5s; }
.glass-card.visible.delay-3:not(.card-flat),
.glass-card.visible.delay-3:not(.card-flat)::after { animation-delay: 1s; }

@keyframes ambientPulse {
  0% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.05); }
  100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4rem;
  align-items: center;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.form-control {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-glass);
  border-radius: 0;
  padding: 1rem 0;
  color: var(--text-main);
  font-family: var(--font-mono);
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-bottom-color: var(--border-glow);
}

.form-control::placeholder {
  color: rgba(160, 160, 171, 0.5);
}

label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}

.premium-footer {
  border-top: 3px solid var(--border-glass);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  border-radius: 50px 50px 0 0;
}

.footer-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer-brand {
  transform: translateY(-8px);
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--text-main);
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-muted);
}

.footer-links a:hover,
.footer-links a.active {
  color: var(--text-main);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
}

.showcase-section {
    padding: 4rem 0 8rem 0;
    position: relative;
    z-index: 10;
}

.elite-search-container,
.elite-laptop,
.elite-mobile {
    position: relative;
    isolation: isolate;
}

.elite-search-container::before,
.elite-laptop::before,
.elite-mobile::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(189, 159, 103, 0.15) 0%, rgba(189, 159, 103, 0) 65%);
    z-index: -1;
    pointer-events: none;
    animation: premiumGlowSync 8s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

@keyframes premiumGlowSync {
    0% { opacity: 0.5; transform: translate(-50%, -50%) scale(0.9); }
    100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.elite-showcase-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.screen-glare {
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
    transform: rotate(30deg) translateY(0);
    pointer-events: none;
    z-index: 10;
    animation: sweepGlare 8s infinite linear;
}

@keyframes sweepGlare {
    0% { transform: rotate(30deg) translateY(-100%); }
    100% { transform: rotate(30deg) translateY(100%); }
}

.elite-search-container {
    width: 320px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.elite-search-box {
    background: rgba(20,20,24,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 100px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.search-icon svg { width: 18px; height: 18px; stroke: var(--text-muted); min-width: 18px; }
.typing-container { color: var(--text-main); font-family: var(--font-mono); font-size: 0.85rem; display: flex; align-items: center; flex: 1; overflow: hidden; white-space: nowrap; }
.typing-cursor { display: inline-block; width: 2px; height: 14px; background: var(--text-main); margin-left: 2px; animation: blink 1s step-end infinite; }

.search-result {
    background: rgba(20,20,24,0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    padding: 1.2rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.search-result.hidden { opacity: 0; }

@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.elite-laptop {
    width: 480px;
    position: relative;
    perspective: 1000px;
}

.laptop-screen {
    background: #0c0c0e;
    border: 4px solid #1a1a1c;
    border-bottom-width: 12px;
    border-radius: 16px 16px 0 0;
    height: 280px;
    position: relative;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
}

.laptop-base {
    height: 12px;
    background: linear-gradient(to bottom, #2a2a2c, #111);
    border-radius: 0 0 16px 16px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.8);
}

.laptop-base::before { content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 60px; height: 3px; background: rgba(255,255,255,0.1); border-radius: 0 0 4px 4px; }

.web-header-bar { height: 20px; background: #111; display:flex; align-items:center; padding: 0 10px; border-bottom: 1px solid #222; }

.web-viewport { 
    flex: 1; 
    overflow: hidden; 
    position: relative; 
    width: 100%; 
    scrollbar-width: none; 
}
.web-viewport::-webkit-scrollbar { display: none; }

.elite-mobile {
    width: 170px;
    height: 340px;
    background: #000;
    border: 6px solid #1a1a1c;
    border-radius: 36px;
    position: relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.7), inset 0 0 0 1px rgba(255,255,255,0.1);
}

.mobile-notch {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 45%; height: 16px; background: #1a1a1c; border-radius: 0 0 12px 12px; z-index: 20;
}

.mobile-home-indicator {
    position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); width: 35%; height: 4px; background: rgba(255,255,255,0.4); border-radius: 4px; z-index: 20;
}

.app-ui {
    height: 100%; width: 100%; background: #0c0c0e; position: relative; overflow: hidden; scrollbar-width: none;
}
.app-ui::-webkit-scrollbar { display: none; }

.mockup-full-img { width: 100%; height: auto; display: block; }

.highlight-marker {
    position: relative;
    display: inline;
    color: #fff;
    background: linear-gradient(104deg, transparent 0.9%, rgba(130,200,255,0.1) 2.4%, rgba(130,200,255,0.3) 5.8%, rgba(130,200,255,0.15) 93%, transparent 100%);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 0% 100%;
    border-radius: 2px 4px 6px 2px;
    padding: 0 4px;
    margin: 0 -4px;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
}

.highlight-marker.animate {
    animation: authenticMarkerTwoLoops 5s forwards cubic-bezier(0.65, 0, 0.35, 1);
}

@keyframes authenticMarkerTwoLoops {
    0%, 5% { background-position: left center; background-size: 0% 100%; }
    25%, 35% { background-position: left center; background-size: 100% 100%; }
    36% { background-position: right center; background-size: 100% 100%; }
    45%, 50% { background-position: right center; background-size: 0% 100%; }
    51% { background-position: left center; background-size: 0% 100%; }
    75%, 100% { background-position: left center; background-size: 100% 100%; }
}

.pt-10rem { padding-top: 10rem; }
.mb-1rem { margin-bottom: 1rem; }
.mb-2rem { margin-bottom: 2rem; }
.mb-4rem { margin-bottom: 4rem; }
.mb-6rem { margin-bottom: 6rem; }
.max-w-600 { max-width: 600px; }
.max-w-800 { max-width: 800px; }
.text-lg { font-size: 1.1rem; line-height: 1.8; }
.text-xl { font-size: 1.6rem; margin-bottom: 1rem; }
.flex-center { display: flex; justify-content: center; }
.scale-110 { transform: scale(1.1); }
.h-full { height: 100%; }
.rounded-30 { border-radius: 30px; }
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.delay-3s { animation-delay: 3s; }
.text-2xl { font-size: 2.5rem; margin-bottom: 1.5rem; }
.text-md { font-size: 1.05rem; margin-bottom: 1.5rem; }
.service-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-bottom: 2rem; font-size: 0.9rem; }
.service-list-item { border-bottom: 1px solid var(--border-glass); padding-bottom: 0.5rem; }
.order-2 { order: 2; }
.order-1 { order: 1; }
.laptop-transform { transform: scale(0.9) translateX(-10%); }
.delay-1-5s { animation-delay: 1.5s; }
.flex { display: flex; }
.gap-4px { gap: 4px; }
.web-dot { width: 8px; height: 8px; border-radius: 50%; background: #444; }
.gap-1rem { gap: 1rem; }
.serp-url { font-family: var(--font-mono); font-size: 0.75rem; color: #a0a0ab; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.5rem; }
.serp-favicon { display: inline-block; width: 14px; height: 14px; background: white; border-radius: 50%; }
.serp-title { font-family: var(--font-serif); font-size: 1.1rem; color: #fff; text-decoration: underline; margin-bottom: 0.5rem; }
.serp-desc { font-family: var(--font-mono); font-size: 0.7rem; color: rgba(255, 255, 255, 0.7); line-height: 1.4; }

.cta-card { padding: 4rem; }

.min-h-screen { min-height: 100vh; min-height: 100svh; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }

.text-clamp-hero { 
    font-size: clamp(3rem, 7vw, 6rem); 
    margin-bottom: 2rem; 
    letter-spacing: -2px; 
    line-height: 1.1; 
    text-align: center;
    text-wrap: balance;
}

.text-stroke { color: transparent; -webkit-text-stroke: 1px var(--text-main); }
.mx-auto { margin-left: auto; margin-right: auto; }
.mb-3rem { margin-bottom: 3rem; }
.mb-5rem { margin-bottom: 5rem; }
.ambient-glow { position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: -1; animation: ambientPulse 10s ease-in-out infinite; }

.text-clamp-h1 { font-size: clamp(2.5rem, 6vw, 4rem); margin-bottom: 1.5rem; line-height: 1.15; text-wrap: balance; }
.text-clamp-h2 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 1rem; text-wrap: balance; }

.card-flat { border: 1px solid rgba(255, 255, 255, 0.05); transform: none !important; box-shadow: none; }
.text-sm-main { font-family: var(--font-mono); font-size: 0.8rem; color: var(--text-main); margin-bottom: 2rem; }
.card-title { font-size: 1.8rem; margin-bottom: 1rem; text-wrap: balance; }
.card-desc { font-size: 0.9rem; margin-bottom: 2rem; }

.legal-content h2 { font-size: 2rem; margin: 3rem 0 1rem; color: var(--text-main); }
.legal-content p { font-size: 1rem; margin-bottom: 1.5rem; color: var(--text-muted); font-family: var(--font-mono); }

.contact-visual {
  height: 100%;
  min-height: 400px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border-glass);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.contact-overlay {
  position: absolute;
  text-align: center;
  background: rgba(10, 10, 12, 0.6);
  backdrop-filter: blur(8px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border-glass);
}

.form-select {
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23a0a0ab' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.flip-wrapper {
  display: inline-block;
  perspective: 600px;
  position: relative;
}

.flip-inner {
  display: inline-block;
  transform-origin: center center;
  white-space: nowrap;
}

@keyframes flipWordOut {
  0% { transform: rotateX(0deg); opacity: 1; }
  100% { transform: rotateX(90deg); opacity: 0; }
}

@keyframes flipWordIn {
  0% { transform: rotateX(-90deg); opacity: 0; }
  100% { transform: rotateX(0deg); opacity: 1; }
}

@media (max-width: 992px) {
  .grid-3, .grid-2 {
    grid-template-columns: minmax(0, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .navbar { 
    top: 1rem;
    left: 1rem;
    width: calc(100% - 2rem);
    transform: none; 
    border-radius: 20px; 
    padding: 0.6rem 1.5rem; 
  }
  .mobile-menu-btn { display: block; }
  
  .nav-links {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: var(--bg-base);
    flex-direction: column;
    padding: 3rem 2rem;
    gap: 2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-glass);
  }
  
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .footer-top {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .btn { padding: 0.75rem 1.75rem; font-size: 0.8rem; }
  .pt-10rem { padding-top: 5rem; }
  .mb-6rem { margin-bottom: 3rem; }
  .mb-4rem { margin-bottom: 2rem; }
  .section-spacing { padding: 4rem 0; }
  
  .text-clamp-h1 { font-size: clamp(2rem, 7vw, 2.8rem); line-height: 1.15; }
  
  .text-clamp-hero { 
      font-size: clamp(2.2rem, 7vw, 3.5rem); 
      margin-bottom: 1.5rem; 
      letter-spacing: -1px; 
      line-height: 1.15; 
      text-align: center; 
  }
  
  .cta-card { padding: 2.5rem 1.5rem; }
  
  .min-h-screen { padding-top: 7rem; padding-bottom: 3rem; }
  .min-h-screen > .container { margin-top: auto; margin-bottom: auto; }
  
  .scale-110 { transform: scale(1) !important; }
  .laptop-transform { transform: scale(1) translateX(0) !important; }

  .ambient-glow {
    width: 350px;
    height: 350px;
  }
  .elite-search-container::before,
  .elite-laptop::before,
  .elite-mobile::before {
    width: 350px;
    height: 350px;
  }
}

@media (max-width: 480px) {
  .btn { padding: 0.6rem 1.2rem; font-size: 0.7rem; }
  .min-h-screen { padding-top: 6.5rem; }
  .flex.gap-1rem { flex-direction: column; width: 100%; gap: 0.7rem; }
  .flex.gap-1rem .btn { width: 100%; display: block; }
  
  .text-clamp-hero { 
      font-size: clamp(1.8rem, 6.5vw, 2.4rem); 
      line-height: 1.1; 
      letter-spacing: -0.5px; 
  }

  .ambient-glow {
    width: 250px;
    height: 250px;
  }
  .elite-search-container::before,
  .elite-laptop::before,
  .elite-mobile::before {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 550px) {
  .elite-laptop {
    transform: scale(0.65) !important;
    transform-origin: center center;
    margin: -50px -84px !important;
  }
  .elite-search-container {
    transform: scale(0.85) !important;
    transform-origin: center center;
    margin: -20px -24px !important;
  }
  .elite-mobile {
    transform: scale(0.85) !important;
    transform-origin: center center;
    margin: -20px -13px !important;
  }
}
