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

:root {
  /* Colors */
  --color-primary: #2196F3;
  --color-green: #4CAF50;
  --color-orange: #FF9800;
  --color-slate: #334E68;
  --color-black: #000000;
  --color-white: #FFFFFF;
  --color-gray-50: #F9FAFB;
  --color-gray-100: #F3F4F6;
  --color-gray-200: #E5E7EB;
  --color-gray-600: #4B5563;
  --color-gray-700: #374151;
  --color-gray-800: #1F2937;
  --color-red-50: #FEF2F2;
  --color-red-600: #DC2626;
  --color-red-800: #991B1B;
  --color-red-900: #7F1D1D;
  --color-yellow-600: #CA8A04;
  --color-yellow-700: #A16207;
  --color-orange-600: #EA580C;
  --color-orange-700: #C2410C;
  --color-green-50: #F0FDF4;
  --color-green-200: #BBF7D0;
  --color-green-800: #166534;
  --border-radius: 0.625rem;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-gray-800);
  background: var(--color-white);
  overflow-x: hidden;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-weight: 700;
}

.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utilities */
.hidden {
  display: none !important;
}

/* Honeypot field - invisible to humans, visible to bots */
.honeypot-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.mobile-break {
  display: inline;
}

@media (min-width: 768px) {
  .mobile-break {
    display: none;
  }
}

/* Navigation */
.nav {
  background: var(--color-white);
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--color-gray-200);
}

@media (min-width: 768px) {
  .nav {
    padding: 0.75rem 1rem;
  }
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .nav-mobile {
    display: none;
  }
}

/* Logo top right */
.logo-mobile-top {
  width: 140px;
  height: 50px;
  margin-left: auto;
}

.logo-mobile-top img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Lawyer section left aligned */
.nav-mobile-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.lawyer-image-small {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-gray-200);
  flex-shrink: 0;
}

.lawyer-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-info-mobile {
  flex: 1;
  min-width: 0;
}

.lawyer-name-mobile {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--color-gray-800);
  line-height: 1.2;
}

.lawyer-desc-mobile {
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-black);
}

/* Phone button centered */
.phone-button-mobile-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--color-green);
  color: white;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 2px solid var(--color-black);
}

.phone-button-mobile-nav:active {
  transform: scale(0.98);
}

.phone-text-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.phone-label-mobile {
  font-size: 0.75rem;
  opacity: 0.9;
}

.phone-number-mobile {
  font-size: 1.125rem;
  font-weight: 800;
}

/* Availability text centered */
.nav-availability-mobile {
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--color-gray-700);
}

.nav-availability-mobile p {
  margin: 0.25rem 0;
}

.nav-availability-mobile .email-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}

.nav-desktop {
  display: none;
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.lawyer-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-gray-200);
  flex-shrink: 0;
}

.lawyer-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lawyer-name {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-gray-800);
}

.lawyer-desc {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-black);
}

.nav-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.logo-desktop {
  width: 256px;
  height: 80px;
  position: relative;
}

.logo-desktop img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right;
}

.phone-button-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: var(--color-green);
  color: var(--color-white);
  padding: 1.5rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 2px solid var(--color-black);
  text-decoration: none;
  transition: background 0.3s;
}

.phone-button-desktop:hover {
  background: #45a049;
}

.phone-icon {
  flex-shrink: 0;
}

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

.phone-label {
  font-size: 1.125rem;
  white-space: nowrap;
}

.phone-number {
  font-weight: 700;
  font-size: 1.5rem;
  white-space: nowrap;
}

.nav-availability {
  font-size: 1.125rem;
  color: var(--color-gray-800);
  font-weight: 700;
  line-height: 1.4;
}

.email-link {
  color: inherit;
  text-decoration: underline;
  white-space: nowrap;
  transition: color 0.3s;
}

.email-link:hover {
  color: var(--color-green);
}

/* Hero Section */
.hero {
  background: var(--color-slate);
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .hero {
    padding: 5rem 1rem;
  }
}

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12.5rem;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
    line-height: 1;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .hero-benefits {
    gap: 1rem;
  }
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-green);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .benefit-dot {
    width: 8px;
    height: 8px;
  }
}

.benefit-text {
  font-size: 0.875rem;
  color: var(--color-white);
  font-weight: 600;
}

