@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap";

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 80px;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}
p {
  font-size: clamp(1rem, 2vw, 1.125rem);
}

section {
  padding: 44px 14px;
  position: relative;
}

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

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 24px;
  background: #000;
  border-bottom: 1px solid #3a3a3a;
  z-index: 9999;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
}

img {
  width: 32px;
  height: 32px;
}

/* MOBILE MENU Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  z-index: 10001;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* NAV LINKS— desktop: inline row on the right  */
.nav-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  text-decoration: none;
  color: #8a8a8a;
  font-weight: 500;
  font-size: 0.9rem;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 6px 12px;
  white-space: nowrap;
}

.logo-link {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
}

.highlight {
  color: #FFAC1C;
}

.nav-links a:hover {
  color: #fff;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 12px;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::after {
  width: calc(100% - 24px);
}

.nav-links .btn-primary {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links .btn-primary:hover {
  background: #000;
  color: #fff;
}

.nav-links .btn-primary::after {
  display: none;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn i {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.btn-yellow {
  background: #ffac1c;
  color: #000;
  border-color: #ffac1c;
}

.btn-yellow:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
}
.btn-guest {
  background: #fff;
  color: #000;
  border: 2px solid #fff;
  padding: 8px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-left: 8px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-guest:hover {
  background: #000;
  color: #fff;
}

.btn-guest::after {
  display: none;
}

/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 56px 24px 44px;
  min-height: calc(100vh - 80px);
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  margin-bottom: 24px;
}

.hero-content h1 .accent {
  background: #fff;
  color: #000;
  padding: 0 10px;
  border-radius: 4px;
  display: inline-block;
  transform: rotate(-1deg);
}

.hero-content p {
  font-size: 1.25rem;
  color: #7a7a7a;
  margin-bottom: 34px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-description {
  font-size: 1.25rem;
  color: #7a7a7a;
  margin-bottom: 24px;
  line-height: 1.7;
  font-weight: 500;
}

.hero-badge {
  display: inline-block;
  background: #2a2a2a;
  border: 1px solid #3a3a3a;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.hero-subtexts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
  margin-bottom: 20px;
}

.subtext-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.subtext-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: #5a5a5a;
  transform: translateY(-2px);
}

.subtext-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2a2a2a;
  border-radius: 4px;
  color: #fff;
}

.subtext-icon i {
  width: 16px;
  height: 16px;
}

.subtext-content {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #7a7a7a;
}

.subtext-content strong {
  color: #fff;
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.hero-microcopy {
  font-size: 0.95rem;
  color: #6a6a6a;
  text-align: center;
  font-style: italic;
  line-height: 1.6;
  max-width: 500px;
  margin: 20px auto 0;
  padding-top: 14px;
  border-top: 1px solid #3a3a3a;
}

/* EDITOR PREVIEW BUT TO CHANGE SOON */
.hero-visual {
  position: relative;
}

.editor-preview {
  background: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #3a3a3a;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editor-preview:hover {
  transform: perspective(1000px) rotateY(-5deg) rotateX(0deg);
}

.editor-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  background: #2a2a2a;
  border-bottom: 1px solid #3a3a3a;
}

.editor-dots {
  display: flex;
  gap: 6px;
}

.editor-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.dot-red {
  background: #ff5f56;
}
.dot-yellow {
  background: #ffbd2e;
}
.dot-green {
  background: #27ca3f;
}

.editor-header div:last-child {
  color: #8a8a8a;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.9rem;
}

.editor-tabs {
  display: flex;
  gap: 14px;
  margin-left: 14px;
}

.editor-tab {
  padding: 6px 14px;
  background: #1a1a1a;
  border-radius: 4px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.8rem;
  color: #7a7a7a;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editor-tab.active {
  background: #000;
  color: #fff;
}

.editor-actions {
  display: flex;
  gap: 14px;
  margin-left: auto;
  color: #7a7a7a;
}

.editor-actions i {
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.editor-actions i:hover {
  color: #fff;
}

.editor-content {
  display: grid;
  grid-template-columns: auto 1fr;
  padding: 0;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
  line-height: 1.8;
  min-height: 400px;
  background: #1a1a1a;
}

.editor-line-number {
  padding: 0 14px;
  text-align: right;
  color: #5a5a5a;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.875rem;
  border-right: 1px solid #3a3a3a;
}

.editor-line {
  padding: 0 14px;
}

.editor-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px;
  background: #2a2a2a;
  border-top: 1px solid #3a3a3a;
  font-size: 0.85rem;
}

.editor-status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #7a7a7a;
}

