
:root {
  --apple-blue: #007AFF;
  --apple-blue-light: #5AC8FA;
  --apple-gray-1: #F2F2F7;
  --apple-gray-2: #E5E5EA;
  --apple-gray-3: #D1D1D6;
  --apple-gray-4: #C7C7CC;
  --apple-gray-5: #AEAEB2;
  --apple-gray-6: #6D6D70;
  --apple-black: #1D1D1F;
  --apple-white: #FFFFFF;
  --apple-green: #30D158;
  --apple-orange: #FF9F0A;
  --apple-red: #FF3B30;
  
  --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Inter', system-ui, sans-serif;
  --border-radius: 16px;
  --border-radius-small: 8px;
  --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-2: 0 4px 14px rgba(0, 0, 0, 0.1);
  --shadow-3: 0 10px 40px rgba(0, 0, 0, 0.15);
  
  --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--apple-black);
  background: var(--apple-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.apple-page {
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 122, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(90, 200, 250, 0.1) 0%, transparent 50%);
}

.hero-container {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.gradient-text {
  background: linear-gradient(135deg, var(--apple-blue) 0%, var(--apple-blue-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--apple-gray-6);
  max-width: 700px;
  margin: 0 auto 40px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-subtitle strong {
  color: var(--apple-black);
  font-weight: 600;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* Apple Buttons */
.apple-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: none;
  cursor: pointer;
  font-family: var(--font-family);
}

.apple-button.primary {
  background: linear-gradient(135deg, var(--apple-blue) 0%, var(--apple-blue-light) 100%);
  color: var(--apple-white);
  box-shadow: var(--shadow-2);
}

.apple-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-3);
}

.apple-button.secondary {
  background: var(--apple-white);
  color: var(--apple-blue);
  border: 1px solid var(--apple-gray-3);
  box-shadow: var(--shadow-1);
}

.apple-button.secondary:hover {
  background: var(--apple-gray-1);
  transform: translateY(-1px);
}

.apple-button.large {
  padding: 18px 36px;
  font-size: 1.1rem;
}

.button-icon {
  width: 16px;
  height: 16px;
  transition: var(--transition);
}

.apple-button:hover .button-icon {
  transform: translateX(2px);
}

.time-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--apple-gray-6);
}

.time-icon {
  width: 16px;
  height: 16px;
  color: var(--apple-green);
}

/* Content Section */
.content-section {
  padding: 100px 20px;
  background: var(--apple-white);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  color: var(--apple-black);
}

.section-description {
  font-size: 1.1rem;
  color: var(--apple-gray-6);
  margin-bottom: 32px;
  line-height: 1.6;
}

.feature-list {
  margin-bottom: 32px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px 0;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--apple-green) 0%, #00C851 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-icon svg {
  width: 12px;
  height: 12px;
  color: var(--apple-white);
}

.feature-note {
  font-size: 1rem;
  color: var(--apple-gray-6);
  margin-bottom: 32px;
  padding: 20px;
  background: var(--apple-gray-1);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--apple-blue);
}

.content-image {
  position: relative;
}

.image-container {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 122, 255, 0.1) 0%, rgba(90, 200, 250, 0.1) 100%);
}

/* Process Section */
.process-section {
  padding: 100px 20px;
  background: var(--apple-gray-1);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.process-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--apple-black);
}

.process-subtitle {
  font-size: 1.2rem;
  color: var(--apple-gray-6);
  max-width: 600px;
  margin: 0 auto 60px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.step-card {
  background: var(--apple-white);
  padding: 40px 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-2);
  transition: var(--transition);
  position: relative;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-3);
}

.step-number {
  font-size: 1rem;
  font-weight: 600;
  color: var(--apple-blue);
  background: rgba(0, 122, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--apple-black);
}

.step-description {
  color: var(--apple-gray-6);
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, var(--apple-black) 0%, #2c2c2e 100%);
  color: var(--apple-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(0, 122, 255, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(90, 200, 250, 0.2) 0%, transparent 50%);
}

.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  line-height: 1.6;
}

