/* RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}

/* VARIABLES - Brand Color Palette */
:root {
  /* Brand Colors */
  --brand-purple: #CC0CC4;
  --brand-purple-light: #F5CEF3;
  --brand-purple-dark: #8F0889;
  --brand-green: #0A7968;
  --brand-green-light: #B6D7D2;
  --brand-green-dark: #04302A;
  --brand-grey: #4D4D4D;
  --brand-grey-light: #E6E6E6;
  --brand-grey-dark: #000000;
  
  /* System colors */
  --black: #0a0a0a;
  --dark-gray: #1a1a1a;
  --medium-gray: #666666;
  --light-gray: #f8f9fa;
  --white: #ffffff;
  --accent: var(--brand-purple);
  --accent-hover: var(--brand-purple-dark);
  --border: #e5e7eb;
  --shadow: rgba(0, 0, 0, 0.1);
  --text-primary: var(--brand-grey-dark);
  --text-secondary: var(--brand-grey);
  --text-muted: #9ca3af;
}

/* HEADER - Redesigned Layout */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid var(--dark-gray);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.desktop-nav {
  flex: 1;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 100px;
  width: auto;
  display: block;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 1px;
}

.desktop-nav ul {
  display: flex;
  list-style: none;
  gap: 48px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.desktop-nav ul li a {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.desktop-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--white);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-nav ul li a:hover::after {
  width: 100%;
}

.desktop-nav ul li a:hover {
  color: var(--brand-purple);
}

/* HERO SECTION - Office Workspace Background */
#hero {
  background: url('lumos-marketing-office-workspace-hero-background.jpg') center center/cover no-repeat;
  color: var(--white);
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 140px 40px 80px;
  position: relative;
  overflow: hidden;
  padding-left: clamp(40px, 8vw, 120px);
}

/* Mobile adjustments for hero text alignment */
@media (max-width: 768px) {
  #hero {
    padding: 120px 24px 60px 24px;
    text-align: left;
  }
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.3));
  pointer-events: none;
  z-index: 1;
}

#hero h1 {
  font-size: clamp(42px, 7vw, 75px);
  font-weight: 800;
  line-height: 0.9;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  color: #ffffff;
}

#hero p {
  font-size: clamp(18px, 3vw, 32px);
  font-weight: 500;
  color: #ffffff;
  max-width: 700px;
  margin: 0 0 16px 0;
  position: relative;
  z-index: 2;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  line-height: 1.5;
}

#hero p:last-of-type {
  font-size: clamp(16px, 2.2vw, 28px);
  color: #f0f0f0;
  margin-bottom: 32px;
  max-width: 600px;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

/* PREMIUM BUTTON DESIGN */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  z-index: 3;
  box-shadow: 0 8px 25px rgba(204, 12, 196, 0.3);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: linear-gradient(135deg, var(--brand-purple-dark), var(--brand-purple));
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(204, 12, 196, 0.4);
}

/* SECTION LAYOUTS */
section {
  padding: 120px 0;
}

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

/* OPENING SECTION */
.opening-section {
  padding: 80px 0;
  background: var(--light-gray);
}

.opening-section .container p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
}

.opening-section .container p:last-child {
  margin-bottom: 0;
}

/* PARTNERS SECTION */
#partners {
  background: var(--white);
}

.team-photo {
  text-align: center;
  margin-bottom: 40px;
}

.team-photo img {
  max-width: 400px;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
  .team-photo img {
    max-width: 300px;
    height: 250px;
  }
}

#partners h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: #000000;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.01em;
  position: relative;
}

#partners h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--brand-green);
  border-radius: 2px;
}

#partners p {
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: 1.7;
  color: #000000;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 32px;
}

#partners p:last-of-type {
  font-size: clamp(16px, 2.3vw, 22px);
  color: #000000;
}

/* SERVICES SECTION */
#services {
  background: var(--light-gray);
}

#services h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 80px;
  letter-spacing: -0.01em;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 80px;
  align-items: stretch;
}

.service-card {
  background: var(--white);
  padding: 60px 50px;
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: center;
  flex: 1 1 350px;
  max-width: 380px;
  min-width: 320px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-green);
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border-color: var(--brand-green);
  background: var(--brand-green-light);
}

.service-card:hover h3 {
  color: var(--brand-purple);
  transition: color 0.3s ease;
}

.service-card:hover p {
  color: #000000;
  transition: color 0.3s ease;
}

.service-image {
  width: 100%;
  height: 160px;
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card h3 {
  margin-bottom: 20px;
  color: #000000;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.3;
}

.service-card p {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.7;
  color: #000000;
  font-weight: 400;
}

/* WHY CHOOSE LUMOS SECTION */
.why-choose {
  padding: 80px 0;
  background: #F9FAFB;
}

.why-choose h2 {
  text-align: center;
  font-size: clamp(36px, 5vw, 72px);
  color: #000000;
  margin-bottom: 60px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.benefit-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 360px;
  min-width: 280px;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.18);
  background: var(--brand-green-light);
}

