@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Big+Shoulders+Display:wght@800;900&family=Outfit:wght@300;400;600;700&display=swap');

:root {
  color-scheme: dark;
  --bg-dark: #030712;
  --bg-card: rgba(15, 23, 42, 0.45);
  --bg-card-hover: rgba(30, 41, 59, 0.65);
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --accent-blue: #2563eb;
  --accent-cyan: #06b6d4;
  --accent-green: #10b981;
  --accent-yellow: #facc15;
  --accent-orange: #f97316;
  
  --font-sans: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
  --font-condensed: 'Big Shoulders Display', sans-serif;
  
  --border-glass: rgba(255, 255, 255, 0.08);
  --border-glass-hover: rgba(6, 182, 212, 0.3);
  
  --shadow-glow: 0 0 30px rgba(6, 182, 212, 0.15);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.5);
  
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-family: var(--font-sans);
}

body {
  min-height: 100vh;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(16, 185, 129, 0.1), transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08), transparent 50%),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 50px 50px, 50px 50px;
  background-attachment: fixed;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

/* Typography (Design in DC Style) */
h1, h2, h3, h4 {
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.title-editorial {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.title-serif {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.title-heavy {
  font-family: var(--font-condensed);
  font-weight: 900;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 30%, #64748b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2.section-title {
  font-family: var(--font-condensed);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

h2.section-title .serif-word {
  font-family: var(--font-serif);
  text-transform: none;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.01em;
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  color: var(--accent-cyan);
}

p {
  line-height: 1.6;
  color: var(--text-secondary);
}

.eyebrow {
  font-family: var(--font-sans);
  color: var(--accent-cyan);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.lead {
  font-size: clamp(1.125rem, 2vw, 1.35rem);
  max-width: 680px;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem clamp(1.5rem, 5vw, 6rem);
  background: rgba(3, 7, 18, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.brand img {
  height: 46px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.5rem 1.25rem;
  border-radius: 40px;
  border: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-glass);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  left: 13px;
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 21px; }
.nav-toggle span:nth-child(3) { top: 26px; }

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}
body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}
body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Layout */
main {
  width: min(1280px, calc(100% - 3rem));
  margin: 0 auto;
}

/* Interactive Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.125rem 2.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--accent-blue);
  color: #fff;
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(37, 99, 235, 0.6);
  background: #1d4ed8;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.2);
  transform: translateY(-3px);
}

.actions {
  display: flex;
  gap: 1.25rem;
  align-items: center;
  flex-wrap: wrap;
}

/* Editorial Hero Section */
.hero {
  min-height: calc(100vh - 100px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 5rem;
  padding: 4rem 0 6rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Design in DC Card Pile Overlay */
.hero-visual::before {
  content: '';
  position: absolute;
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}

.hero-visual img {
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-glass);
  transform: rotate(-3deg) translateY(10px);
  transition: var(--transition);
}

.hero-visual:hover img {
  transform: rotate(0) translateY(0) scale(1.02);
}

/* Slanted Trust Cards */
.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-top: -3rem;
  margin-bottom: 6rem;
}

.trust-band article {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  padding: 3rem 2.5rem;
  border-radius: 24px;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.trust-band article::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-cyan));
  opacity: 0;
  transition: var(--transition);
}

.trust-band article:hover {
  transform: translateY(-8px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-glow);
}

.trust-band article:hover::before {
  opacity: 1;
}

.trust-band strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 2.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}

/* Sections */
.section {
  padding: 8rem 0;
}

.section.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.section.split p {
  font-size: 1.15rem;
  line-height: 1.7;
}

/* Feature Grid with Vertical Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 3rem 0;
}

.feature-grid article {
  background: var(--bg-card);
  padding: 3rem 2.25rem;
  border-radius: 24px;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.feature-grid article:hover {
  transform: translateY(-8px);
  border-color: var(--accent-green);
  box-shadow: 0 0 35px rgba(16, 185, 129, 0.15);
}

.feature-grid span {
  font-family: var(--font-condensed);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(16, 185, 129, 0.2);
  margin-bottom: 1.5rem;
  transition: var(--transition);
}

.feature-grid article:hover span {
  color: var(--accent-green);
}

.feature-grid h3 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

/* Design in DC Overlapping Layout for Products */
.product-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  padding: 4rem 0 8rem;
  position: relative;
}