.cta-buttons {
  margin-bottom: 0px;
}

.business-info {
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.business-info h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--apple-white);
}

.business-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 4px;
}

.phone-link {
  color: var(--apple-blue-light);
  text-decoration: none;
  font-weight: 500;
}

.phone-link:hover {
  text-decoration: underline;
}

.floating-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--border-radius);
  padding: 32px;
  text-align: center;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--apple-orange) 0%, #FF6B35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: var(--apple-white);
}

.card-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid,
  .cta-container {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 80px 20px 60px;
  }
  
  .content-section,
  .process-section,
  .cta-section {
    padding: 80px 20px;
  }
  
  .section-title,
  .process-title,
  .cta-title {
    font-size: 2rem;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .step-card {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    padding: 60px 16px 40px;
  }
  
  .content-section,
  .process-section,
  .cta-section {
    padding: 60px 16px;
  }
  
  .apple-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
  
  .apple-button.large {
    padding: 14px 28px;
    font-size: 1rem;
  }
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.apple-button:focus {
  outline: 2px solid var(--apple-blue);
  outline-offset: 2px;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .floating-card {
    animation: none;
  }
}

/* Direct Pay Section */
.direct-pay-section {
  padding: 100px 20px;
  background: var(--apple-white);
  border-top: 1px solid var(--apple-gray-2);
}

.direct-pay-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.direct-pay-logo {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.direct-pay-logo img {
  max-width: 200px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
  transition: var(--transition);
}

.direct-pay-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.15));
}

.direct-pay-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
  letter-spacing: -0.01em;
  color: var(--apple-black);
  line-height: 1.2;
}

.direct-pay-content {
  margin-bottom: 40px;
}

.direct-pay-lead {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--apple-black);
  margin-bottom: 24px;
  line-height: 1.5;
}

.direct-pay-description {
  font-size: 1.1rem;
  color: var(--apple-gray-6);
  margin-bottom: 40px;
  line-height: 1.6;
}

.direct-pay-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive adjustments for Direct Pay section */
@media (max-width: 768px) {
  .direct-pay-section {
    padding: 80px 20px;
  }
  
  .direct-pay-title {
    font-size: 2rem;
  }
  
  .direct-pay-lead {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .direct-pay-section {
    padding: 60px 16px;
  }
  
  .direct-pay-title {
    font-size: 1.8rem;
  }
  
  .direct-pay-lead {
    font-size: 1rem;
  }
}

/* Responsive adjustments for logo */
@media (max-width: 768px) {
  .direct-pay-logo img {
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .direct-pay-logo img {
    max-width: 140px;
  }
  
  .direct-pay-logo {
    margin-bottom: 24px;
  }
}

/* Footer Section */
.footer-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--apple-black) 0%, #2c2c2e 100%);
  color: var(--apple-white);
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(0, 122, 255, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 70% 20%, rgba(90, 200, 250, 0.15) 0%, transparent 50%);
}

.footer-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.footer-content .business-info {
  padding-top: 0;
  border-top: none;
}

.footer-content .business-info h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--apple-white);
}

.footer-content .business-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-content .phone-link {
  color: var(--apple-blue-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
}

.footer-content .phone-link:hover {
  text-decoration: underline;
}

.footer-cta {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: var(--transition);
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(255, 255, 255, 0.2));
}

/* Responsive adjustments for footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 60px 20px;
  }
  
  .footer-content {
    gap: 32px;
  }
  
  .footer-content .business-info h4 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .footer-section {
    padding: 50px 16px;
  }
  
  .footer-content {
    gap: 28px;
  }
  
  .footer-content .business-info p {
    font-size: 0.9rem;
  }
}

/* Responsive adjustments for footer logo */
@media (max-width: 768px) {
  .footer-logo img {
    max-width: 150px;
  }
  
  .footer-logo {
    margin-bottom: 16px;
  }
}

@media (max-width: 480px) {
  .footer-logo img {
    max-width: 100px;
  }
  
  .footer-logo {
    margin-bottom: 12px;
  }
}
