:root {
  /* Minimalist Color Palette */
  --bg-color: #FFFFFF;
  --surface-color: #F9F9F9;
  --theme-orange: #E87500;
  --accent-gold: #C88A0A;
  --accent-gold-hover: #A67005;
  --text-main: #111111;
  --text-muted: #666666;
  --border-accent: #EEEEEE;
  --border-accent-strong: #DDDDDD;

  /* Typography */
  --font-heading: 'DM Sans', sans-serif;
  --font-numbers: 'DM Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

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

ul {
  list-style: none;
}

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

/* Utility Classes */
.italic-gold {
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  color: var(--accent-gold);
}

.text-center {
  text-align: center;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  letter-spacing: 2px;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.section-headline {
  font-size: 3rem;
  margin-bottom: 4rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition-normal);
  text-align: center;
  border-radius: 0;
  /* Sharp edges for minimalism */
}

.btn-gold {
  background-color: var(--text-main);
  color: var(--bg-color);
  border: 1px solid var(--text-main);
}

.btn-gold:hover {
  background-color: var(--text-muted);
  border-color: var(--text-muted);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-accent-strong);
}

.btn-outline-gold:hover {
  border-color: var(--text-main);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  text-transform: none;
  font-size: 1rem;
}

.btn-ghost:hover {
  color: var(--text-main);
}

.btn-full {
  width: 100%;
}

/* 1. NAVIGATION */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding: 2rem 0;
  transition: var(--transition-normal);
  background-color: var(--bg-color);
  border-bottom: 1px solid transparent;
}

.nav.scrolled {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-accent);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 1px;
}

.logo-gold {
  color: var(--text-main);
}

.logo-muted {
  color: var(--text-muted);
  font-weight: 300;
}

.logo-company {
  font-size: 0.7rem;
  color: var(--text-bold);
  font-family: var(--font-body);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 1000;
  margin-top: 4px;
  margin-bottom: -10px;
}

@media (max-width: 480px) {
  .logo-company {
    font-size: 0.48rem;
  }
}

.nav-links {
  display: flex;
  gap: 3rem;
}

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

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

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 30px;
  height: 1px;
  background-color: var(--text-main);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--bg-color);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-normal);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* 2. HERO */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 0 0 4rem;
  background: var(--bg-color);
}

.hero-bg-glow {
  display: none;
  /* Removed for minimalism */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  flex: 1;
  max-width: 600px;
  padding: 2rem 0;
}

.hero-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-product-img {
  max-width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.05));
}

.tag-pill {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.hero-headline {
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 500px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.hero-kpis {
  display: none;
  /* Cleaned up for minimalism */
}

.scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--text-muted);
}

.scroll-text {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: var(--text-muted);
}

/* 2.5 STORYTELLING SECTION */
.storytelling {
  background-color: var(--bg-color);
  position: relative;
  z-index: 10;
}

.story-pin-container {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.story-stage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  opacity: 0;
  visibility: hidden;
  text-align: center;
}

.story-accent {
  color: var(--accent-gold);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
}

.story-headline-large {
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-main);
}

.story-headline-medium {
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-main);
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.story-bloom {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  max-width: 800px;
  max-height: 800px;
  background: radial-gradient(circle, rgba(200, 138, 10, 0.12) 0%, rgba(200, 138, 10, 0) 70%);
  z-index: 1;
  pointer-events: none;
}

.story-molecule-img {
  position: absolute;
  bottom: 8vh;
  left: 50%;
  transform: translateX(-50%);
  width: 40vw;
  max-width: 500px;
  max-height: 25vh;
  object-fit: contain;
  z-index: 1;
  opacity: 0.9;
}

.story-facts {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 600px;
  width: 100%;
  text-align: left;
}

.story-fact {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.story-icon {
  font-size: 2rem;
  color: var(--accent-gold);
  line-height: 1;
  margin-top: 0.2rem;
}

.story-fact-text h4 {
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  color: var(--text-main);
}

.story-fact-text p {
  font-size: 1rem;
  color: var(--text-muted);
}

.story-cta {
  margin-top: 3rem;
}

/* Mobile responsive for storytelling */
@media (max-width: 768px) {
  .story-bloom {
    width: 150vw;
    height: 150vw;
  }
}

/* 3. PRODUCTS SECTION */
.products {
  padding: 3rem 0 5rem;
  background-color: var(--bg-color);
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 40vw;
  height: 60vh;
  background: url('/assets/images/drop.webp') no-repeat center center/contain;
  opacity: 0.8;
  z-index: 0;
}

.products .container {
  position: relative;
  z-index: 1;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  max-width: 450px;
  margin: 0 auto;
}

.product-card {
  background-color: var(--bg-color);
  padding: 0;
  position: relative;
}

.product-bg-number {
  display: none;
}

.product-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.product-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 400;
}