/* Overlapping circular badge in the middle of sections */
.editorial-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  background: var(--accent-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
  border: 4px solid var(--bg-dark);
  z-index: 10;
  text-align: center;
}

.editorial-badge span {
  font-size: 0.75rem;
  font-family: var(--font-serif);
  font-style: italic;
  text-transform: none;
}

.product-card {
  background: var(--bg-card);
  border-radius: 28px;
  border: 1px solid var(--border-glass);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.product-card .img-container {
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/10;
  border-bottom: 1px solid var(--border-glass);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-card > div {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-card h3 {
  font-size: 1.85rem;
  font-weight: 700;
}

.text-link {
  font-size: 1rem;
  font-weight: 700;
  color: var(--accent-cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  width: fit-content;
}

.text-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.text-link:hover::after {
  transform: translateX(5px);
}

/* Page Spreads */
.page-hero {
  padding: 8rem 0 5rem;
}

.page-hero.narrow {
  max-width: 800px;
}

.page-hero p.eyebrow {
  margin-bottom: 1rem;
}

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 0;
  border-top: 1px solid var(--border-glass);
}

.product-detail.reverse {
  grid-template-columns: 1.1fr 1fr;
}

.product-detail.reverse .detail-copy {
  order: 2;
}

.product-detail img {
  border-radius: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.product-detail img:hover {
  transform: scale(1.02);
}

.detail-copy {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.detail-copy .button {
  align-self: flex-start;
}

.detail-copy h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
}

.check-list {
  display: grid;
  gap: 1rem;
  list-style: none;
  margin: 1rem 0;
}

.check-list li {
  position: relative;
  padding-left: 2rem;
  line-height: 1.5;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 10px;
  height: 10px;
  background: var(--accent-cyan);
  border-radius: 50%;
}

/* Design in DC Large Module Strip */
.module-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  padding-bottom: 8rem;
}

.module-strip article {
  background: var(--bg-card);
  padding: 2.25rem;
  border-radius: 20px;
  border: 1px solid var(--border-glass);
  transition: var(--transition);
}

.module-strip article:hover {
  border-color: var(--accent-cyan);
  transform: translateY(-5px);
}

.module-strip strong {
  display: block;
  font-family: var(--font-condensed);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 0.5rem;
}

/* Gallery Showcase */
.screenshot-showcase {
  padding: 6rem 0;
  border-top: 1px solid var(--border-glass);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.screenshot-grid figure {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.screenshot-grid figure:first-child {
  grid-row: span 2;
}

.screenshot-grid figure:hover {
  transform: translateY(-8px);
  border-color: var(--accent-cyan);
  box-shadow: var(--shadow-glow);
}

.screenshot-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--border-glass);
}

.screenshot-grid figcaption {
  padding: 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  background: rgba(15, 23, 42, 0.2);
}

/* Contact Spread */
.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  padding: 2rem 0 8rem;
}

.contact-form, .contact-info {
  background: var(--bg-card);
  padding: 4rem;
  border-radius: 28px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
}

.contact-form {
  display: grid;
  gap: 2rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-form input, 
.contact-form select, 
.contact-form textarea {
  width: 100%;
  background: rgba(3, 7, 18, 0.4);
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  padding: 1.125rem 1.5rem;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.contact-form input:focus, 
.contact-form select:focus, 
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.25);
  background: rgba(3, 7, 18, 0.6);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info h2 {
  font-family: var(--font-condensed);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-info dl {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info dt {
  font-family: var(--font-condensed);
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-cyan);
  letter-spacing: 0.05em;
}

.contact-info dd {
  margin-top: 0.25rem;
  font-size: 1.1rem;
}

/* Editorial Footer */
.site-footer {
  background: #02040a;
  border-top: 1px solid var(--border-glass);
  padding: 6rem clamp(1.5rem, 5vw, 6rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

.site-footer img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

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

.footer-links a {
  font-weight: 600;
  color: var(--text-secondary);
}

.footer-links a:hover {
  color: var(--accent-cyan);
}

.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.35);
}

/* Animations */
@keyframes float {
  0% { transform: translateY(0px) rotate(-3deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
  100% { transform: translateY(0px) rotate(-3deg); }
}

.hero-visual img {
  animation: float 6s ease-in-out infinite;
}

/* Responsiveness (Design in DC layouts on Mobile) */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 4rem;
  }
  
  .hero-copy {
    align-items: center;
  }
  
  .actions {
    justify-content: center;
  }
  
  .hero-visual img {
    max-width: 80%;
    margin: 0 auto;
  }
  
  .trust-band {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }
  
  .section.split {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .product-preview {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .editorial-badge {
    display: none; /* Hide badge when columns collapse */
  }
  
  .product-detail {
    grid-template-columns: 1fr;
    gap: 4rem;
    text-align: center;
  }
  
  .product-detail.reverse {
    grid-template-columns: 1fr;
  }
  
  .product-detail.reverse .detail-copy {
    order: 0;
  }
  
  .detail-copy {
    align-items: center;
  }
  
  .detail-copy .button {
    align-self: center;
  }
  
  .module-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 1.25rem 1.5rem;
  }
  
  .nav-toggle {
    display: block;
  }
  
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-dark);
    flex-direction: column;
    padding: 2rem;
    border-bottom: 1px solid var(--border-glass);
    gap: 1.5rem;
  }
  
  body.nav-open .site-nav {
    display: flex;
  }
  
  .feature-grid, .module-strip {
    grid-template-columns: 1fr;
  }
  
  .screenshot-grid {
    grid-template-columns: 1fr;
  }
  
  .screenshot-grid figure:first-child {
    grid-row: auto;
  }
  
  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .footer-links {
    justify-content: center;
  }
  
  .contact-form, .contact-info {
    padding: 2.5rem 1.5rem;
  }
}

/* Squarespace-style Premium Slideshow */
.slideshow-section {
  padding: 6rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 1080px;
  aspect-ratio: 16/10;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-glass);
  background: var(--bg-card);
}

.slide-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), visibility 0.8s;
  display: flex;
  flex-direction: column;
}