.benefit-card:hover h3 {
  color: var(--brand-purple);
  transition: color 0.3s ease;
}

.benefit-image {
  width: 100%;
  height: 200px;
  margin-bottom: 25px;
  border-radius: 8px;
  overflow: hidden;
}

.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.benefit-card h3 {
  color: #000000;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  margin-bottom: 15px;
}

.benefit-card p {
  color: #000000;
  line-height: 1.6;
  font-weight: 400;
  font-size: clamp(14px, 2vw, 20px);
}

/* CONTACT SECTION */
#contact {
  background: var(--white);
  text-align: center;
}

#contact h2 {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 300;
  color: #000000;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

#contact p {
  font-size: clamp(16px, 2.5vw, 24px);
  line-height: 1.7;
  color: #000000;
  margin-bottom: 48px;
}

/* FOOTER - Dark & Elegant */
footer {
  background: var(--black);
  color: var(--brand-grey-light);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px;
}


.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  margin-bottom: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--dark-gray);
}

.footer-column h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--dark-gray);
  text-align: center;
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: 14px;
}

/* TABLET RESPONSIVE - 2 cards per row */
@media (max-width: 1199px) and (min-width: 769px) {
  .service-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  
  .benefit-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  header > div {
    padding: 0 24px;
    height: 70px;
  }
  
  .logo img {
    height: 28px;
  }
  
  nav ul {
    gap: 32px;
  }
  
  nav ul li a {
    font-size: 12px;
  }
  
  #hero {
    padding: 100px 24px 60px;
    min-height: 90vh;
  }
  
  section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 24px;
  }
  
  .services-grid {
    gap: 32px;
    margin-top: 60px;
  }
  
  .service-card {
    padding: 32px 24px;
    flex: 1 1 280px;
    max-width: 100%;
  }
  
  .footer-container {
    padding: 60px 24px;
  }
  
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* MOBILE NAVIGATION */
@media (max-width: 768px) {
  .header-content {
    padding: 0 24px;
  }
  
  .desktop-nav {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border-bottom: 1px solid var(--dark-gray);
  }
  
  .desktop-nav.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .desktop-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 24px;
  }
  
  .desktop-nav ul li {
    width: 100%;
  }
  
  .desktop-nav ul li a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 16px;
  }
  
  .mobile-menu-toggle {
    display: flex;
    z-index: 1001;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  
  .logo img {
    height: 80px;
  }
}

/* MOBILE CONTENT OPTIMIZATION */
@media (max-width: 768px) {
  /* Hero Section */
  #hero h1 {
    font-size: clamp(48px, 8vw, 72px);
  }
  
  #hero p:first-of-type {
    font-size: clamp(18px, 4vw, 24px);
  }
  
  #hero p:last-of-type {
    font-size: 16px;
    max-width: 90%;
  }
  
  /* Team Photo */
  .team-photo {
    margin: 30px 0;
  }
  
  .team-photo img {
    max-width: 100%;
    height: auto;
  }
  
  /* Benefits Grid */
  .benefits-grid {
    gap: 32px;
  }
  
  .benefit-card {
    padding: 24px;
    flex: 1 1 260px;
    max-width: 100%;
  }
  
  .benefit-image {
    height: 180px;
  }
  
  /* Service Cards */
  .service-card {
    padding: 40px 32px;
  }
  
  .service-image {
    height: 140px;
    margin-bottom: 24px;
  }
  
  /* Typography */
  h2 {
    font-size: clamp(28px, 6vw, 42px) !important;
    margin-bottom: 40px !important;
  }
  
  h3 {
    font-size: clamp(20px, 4vw, 24px) !important;
  }
  
  p {
    font-size: 16px !important;
    line-height: 1.6 !important;
  }
  
  /* Contact Section */
  #contact .btn {
    font-size: 16px;
    padding: 16px 32px;
    min-height: 44px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .header-content {
    padding: 0 16px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* Extra small mobile adjustments */
  .service-card {
    padding: 32px 24px;
  }
  
  .benefit-card {
    padding: 20px;
  }
  
  #hero {
    padding: 120px 24px 80px 24px;
  }
  
  #hero h1 {
    font-size: clamp(40px, 10vw, 60px);
    margin-bottom: 16px;
  }
}

