@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --lavender: #B5B9FF;
  --coral-red: #E73C24;
  --mint-green: #A0E0A0;
  --dark-green: #1E5C1E;
  --charcoal-black: #0D0D0D;
  --creamy-white: #F9F9FB;
  --soft-yellow: #FFF066;
  --accent-pink: #FF8AD8;
  
  --border-thick: 3px solid #0D0D0D;
  --border-thin: 2px solid #0D0D0D;
  --shadow-flat: 4px 4px 0px 0px #0D0D0D;
  --shadow-medium: 8px 8px 0px 0px #0D0D0D;
  --shadow-hover: 12px 12px 0px 0px #0D0D0D;
  --shadow-yellow: 6px 6px 0px 0px var(--soft-yellow);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  
  --header-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--creamy-white);
  color: var(--charcoal-black);
  line-height: 1.5;
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
}

p {
  font-size: 1.125rem;
  font-weight: 500;
}

a {
  text-decoration: none;
  color: inherit;
  font-weight: 700;
}

/* Utility Classes */
.bg-lavender { background-color: var(--lavender); }
.bg-coral { background-color: var(--coral-red); color: #fff; }
.bg-mint { background-color: var(--mint-green); }
.bg-black { background-color: var(--charcoal-black); color: #fff; }
.bg-white { background-color: var(--creamy-white); }

.border-top-thick { border-top: var(--border-thick); }
.border-bottom-thick { border-bottom: var(--border-thick); }

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

.section-padding {
  padding: 100px 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  border: var(--border-thick);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  font-size: 1.1rem;
}

.btn-primary {
  background-color: var(--coral-red);
  color: #fff;
  box-shadow: var(--shadow-flat);
}

.btn-primary:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-medium);
  background-color: #f74d35;
}

.btn-primary:active {
  transform: translate(0px, 0px);
  box-shadow: var(--shadow-flat);
}

.btn-secondary {
  background-color: var(--mint-green);
  color: var(--charcoal-black);
  box-shadow: var(--shadow-flat);
}

.btn-secondary:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-medium);
  background-color: #b0f0b0;
}

.btn-secondary:active {
  transform: translate(0px, 0px);
  box-shadow: var(--shadow-flat);
}

.btn-outline {
  background-color: var(--creamy-white);
  color: var(--charcoal-black);
  box-shadow: var(--shadow-flat);
}

.btn-outline:hover {
  transform: translate(-3px, -3px);
  box-shadow: var(--shadow-medium);
}

/* Header & Nav */
header {
  height: var(--header-height);
  border-bottom: var(--border-thick);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  background-color: var(--creamy-white);
  transition: background-color 0.3s;
}

header.scrolled {
  background-color: rgba(249, 249, 251, 0.95);
  backdrop-filter: blur(10px);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: -1px;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background-color: var(--coral-red);
  border: var(--border-thin);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #fff;
  transform: rotate(-6deg);
  transition: transform 0.3s;
}

.logo:hover .logo-icon {
  transform: rotate(6deg) scale(1.1);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-size: 1.05rem;
  position: relative;
  padding: 4px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--coral-red);
  transition: width 0.2s ease;
  border-radius: 2px;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: var(--charcoal-black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero Section */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 600;
  max-width: 580px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Stickers */
.sticker {
  position: absolute;
  padding: 8px 16px;
  border: var(--border-thin);
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 2px 2px 0px 0px #0D0D0D;
  text-transform: uppercase;
  z-index: 5;
}

.sticker-yellow {
  background-color: var(--soft-yellow);
  top: -20px;
  left: 10%;
  transform: rotate(-5deg);
  animation: wiggle 3s infinite ease-in-out;
}

.sticker-pink {
  background-color: var(--accent-pink);
  bottom: 120px;
  left: 45%;
  transform: rotate(6deg);
  animation: wiggle2 4s infinite ease-in-out;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-5deg) translateY(0); }
  50% { transform: rotate(-3deg) translateY(-5px); }
}