.slide-frame.active {
  opacity: 1;
  visibility: visible;
}

.slide-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-bottom: 1px solid var(--border-glass);
}

.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-glass);
  z-index: 15;
}

.slide-caption h3 {
  font-family: var(--font-condensed);
  font-size: 1.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--accent-cyan);
}

.slide-caption p {
  font-size: 1rem;
  color: var(--text-primary);
  margin: 0;
}

.slide-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--border-glass);
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  color: var(--text-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 25;
  transition: var(--transition);
}

.slide-nav-btn:hover {
  background: var(--accent-blue);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.slide-nav-btn.prev { left: 24px; }
.slide-nav-btn.next { right: 24px; }

.slide-dots {
  display: flex;
  gap: 0.75rem;
  z-index: 20;
}

.slide-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.slide-dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slide-dot.active {
  background: var(--accent-cyan);
  box-shadow: 0 0 12px var(--accent-cyan);
  transform: scale(1.25);
}

/* Widescreen Majestic Title Section (Squarespace inspired) */
.middle-title-section {
  padding: 10rem 2rem;
  text-align: center;
  background: #000000;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.title-giant {
  font-family: var(--font-sans);
  font-size: clamp(2.5rem, 6.5vw, 5.25rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  text-transform: none;
}

.title-giant strong {
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-cyan) 30%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle-premium {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 400;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 2rem auto 0;
  line-height: 1.5;
}

/* Navigation Dropdown */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(3, 7, 18, 0.95);
  backdrop-filter: blur(20px);
  min-width: 180px;
  border-radius: 12px;
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-card);
  z-index: 100;
  padding: 0.5rem 0;
}

.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  border-radius: 0;
  white-space: nowrap;
  border: none;
}

.dropdown-content a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-cyan);
  border-color: transparent;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

@media (max-width: 768px) {
  .dropdown-content {
    position: static;
    transform: none;
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
    display: none;
    flex-direction: column;
  }
  
  .dropdown:hover .dropdown-content,
  .dropdown:active .dropdown-content,
  .dropdown.open .dropdown-content {
    display: flex;
    animation: none;
  }
}

/* Floating WhatsApp Icon */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
  text-decoration: none;
}

.floating-whatsapp svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  color: #fff;
}

/* Contact Form Status Alert Styling */
.form-status {
  padding: 1.125rem 1.5rem;
  border-radius: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  transition: var(--transition);
  animation: formAlertFadeIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.form-status.success {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid var(--accent-green);
  color: #a7f3d0;
}

.form-status.error {
  background: rgba(239, 68, 68, 0.12);
  border: 1px solid #ef4444;
  color: #fca5a5;
}

.contact-form button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

@keyframes formAlertFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