@media (min-width: 768px) {
  .benefit-text {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .benefit-text {
    font-size: 1.125rem;
  }
}

.price-badge {
  background: var(--color-black);
  color: var(--color-white);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
}

.price-ht {
  font-size: 0.75rem;
  font-weight: 400;
}

.hero-content {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-content {
    margin-bottom: 2.5rem;
    gap: 2.5rem;
  }
}

.hero-cta-text {
  border-left: 4px solid var(--color-green);
  padding-left: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .hero-cta-text {
    padding-left: 1.5rem;
  }
}

.cta-main-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  font-size: 1.25rem;
  color: var(--color-white);
  font-weight: 700;
}

@media (min-width: 768px) {
  .cta-main-text {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .cta-main-text {
    font-size: 2.5rem;
  }
}

/* Urgency Box */
.urgency-box {
  background: var(--color-red-50);
  border-left: 4px solid var(--color-red-600);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .urgency-box {
    padding: 1.5rem;
  }
}

.urgency-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.urgency-icon {
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .urgency-icon {
    font-size: 1.875rem;
  }
}

.urgency-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-red-900);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .urgency-title {
    font-size: 1.25rem;
  }
}

.urgency-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-red-900);
}

@media (min-width: 768px) {
  .urgency-list {
    font-size: 1rem;
  }
}

.urgency-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.bullet {
  color: var(--color-red-600);
  font-weight: 700;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.urgency-footer {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-red-900);
  background: rgba(255, 255, 255, 0.5);
  padding: 0.75rem;
  border-radius: 0.5rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .urgency-footer {
    font-size: 1rem;
  }
}

/* Urgency Box Responsive Display */
.urgency-box-mobile {
  display: block;
}

@media (min-width: 768px) {
  .urgency-box-mobile {
    display: none;
  }
}

.urgency-box-desktop {
  display: none;
}

@media (min-width: 768px) {
  .urgency-box-desktop {
    display: block;
  }
}

/* Hero Form */
.hero-form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-green);
}

@media (min-width: 768px) {
  .hero-form-wrapper {
    padding: 1.5rem;
    border-width: 5px;
  }
}

@media (min-width: 1024px) {
  .hero-form-wrapper {
    padding: 2rem;
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-green);
  margin-bottom: 1rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .form-tagline {
    font-size: 1rem;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-gray-800);
  margin-bottom: 0.75rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .form-label {
    font-size: 1.125rem;
  }
}

.input-with-validation {
  position: relative;
  width: 100%;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
  border: 2px solid var(--color-gray-200);
  transition: all 0.3s;
  font-family: inherit;
}

.form-input:focus {
  outline: none;
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.2);
}

.form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.validation-check {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-green);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.validation-check:not(.hidden) {
  opacity: 1;
}

.phone-hint {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--color-gray-800);
  color: var(--color-white);
  font-size: 0.875rem;
  border-radius: 0.5rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
}

.phone-hint::before {
  content: '';
  position: absolute;
  top: -4px;
  left: 1rem;
  width: 8px;
  height: 8px;
  background: var(--color-gray-800);
  transform: rotate(45deg);
}

.phone-hint:not(.hidden) {
  opacity: 1;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: var(--color-gray-50);
  padding: 1rem;
  border-radius: 0.5rem;
}

.consent-checkbox {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 2px solid var(--color-gray-200);
  cursor: pointer;
  flex-shrink: 0;
}