@keyframes wiggle2 {
  0%, 100% { transform: rotate(6deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(4px); }
}

/* Hero Gallery slider */
.hero-gallery {
  position: relative;
  height: 520px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mockup-card {
  position: absolute;
  width: 250px;
  border: var(--border-thick);
  border-radius: 36px;
  background-color: var(--charcoal-black);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  aspect-ratio: 9/18.5;
}

.mockup-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mockup-1 {
  transform: rotate(-10deg) translateX(-60px);
  z-index: 1;
}

.mockup-2 {
  transform: rotate(0deg) translateY(-20px);
  z-index: 3;
}

.mockup-3 {
  transform: rotate(10deg) translateX(60px);
  z-index: 2;
}

.mockup-card:hover {
  z-index: 10;
  transform: scale(1.08) translateY(-30px) rotate(0deg);
  box-shadow: var(--shadow-hover);
}

/* Features Section (Coral Red) */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.features-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.features-left h2 {
  color: #fff;
}

.features-left p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 500px;
}

.features-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.neobrutal-card {
  background-color: var(--creamy-white);
  border: var(--border-thick);
  border-radius: 20px;
  padding: 32px;
  color: var(--charcoal-black);
  box-shadow: var(--shadow-medium);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.neobrutal-card:hover {
  transform: translate(-4px, -4px);
  box-shadow: var(--shadow-hover);
}

.neobrutal-card.tilted-left {
  transform: rotate(-1deg);
}

.neobrutal-card.tilted-right {
  transform: rotate(1.5deg);
}

.neobrutal-card.tilted-left:hover {
  transform: scale(1.02) rotate(-0.5deg) translate(-4px, -4px);
}

.neobrutal-card.tilted-right:hover {
  transform: scale(1.02) rotate(0.5deg) translate(-4px, -4px);
}

.neobrutal-card h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  background-color: var(--lavender);
  border: var(--border-thin);
  border-radius: 8px;
  padding: 6px 12px;
  font-weight: 700;
  font-size: 0.9rem;
}

.tech-tag:nth-child(2n) {
  background-color: var(--soft-yellow);
}

.tech-tag:nth-child(3n) {
  background-color: var(--accent-pink);
}

.tech-tag:nth-child(4n) {
  background-color: var(--mint-green);
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checklist li {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.checklist li::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: var(--mint-green);
  border: var(--border-thin);
  border-radius: 50%;
  font-size: 0.8rem;
  color: var(--charcoal-black);
}

/* How It Works (Lavender) */
.how-it-works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.how-it-works-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.receipt-card {
  background-color: var(--creamy-white);
  border: var(--border-thick);
  border-radius: 8px;
  padding: 40px 32px;
  box-shadow: var(--shadow-medium);
  position: relative;
  transform: rotate(-1.5deg);
  overflow: hidden;
}

/* Zig-zag top & bottom for receipt card */
.receipt-card::before, .receipt-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  background-size: 16px 10px;
  background-repeat: repeat-x;
}

.receipt-card::before {
  top: 0;
  background-image: linear-gradient(135deg, var(--lavender) 25%, transparent 25%), linear-gradient(225deg, var(--lavender) 25%, transparent 25%);
}

.receipt-card::after {
  bottom: 0;
  background-image: linear-gradient(45deg, var(--lavender) 25%, transparent 25%), linear-gradient(315deg, var(--lavender) 25%, transparent 25%);
}

.receipt-header {
  text-align: center;
  border-bottom: 2px dashed #0D0D0D;
  padding-bottom: 20px;
  margin-bottom: 24px;
}

.receipt-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

.receipt-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 4px;
}

.receipt-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  margin-bottom: 24px;
}

.receipt-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: var(--border-thin);
  background-color: var(--soft-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.2rem;
}

.receipt-item:nth-child(2) .receipt-num {
  background-color: var(--accent-pink);
}

.receipt-item:nth-child(3) .receipt-num {
  background-color: var(--mint-green);
}

.receipt-item-content h4 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.receipt-item-content p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.receipt-barcode {
  border-top: 2px dashed #0D0D0D;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.barcode-svg {
  width: 180px;
  height: 45px;
}

.barcode-num {
  font-family: monospace;
  font-size: 0.85rem;
  letter-spacing: 3px;
}

/* Testimonials (Mint Green) */
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.testimonial-smiley {
  width: 60px;
  height: 60px;
  border: var(--border-thin);
  border-radius: 50%;
  background-color: var(--soft-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  transform: rotate(-10deg);
  animation: float-slow 3s infinite ease-in-out;
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) rotate(-10deg); }
  50% { transform: translateY(-8px) rotate(-6deg); }
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.speech-bubble {
  background-color: var(--charcoal-black);
  color: #fff;
  border: var(--border-thick);
  border-radius: 24px;
  padding: 32px;
  position: relative;
  box-shadow: 6px 6px 0px 0px var(--soft-yellow);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.speech-bubble:hover {
  transform: translate(-4px, -4px);
  box-shadow: 10px 10px 0px 0px var(--soft-yellow);
}

.speech-bubble:nth-child(2) {
  box-shadow: 6px 6px 0px 0px var(--lavender);
}
.speech-bubble:nth-child(2):hover {
  box-shadow: 10px 10px 0px 0px var(--lavender);
}

.speech-bubble:nth-child(3) {
  box-shadow: 6px 6px 0px 0px var(--accent-pink);
}
.speech-bubble:nth-child(3):hover {
  box-shadow: 10px 10px 0px 0px var(--accent-pink);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 40px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--charcoal-black);
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--border-thin);
  background-color: var(--creamy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--charcoal-black);
}

.client-details h4 {
  font-size: 1.1rem;
}