.product-specs {
  margin-bottom: 2.5rem;
}

.product-specs li {
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.product-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.product-cta-primary {
  padding: 0.75rem 1.5rem;
  font-size: 0.85rem;
  border-width: 1px;
}

.product-cta-secondary {
  font-size: 0.85rem;
  text-decoration: none;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.product-cta-secondary:hover {
  color: var(--text-main);
  border-bottom-color: var(--text-main);
}

/* 4. WHY DIFFERENT SECTION */
.why-us {
  padding: 3rem 0 5rem;
  background-color: var(--surface-color);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6rem 4rem;
  margin-top: 4rem;
}

.feature-item {
  padding: 0;
}

.feature-icon {
  display: none;
  /* Remove emojis for a cleaner look */
}

.feature-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.feature-desc {
  color: var(--text-muted);
}

/* 5. TRUST / QUALITY STRIP */
.trust-strip {
  background-color: var(--text-main);
  color: var(--bg-color);
  padding: 2rem 0;
}

.trust-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.trust-dot {
  color: var(--text-muted);
}

/* 6. APPLICATIONS SECTION */
.applications {
  padding: 3rem 0 5rem;
  background-color: var(--bg-color);
}

.applications-wrapper {
  width: 100%;
}

.applications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem 2.5rem;
  margin-top: 3rem;
}

.app-card {
  display: flex;
  flex-direction: column;
  background-color: transparent;
  border: none;
  height: 100%;
  text-align: left;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.app-card-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  background-color: #F3F4F6;
}

.app-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-card-content {
  padding: 1.2rem 0 0 0;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 0.5rem;
}

.app-title {
  font-size: 1.3rem;
  margin-bottom: 0;
  font-weight: 500;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.app-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.app-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  margin-top: auto;
}

.app-learn-more .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  font-size: 1.1rem;
  line-height: 1;
}

/* Hover States on the Complete Card */
.app-card:hover .app-card-image {
  transform: scale(1.06);
}

.app-card:hover .app-title {
  color: var(--accent-gold);
}

.app-card:hover .app-learn-more {
  color: var(--text-main);
}

.app-card:hover .app-learn-more .arrow {
  transform: translateX(6px);
}

/* 7. ABOUT SECTION */
.about {
  padding: 3rem 0 5rem;
  background-color: var(--surface-color);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: flex-start;
}

.about-quote-box {
  padding: 0;
  border: none;
  background: none;
}

.about-quote {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  line-height: 1.3;
  margin-bottom: 2rem;
  color: var(--text-main);
  font-weight: 300;
}