.editor-shortcuts kbd {
  background: #3a3a3a;
  padding: 2px 6px;
  border-radius: 3px;
  font-family: "Monaco", "Courier New", monospace;
  font-size: 0.8rem;
}

.tag {
  color: #8a8a8a;
}
.attr {
  color: #7a7a7a;
}
.value {
  color: #9a9a9a;
}
.comment {
  color: #5a5a5a;
  font-style: italic;
}

/* Sections */
.section {
  padding: 56px 24px;
  background: #000;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 44px;
}

.section-title {
  margin-bottom: 14px;
  color: #ffac1c;
}

.section-subtitle {
  color: #7a7a7a;
  font-size: 1.125rem;
  line-height: 1.7;
}

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 34px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s;
}

.feature-card:hover::before {
  transform: translateX(100%);
}

.feature-card:hover {
  border-color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.feature-card-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.feature-card-header .feature-icon {
  margin: 0; 
  flex-shrink: 0;
}

.feature-card-header h3 {
  font-size: 18px;
  margin-bottom: 0;
}
.feature-card p {
  text-align: left;
  color: #7a7a7a;
  line-height: 1.7;
}

.feature-cta {
  cursor: pointer;
  color: #5a5a5a;
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 14px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-cta {
  color: #fff;
}

/* PHILOSOPHY */
.dark-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
  position: relative;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.philosophy-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.philosophy-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 34px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.philosophy-item:hover {
  border-color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.philosophy-number {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  color: #3a3a3a;
  margin-bottom: 14px;
  line-height: 1;
}

.philosophy-item:hover .philosophy-number {
  color: #ffac1c;
}
.philosophy-item h3 {
  margin-bottom: 14px;
  color: #fff;
}
.philosophy-item p {
  color: #7a7a7a;
  line-height: 1.7;
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-title {
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.cta-subtitle {
  color: #7a7a7a;
  font-size: 1.25rem;
  max-width: 600px;
  margin: 0 auto 34px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.cta-note {
  color: #6a6a6a;
  font-size: 0.9rem;
  margin-top: 14px;
}

/* TESTIMONIALS */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 12px;
  padding: 34px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card:hover {
  border-color: #fff;
  transform: translateY(-4px);
}

.testimonial-content {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.6;
  position: relative;
}

.testimonial-content::before {
  font-size: 3rem;
  color: #3a3a3a;
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: Georgia, serif;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  border: 2px solid #3a3a3a;
}

.author-info {
  display: flex;
  flex-direction: column;
}
.author-info strong {
  color: #fff;
  font-size: 1rem;
}
.author-info span {
  color: #7a7a7a;
  font-size: 0.9rem;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  cursor: pointer;
}

.faq-question h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #fff;
}

.faq-question i {
  color: #5a5a5a;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer {
  padding: 0 24px 24px;
  display: none;
}
.faq-answer p {
  color: #7a7a7a;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #1a1a1a;
  padding: 56px 24px 24px;
  border-top: 1px solid #3a3a3a;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 44px;
  max-width: 1200px;
  margin: 0 auto 44px;
}

.footer-about {
  max-width: 400px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-about p {
  color: #7a7a7a;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links p {
  color: #ffac1c;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.links {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 8px;
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.links::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #fff;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.links:hover {
  color: #fff;
}
.links:hover::after {
  width: 100%;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #3a3a3a;
  color: #7a7a7a;
  font-size: 0.9rem;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #1a1a1a;
}
::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

::selection {
  background: #fff;
  color: #000;
}
::-moz-selection {
  background: #fff;
  color: #000;
}

/* 1024px */
@media (max-width: 1024px) {
  body {
    padding-top: 70px;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 44px;
    min-height: auto;
  }

  .editor-preview {
    max-width: 600px;
    margin: 0 auto;
    transform: none;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .hero-actions .btn,
  .hero-actions .btn-yellow,
  .hero-actions .btn-guest {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}

/* 480px */
@media (max-width: 480px) {
  body {
    padding-top: 60px;
  }

  .navbar {
    padding: 10px 14px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .editor-content {
    font-size: 0.75rem;
    padding: 14px;
  }

  .feature-card,
  .philosophy-item {
    padding: 24px;
  }

  .editor-footer {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.97);
    padding: 90px 24px 40px;
    z-index: 9998;
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }
  .logo {
    z-index: 10002;
    position: relative;
  }

  .logo img,
  .footer-logo img {
    width: 28px;
    height: 28px;
  }

  .nav-links a {
    font-size: 1.1rem;
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid #2a2a2a;
  }

  .nav-links .btn-primary {
    margin-left: 0;
    margin-top: 12px;
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .btn-yellow,
  .btn-guest {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    margin-left: 0;
    margin-bottom: 10px;
  }
}