.client-details p {
  font-size: 0.85rem;
  opacity: 0.7;
}

/* Pricing (Coral Red) */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
  color: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-card {
  background-color: var(--creamy-white);
  border: var(--border-thick);
  border-radius: 24px;
  padding: 48px;
  color: var(--charcoal-black);
  box-shadow: var(--shadow-medium);
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: transform 0.2s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.featured {
  border-color: var(--charcoal-black);
  box-shadow: 8px 8px 0px 0px var(--soft-yellow), var(--shadow-medium);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: -10px;
  background-color: var(--soft-yellow);
  color: var(--charcoal-black);
  border: var(--border-thin);
  padding: 6px 12px;
  font-size: 0.85rem;
  font-weight: 800;
  border-radius: 8px;
  transform: rotate(6deg);
}

.pricing-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-name {
  font-size: 1.8rem;
  color: var(--charcoal-black);
}

.pricing-price {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-price span {
  font-size: 1.2rem;
  font-weight: 600;
  font-family: var(--font-body);
}

.pricing-desc {
  font-size: 1.05rem;
  opacity: 0.85;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 2px dashed #e0e0e0;
  padding-top: 24px;
}

.pricing-features li {
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--charcoal-black);
  font-weight: 900;
  font-size: 1.1rem;
}

.pricing-subtext {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 40px;
  font-weight: 600;
  font-size: 1.1rem;
}

.pricing-subtext a {
  text-decoration: underline;
}

/* Philosophy (White) */
.philosophy-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.philosophy-title {
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.1;
  letter-spacing: -1px;
}

.philosophy-sub {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.85;
}

/* FAQ (Black) */
.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
}

.faq-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 120px;
  height: fit-content;
}

.faq-left h2 {
  color: #fff;
}

.faq-left-smiley {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: var(--border-thin);
  background-color: var(--lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-top: 16px;
  transform: rotate(8deg);
}

.faq-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  border: var(--border-thick);
  border-radius: 16px;
  background-color: #1A1A1A;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-summary {
  padding: 24px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  list-style: none; /* Hide default arrow in some browsers */
}

.faq-summary::-webkit-details-marker {
  display: none; /* Hide default arrow in Chrome/Safari */
}

.faq-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
  font-family: monospace;
}

.faq-content {
  padding: 0 24px 24px 24px;
  border-top: 0px solid transparent;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  display: none;
}

.faq-item.open {
  background-color: #fff;
  color: var(--charcoal-black);
  box-shadow: 4px 4px 0px 0px var(--accent-pink);
}

.faq-item.open .faq-summary {
  border-bottom: 2px dashed var(--charcoal-black);
}

.faq-item.open .faq-content {
  padding-top: 24px;
  display: block;
  color: var(--charcoal-black);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* Footer (Lavender) */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
}

.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  letter-spacing: -1px;
}

.footer-logo .logo-icon {
  width: 44px;
  height: 44px;
  font-size: 1.4rem;
}

.footer-text {
  font-size: 1.25rem;
  font-weight: 600;
  max-width: 450px;
}

.footer-info-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: var(--border-thin);
  background-color: var(--creamy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-text h4 {
  font-size: 0.9rem;
  opacity: 0.7;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.info-text p {
  font-size: 1.1rem;
  font-weight: 700;
}

.info-text a:hover {
  text-decoration: underline;
  color: var(--coral-red);
}

.social-links {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: var(--border-thin);
  background-color: var(--creamy-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.2s;
  box-shadow: 2px 2px 0px 0px var(--charcoal-black);
}

.social-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0px 0px var(--charcoal-black);
  background-color: var(--soft-yellow);
}

.footer-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-form-card {
  background-color: var(--creamy-white);
  border: var(--border-thick);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-medium);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  border: var(--border-thin);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  outline: none;
  background-color: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus {
  border-color: var(--coral-red);
  box-shadow: 3px 3px 0px 0px var(--charcoal-black);
}

textarea.form-input {
  resize: vertical;
  min-height: 120px;
}

.footer-bottom {
  border-top: var(--border-thick);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Toast Notification */
.toast {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background-color: var(--mint-green);
  color: var(--charcoal-black);
  border: var(--border-thick);
  box-shadow: var(--shadow-medium);
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 700;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(150%);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.show {
  transform: translateY(0);
}

.toast-icon {
  font-size: 1.4rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-gallery {
    height: 480px;
  }
  
  .features-grid, .how-it-works-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .speech-bubble::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .faq-left {
    position: static;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background-color: var(--creamy-white);
    border-bottom: var(--border-thick);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    align-items: stretch;
    box-shadow: var(--shadow-medium);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .hamburger {
    display: flex;
  }
  
  .btn {
    width: 100%;
  }
  
  .hero-cta {
    width: 100%;
    flex-direction: column;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