.consent-checkbox:focus {
  box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.consent-label {
  font-size: 0.875rem;
  color: var(--color-gray-800);
  cursor: pointer;
  word-wrap: break-word;
  flex: 1;
  min-width: 0;
}

.consent-link {
  text-decoration: underline;
  color: inherit;
  word-wrap: break-word;
  transition: color 0.3s;
}

.consent-link:hover {
  color: var(--color-green);
}

.form-status {
  min-height: 3.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-weight: 600;
  opacity: 1;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  max-height: 200px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.form-status.hidden {
  opacity: 0;
  max-height: 0;
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0;
  pointer-events: none;
}

.form-status.success {
  background: var(--color-green-50);
  color: var(--color-green-800);
  border: 2px solid var(--color-green-200);
}

.form-status.error {
  background: var(--color-red-50);
  color: var(--color-red-800);
  border: 2px solid var(--color-red-600);
}

.form-submit {
  width: 100%;
  background: var(--color-green);
  color: var(--color-white);
  font-size: 1.125rem;
  padding: 1.5rem;
  border-radius: 0.75rem;
  font-weight: 700;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 2px solid var(--color-black);
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
}

@media (min-width: 768px) {
  .form-submit {
    font-size: 1.25rem;
    padding: 1.75rem;
  }
}

.form-submit:hover {
  background: #45a049;
  transform: scale(1.02);
}

.form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.submit-text {
  word-wrap: break-word;
  padding: 0 0.5rem;
}

.form-footer {
  text-align: center;
  font-weight: 600;
  padding-top: 0.5rem;
  line-height: 1.4;
}

.form-footer-highlight {
  color: var(--color-green);
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .form-footer-highlight {
    font-size: 1rem;
  }
}

.form-footer-hours {
  color: var(--color-gray-600);
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  word-wrap: break-word;
}

@media (min-width: 768px) {
  .form-footer-hours {
    font-size: 1rem;
  }
}

.form-footer-email {
  font-size: 0.875rem;
  color: var(--color-gray-800);
  word-wrap: break-word;
}

/* Hero Right */
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .hero-right {
    padding-left: 3rem;
    margin-top: 0;
    margin-left: auto;
    margin-right: 0;
  }
}

.hero-image-wrapper {
  width: 192px;
  height: 192px;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .hero-image-wrapper {
    width: 256px;
    height: 256px;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-image-wrapper {
    width: 320px;
    height: 320px;
  }
}

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

.hero-message {
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-quote {
  position: relative;
}

.hero-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-green);
  border-radius: 0 0.75rem 0.75rem 0;
}

.hero-quote {
  border-left: 4px solid var(--color-green);
  padding-left: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0 0.75rem 0.75rem 0;
}

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

@media (min-width: 768px) {
  .quote-text {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .quote-text {
    font-size: 1.25rem;
  }
}

.hero-lawyer-card {
  background: var(--color-white);
  color: var(--color-gray-800);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-green);
}

.lawyer-card-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .lawyer-card-name {
    font-size: 1.5rem;
  }
}

.lawyer-card-desc {
  font-size: 1rem;
  color: var(--color-black);
  margin-bottom: 0.25rem;
}

@media (min-width: 768px) {
  .lawyer-card-desc {
    font-size: 1.125rem;
  }
}

/* Packs Section */
.packs-section {
  padding: 3rem 1rem;
  background: var(--color-gray-100);
}

@media (min-width: 768px) {
  .packs-section {
    padding: 5rem 1rem;
  }
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3rem;
  }
}

.packs-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .packs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pack-card {
  background: var(--color-white);
  border-radius: 1.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  height: 100%;
}

.pack-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.pack-yellow {
  border: 4px solid var(--color-yellow-600);
}

.pack-orange {
  border: 4px solid var(--color-orange-600);
}

.pack-red {
  border: 4px solid var(--color-red-800);
}

.pack-header {
  padding: 2rem 1.5rem 1.5rem;
}

.pack-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.pack-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.pack-objective {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pack-content {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.pack-content-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-600);
  margin-bottom: 0.75rem;
}

.pack-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.pack-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 0.5rem;
  flex-shrink: 0;
}

.pack-yellow .pack-dot {
  background: var(--color-yellow-600);
}

.pack-orange .pack-dot {
  background: var(--color-orange-600);
}

.pack-red .pack-dot {
  background: var(--color-red-800);
}

.pack-item p {
  font-size: 0.875rem;
}

.pack-divider {
  border-top: 2px dashed var(--color-gray-200);
  margin: 0 1.5rem;
}

.pack-price {
  padding: 1rem 1.5rem;
  text-align: center;
}

.pack-price-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gray-600);
  margin-bottom: 0.5rem;
}

.pack-price-amount {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pack-yellow .pack-price-amount {
  color: var(--color-yellow-700);
}

.pack-orange .pack-price-amount {
  color: var(--color-orange-700);
}

.pack-red .pack-price-amount {
  color: var(--color-red-800);
}

.pack-price-ht {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-gray-600);
}

.pack-benefit {
  padding: 1.5rem;
  background: var(--color-gray-100);
}

.pack-benefit-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-black);
  margin-bottom: 0.5rem;
}

.pack-benefit-text {
  font-size: 0.875rem;
  color: var(--color-black);
}

/* Callback Section */
.callback-section {
  margin-top: 2rem;
  background: rgba(76, 175, 80, 0.1);
  border-radius: 1.5rem;
  padding: 1.5rem;
  border: 2px solid var(--color-green);
}

@media (min-width: 768px) {
  .callback-section {
    margin-top: 4rem;
    padding: 2rem;
    border-width: 5px;
  }
}

@media (min-width: 1024px) {
  .callback-section {
    padding: 3rem;
  }
}

.callback-content {
  max-width: 1024px;
  margin: 0 auto;
}

.callback-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .callback-header {
    margin-bottom: 2rem;
  }
}