/* CONTACT FORM STYLES */
.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-form {
  background: var(--white);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

#contact {
  background: linear-gradient(135deg, var(--brand-grey-light) 0%, #f1f5f9 100%);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 28px;
}

.form-group label {
  font-weight: 600;
  color: #000000;
  margin-bottom: 8px;
  font-size: 14px;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
  color: #000000;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-purple);
  box-shadow: 0 0 0 3px rgba(204, 12, 196, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: var(--medium-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  background: var(--brand-purple-light);
  transition: all 0.2s ease;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-group input.success,
.form-group select.success,
.form-group textarea.success {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--brand-grey);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group select:hover {
  border-color: var(--medium-gray);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.error-message {
  color: #ef4444;
  font-size: 14px;
  margin-top: 6px;
  display: none;
  font-weight: 500;
}

.error-message.show {
  display: block;
}

.form-submit {
  text-align: center;
  margin-top: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--white);
  border: none;
  padding: 18px 48px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  min-width: 200px;
  min-height: 56px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.btn-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-feedback {
  margin-top: 24px;
  padding: 16px;
  border-radius: 8px;
  font-weight: 500;
  text-align: center;
  display: none;
}

.form-feedback.success {
  background: #f0fdf4;
  border: 1px solid #10b981;
  color: #065f46;
  display: block;
}

.form-feedback.error {
  background: #fef2f2;
  border: 1px solid #ef4444;
  color: #991b1b;
  display: block;
}

/* Mobile Form Styles */
@media (max-width: 768px) {
  .contact-form {
    padding: 32px 24px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .btn-primary {
    width: 100%;
    padding: 18px 24px;
  }
}

@media (max-width: 480px) {
  .contact-form-container {
    padding: 0 16px;
  }
  
  .contact-form {
    padding: 24px 20px;
  }
}

/* ACCESSIBILITY & FOCUS STATES */
.btn:focus,
.service-card:focus,
.benefit-card:focus {
  outline: 3px solid var(--brand-purple);
  outline-offset: 2px;
}

.desktop-nav ul li a:focus {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  border-radius: 4px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 3px solid var(--brand-purple);
  outline-offset: 1px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation on scroll for service cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card,
.benefit-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Improved loading animation for buttons */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.btn-loading::after {
  content: '';
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

/* PRICING PAGE STYLES */
#pricing-hero {
  background: linear-gradient(rgba(10, 10, 10, 0.3), rgba(10, 10, 10, 0.4)), url('hero-ocean.png') center/cover no-repeat;
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  color: var(--white);
}

#pricing-hero h1 {
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

#pricing-hero p {
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.95;
}

/* PRICING SECTION */
#pricing {
  padding: 100px 0;
  background: var(--light-gray);
}

#pricing h2 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.pricing-subtitle {
  font-size: 20px;
  color: #000000;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 80px;
  font-weight: 400;
  line-height: 1.6;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  flex: 1 1 350px;
  max-width: 380px;
  min-width: 320px;
  text-align: center;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.18);
  border-color: var(--brand-green);
}

.pricing-card.featured {
  border: 2px solid var(--brand-purple);
  transform: scale(1.05);
}

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

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-purple);
  color: var(--white);
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.pricing-header {
  margin-bottom: 32px;
}

.pricing-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 8px;
}

.pricing-tagline {
  font-size: 16px;
  color: var(--brand-grey);
  font-weight: 500;
  margin-bottom: 16px;
  font-style: italic;
}

.package-subtitle {
  font-size: 16px;
  color: #000000;
  font-weight: 600;
  margin: 24px 0 12px 0;
  text-align: left;
}

.perfect-if {
  background: var(--brand-green-light);
  padding: 16px;
  border-radius: 12px;
  margin: 20px 0;
  font-size: 15px;
  color: #000000;
  text-align: left;
  border-left: 4px solid var(--brand-green);
}

.pricing-card.premium {
  border: 2px solid var(--brand-purple);
  background: linear-gradient(135deg, rgba(204, 12, 196, 0.05), rgba(255, 255, 255, 0.95));
}

.pricing-card.premium .pricing-header h3 {
  color: var(--brand-purple);
}

.pricing-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.setup-price {
  font-size: 16px;
  color: var(--brand-grey);
  font-weight: 500;
}

.monthly-price {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  line-height: 1;
}

.period {
  font-size: 20px;
  font-weight: 500;
  color: var(--brand-grey);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: #000000;
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding-left: 24px;
}

.pricing-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--brand-green);
  font-weight: 700;
  font-size: 16px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-cta {
  width: 100%;
  margin-top: auto;
  display: inline-block;
  text-decoration: none;
  text-align: center;
}

/* PRICING CTA SECTION */
.cta-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}

.cta-section h2 {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  color: #000000;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cta-section p {
  font-size: 20px;
  color: #000000;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

/* SECONDARY BUTTON STYLE */
.btn-secondary {
  background: transparent;
  color: var(--brand-purple);
  border: 2px solid var(--brand-purple);
}

.btn-secondary:hover {
  background: var(--brand-purple);
  color: var(--white);
  transform: translateY(-2px);
}

/* PRICING RESPONSIVE */
@media (max-width: 1199px) and (min-width: 769px) {
  .pricing-card {
    flex: 1 1 calc(50% - 20px);
    max-width: calc(50% - 20px);
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  #pricing-hero {
    padding: 100px 24px 60px;
    min-height: 60vh;
  }
  
  .pricing-grid {
    gap: 32px;
  }
  
  .pricing-card {
    padding: 32px 24px;
    flex: 1 1 280px;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: none;
  }
  
  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .container {
    padding: 0 24px;
  }
}

/* SMOOTH ANIMATIONS */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}