.quote-author {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.quote-badge {
  display: none;
}

.about-list {
  margin-top: 0;
}

.about-list li {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.list-num {
  font-size: 1rem;
  color: var(--text-main);
}

.about-list p {
  color: var(--text-muted);
}

/* 8. CONTACT SECTION */
.contact {
  padding: 3rem 0 5rem;
  background-color: var(--bg-color);
  border-top: 1px solid var(--border-accent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  max-width: 1000px;
  margin: 4rem auto 0;
  gap: 5rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  text-align: left;
}

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

.contact-info-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 500;
}

.contact-info-value {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-main);
  line-height: 1.5;
}

.contact-info-value a {
  border-bottom: 1px solid transparent;
  transition: var(--transition-fast);
}

.contact-info-value a:hover {
  border-bottom-color: var(--text-main);
}

.contact-info-subtext {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.address-value {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-form {
  padding-bottom: 2rem;
  border: none;
  background: none;
}

#submitBtn {
  margin-top: 1rem;
  display: block;
}

.form-row {
  display: flex;
  gap: 2rem;
}

.form-row .form-group {
  flex: 1;
}

.form-group label {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  border: none;
  border-bottom: 1px solid var(--border-accent-strong);
  background: transparent;
  padding: 0.5rem 0;
  margin-bottom: 2rem;
  font-family: var(--font-body);
  font-size: 1rem;
  width: 100%;
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%23111111" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0px center;
  background-size: 1.5rem;
  padding-right: 2rem;
  cursor: pointer;
  border-radius: 0;
  color: var(--text-main);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-bottom-color: var(--text-main);
  outline: none;
}

/* 9. FOOTER */
.footer {
  background-color: #F8F9FA;
  /* Premium Off-White */
  padding: 6rem 0 4rem;
  border-top: 1px solid #E5E7EB;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 3.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 260px;
}

.footer-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  padding: 0.4rem 0.8rem;
  border: 1px solid #D1D5DB;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-top: 0.5rem;
  border-radius: 2px;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  transition: var(--transition-fast);
}

.footer-social-link:hover {
  color: var(--accent-gold);
}

.footer-heading {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

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

/* Office & Factory Info Column */
.footer-info-col {
  display: flex;
  flex-direction: column;
}

.footer-address {
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.footer-contact-subgrid {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-subgrid-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-meta-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-meta-links {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.contact-meta-links a,
.contact-subgrid-item>a {
  font-size: 0.95rem;
  color: var(--text-main);
  font-weight: 400;
  transition: var(--transition-fast);
  border-bottom: 1px solid transparent;
}

.contact-meta-links a:hover,
.contact-subgrid-item>a:hover {
  color: var(--accent-gold);
  border-bottom-color: var(--accent-gold);
}

.bullet {
  color: #D1D5DB;
  font-size: 0.9rem;
  user-select: none;
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid #E5E7EB;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--text-main);
}

/* Animations (Scroll Reveal) */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}

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

/* Hamburger Active Animation */
.hamburger span {
  transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Responsive */
@media (max-width: 1024px) {
  .products::before {
    display: none;
  }

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

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

  .footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 0;
    min-height: auto;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .hero-headline {
    font-size: 2.5rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 1rem;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-product-img {
    max-height: 50vh;
  }

  .products,
  .why-us,
  .applications,
  .about,
  .contact {
    padding: 2.5rem 0;
  }

  .section-headline {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }

  .products-grid,
  .feature-grid,
  .about-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-brand {
    grid-column: auto;
  }

  .contact-form-wrapper {
    order: 1;
  }

  .contact-info {
    order: 2;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .trust-container {
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    padding: 0 2rem;
  }

  .trust-container span:not(.trust-dot) {
    text-align: justify;
    text-align-last: justify;
    display: block;
    width: 100%;
  }

  .trust-dot {
    display: none;
  }
}

/* ==========================================================================
   APPLICATIONS PAGE (applications.html)
   ========================================================================== */

.app-hero {
  padding: 12rem 0 6rem;
  background-color: #F8F9FA;
  border-bottom: 1px solid #E5E7EB;
  text-align: left;
}

.app-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.app-hero-content {
  max-width: 800px;
}

.app-hero-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-accent-strong);
  background-color: #F3F4F6;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
}

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

.app-hero-title {
  font-size: clamp(3rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  font-weight: 300;
  color: var(--text-main);
}

.app-hero-desc {
  font-size: 1.25rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.app-detail-container {
  background-color: var(--bg-color);
}

.app-detail-section {
  padding: 4rem 0;
  border-bottom: 1px solid var(--border-accent);
}

.app-detail-grid {
  display: flex;
  align-items: center;
  gap: 6rem;
}

.app-detail-section:nth-of-type(even) .app-detail-grid {
  flex-direction: row-reverse;
}

.app-detail-image-wrapper {
  flex: 1;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border-accent-strong);
  background-color: #F3F4F6;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.03);
}

.app-detail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.app-detail-section:hover .app-detail-image {
  transform: scale(1.03);
}

.app-detail-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.app-detail-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent-gold);
  text-transform: uppercase;
}

.app-detail-title {
  font-size: 2.5rem;
  line-height: 1.2;
  font-weight: 400;
  color: var(--text-main);
}

.app-detail-text {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.app-detail-ctas {
  margin-top: 1rem;
}

@media (max-width: 1024px) {
  .app-detail-grid {
    gap: 4rem;
  }

  .app-detail-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .app-hero {
    padding: 10rem 0 4rem;
  }

  .app-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }

  .app-detail-section {
    padding: 5rem 0;
  }

  .app-detail-grid {
    flex-direction: column !important;
    gap: 3rem;
  }

  .app-detail-image-wrapper {
    aspect-ratio: 16 / 10;
  }

  .app-detail-title {
    font-size: 1.8rem;
  }
}