.callback-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .callback-title {
    font-size: 1.875rem;
    margin-bottom: 0.75rem;
  }
}

@media (min-width: 1024px) {
  .callback-title {
    font-size: 2.25rem;
  }
}

.callback-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .callback-subtitle {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .callback-subtitle {
    font-size: 1.125rem;
  }
}

.callback-phone-button {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--color-green);
  color: var(--color-white);
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  transition: all 0.3s;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  font-size: 1.5rem;
  font-weight: 800;
  border: 2px solid var(--color-black);
  white-space: nowrap;
  text-decoration: none;
}

@media (min-width: 768px) {
  .callback-phone-button {
    gap: 1rem;
    padding: 1.25rem 2rem;
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .callback-phone-button {
    font-size: 2.25rem;
  }
}

.callback-phone-button:hover {
  background: #45a049;
  transform: scale(1.05);
}

.callback-form-wrapper {
  background: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* Expertise Section */
.expertise-section {
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .expertise-section {
    padding: 5rem 1rem;
  }
}

.expertise-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-gray-600);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .expertise-label {
    font-size: 0.875rem;
    margin-bottom: 1rem;
  }
}

.expertise-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .expertise-header {
    flex-direction: row;
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.expertise-text {
  flex: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .expertise-text {
    text-align: right;
  }
}

.expertise-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .expertise-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .expertise-title {
    font-size: 3rem;
  }
}

.expertise-subtitle {
  font-size: 1rem;
  color: var(--color-gray-600);
  max-width: 512px;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .expertise-subtitle {
    font-size: 1.25rem;
    margin-left: auto;
  }
}

.expertise-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--color-gray-200);
  flex-shrink: 0;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .expertise-image {
    width: 256px;
    height: 256px;
  }
}

.expertise-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-quote {
  text-align: center;
  font-style: italic;
  font-size: 1.125rem;
  color: var(--color-gray-600);
  margin-bottom: 2rem;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .expertise-quote {
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }
}

.quote-author {
  font-weight: 600;
}

/* Value Props */
.value-props {
  background: var(--color-gray-800);
  color: var(--color-white);
  border-radius: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .value-props {
    border-radius: 1.5rem;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .value-props {
    padding: 4rem;
  }
}

.value-props-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .value-props-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.value-prop {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .value-prop {
    gap: 1rem;
    margin-bottom: 2rem;
  }
}

.value-prop-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-green);
  margin-top: 0.5rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .value-prop-dot {
    margin-top: 0.75rem;
  }
}

.value-prop-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .value-prop-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
  }
}

.value-prop-text {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .value-prop-text {
    font-size: 1rem;
  }
}

/* Footer */
.footer {
  background: var(--color-gray-800);
  color: var(--color-white);
  padding: 3rem 1rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .footer {
    padding: 4rem 1rem;
  }
}

.footer-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-title {
    font-size: 2.25rem;
    margin-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .footer-title {
    font-size: 3rem;
  }
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.footer-logo {
  display: inline-block;
  width: 320px;
  height: 80px;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  cursor: pointer;
  transition: opacity 0.3s;
}

@media (min-width: 768px) {
  .footer-logo {
    width: 500px;
    height: 128px;
    margin-bottom: 1.5rem;
  }
}

.footer-logo:hover {
  opacity: 0.8;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.footer-desc {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  font-weight: 600;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s;
}

.footer-link:hover {
  color: var(--color-white);
}

.footer-copyright {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 50;
  background: var(--color-green);
  color: var(--color-white);
  padding: 1rem;
  border-radius: 50%;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
  border: 2px solid var(--color-black);
  cursor: pointer;
}

.back-to-top:hover {
  background: #45a049;
  transform: scale(1.1);
}

/* Cookie Consent Banner */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.95);
  color: var(--color-white);
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  box-shadow: 0 -10px 15px -3px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-content {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-text {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cookie-link {
  text-decoration: underline;
  color: inherit;
  transition: color 0.3s;
}

.cookie-link:hover {
  color: var(--color-green);
}

.cookie-buttons {
  display: flex;
  gap: 0.5rem;
}

.cookie-btn {
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.3s;
  font-family: inherit;
  border: none;
}

.cookie-decline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--color-white);
}

.cookie-decline:hover {
  border-color: rgba(255, 255, 255, 0.6);
}

.cookie-accept {
  background: var(--color-green);
  color: var(--color-white);
}

.cookie-accept:hover {
  background: #45a049;
}

/* Loading Spinner */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: var(--color-white);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}
