/* Apple-style Home Page for HMD FK UM */

/* Body Background Gradient */
body {
  background: linear-gradient(180deg, 
    rgba(22, 22, 24, 1) 0%, 
    rgba(28, 28, 30, 0.98) 15%, 
    rgba(32, 32, 34, 0.95) 30%,
    rgba(36, 36, 38, 0.92) 50%,
    rgba(28, 28, 30, 0.95) 70%,
    rgba(22, 22, 24, 0.98) 85%,
    rgba(20, 20, 22, 1) 100%
  );
  background-attachment: fixed;
}

/* Hero Section */
.apple-hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  text-align: center;
  background: transparent;
}

.apple-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: radial-gradient(circle at top right, rgba(10, 132, 255, 0.07), transparent 60%),
              radial-gradient(circle at bottom left, rgba(191, 90, 242, 0.07), transparent 60%);
}

.apple-hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(800px circle at 20% 50%, rgba(10, 132, 255, 0.08), transparent 60%),
    radial-gradient(600px circle at 80% 20%, rgba(191, 90, 242, 0.08), transparent 60%),
    radial-gradient(700px circle at 70% 80%, rgba(50, 215, 75, 0.05), transparent 60%);
  z-index: -1;
  animation: bgPulse 18s infinite alternate ease-in-out;
}

@keyframes bgPulse {
  0% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.03);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

.apple-hero-content {
  max-width: 800px;
  animation: fadeInUp 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 40px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.5), rgba(70, 70, 74, 0.3));
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.apple-hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: rgba(10, 132, 255, 0.1);
  border-radius: var(--apple-radius-pill);
  color: var(--apple-blue);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 36px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(10, 132, 255, 0.25);
  box-shadow: 0 4px 15px rgba(10, 132, 255, 0.15);
  letter-spacing: 0.01em;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.apple-hero-badge:hover {
  background: rgba(10, 132, 255, 0.15);
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(10, 132, 255, 0.2);
}

/* Efek kilatan cahaya yang lebih halus */
.apple-hero-badge::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.1) 40%,
    rgba(255, 255, 255, 0.15) 50%,
    rgba(255, 255, 255, 0.1) 60%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(45deg);
  animation: badgeShimmer 5s infinite linear;
}

@keyframes badgeShimmer {
  0% {
    transform: rotate(45deg) translate(-100%, -100%);
  }
  100% {
    transform: rotate(45deg) translate(100%, 100%);
  }
}

.apple-hero-title-container {
  position: relative;
  display: inline-block;
}

.apple-hero-title {
  font-size: 76px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #0A84FF, #5E5CE6, #BF5AF2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  text-shadow: 0 10px 30px rgba(10, 132, 255, 0.3);
}

.apple-hero-title-shadow {
  position: absolute;
  top: 5px;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0A84FF, #5E5CE6, #BF5AF2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: blur(25px);
  opacity: 0.5;
  z-index: -1;
  animation: pulseShadow 4s infinite alternate;
}

@keyframes pulseShadow {
  0% {
    opacity: 0.3;
    filter: blur(20px);
  }
  100% {
    opacity: 0.5;
    filter: blur(30px);
  }
}

/* Garis pembatas dengan warna solid */
.apple-hero-line {
  height: 4px;
  background: #0A84FF;
  margin: 0 auto 28px;
  border-radius: 4px;
  width: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(10, 132, 255, 0.3);
}

/* Hapus efek shimmer pada garis */
.apple-hero-line::after {
  display: none;
}

.apple-hero-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
  letter-spacing: 0.01em;
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto 36px;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
}

.apple-hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 24px;
  z-index: 2;
  position: relative;
}

.apple-hero-button {
  padding: 16px 32px;
  border-radius: var(--apple-radius-pill);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.apple-hero-button i {
  font-size: 18px;
}

.apple-hero-button.primary {
  background: linear-gradient(135deg, #0A84FF, #0071E3);
  color: white;
  border: none;
  box-shadow: 0 10px 25px rgba(10, 132, 255, 0.4);
}

.apple-hero-button.secondary {
  background: rgba(60, 60, 67, 0.15);
  color: var(--apple-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.apple-hero-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -50%;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0));
  transform: skewX(-25deg);
  animation: buttonShimmer 4s infinite;
}

@keyframes buttonShimmer {
  0% {
    left: -50%;
  }
  100% {
    left: 150%;
  }
}

.apple-hero-button.primary:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(10, 132, 255, 0.5);
  background: linear-gradient(135deg, #0A84FF, #0064CA);
}

.apple-hero-button.secondary:hover {
  transform: translateY(-7px);
  background: rgba(60, 60, 67, 0.25);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.2);
}

.apple-hero-button.primary:active,
.apple-hero-button.secondary:active {
  transform: translateY(-3px);
}

/* Scroll indicator tanpa teks */
.apple-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 5;
}

.apple-hero-scroll:hover {
  transform: translateX(-50%) translateY(-5px);
}

.apple-scroll-indicator {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(60, 60, 67, 0.2);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--apple-text);
  font-size: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  animation: floatDown 2s infinite;
  transition: all 0.4s ease;
}

.apple-hero-scroll:hover .apple-scroll-indicator {
  background: rgba(60, 60, 67, 0.3);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Sembunyikan teks pada scroll indicator */
.apple-hero-scroll p {
  display: none;
}

/* Floating elements animation */
.apple-float {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  animation: floatingAnimation 15s infinite ease-in-out;
  opacity: 0.5;
}

.apple-float-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.4), rgba(94, 92, 230, 0.1));
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  transform-origin: center center;
}

.apple-float-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(191, 90, 242, 0.3), rgba(94, 92, 230, 0.1));
  bottom: 15%;
  right: 10%;
  animation-delay: -3s;
  transform-origin: bottom right;
}

.apple-float-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, rgba(50, 215, 75, 0.2), rgba(94, 92, 230, 0.1));
  top: 15%;
  right: 20%;
  animation-delay: -6s;
  transform-origin: top right;
}

.apple-float-4 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, rgba(255, 159, 10, 0.2), rgba(94, 92, 230, 0.1));
  bottom: 10%;
  left: 15%;
  animation-delay: -9s;
  transform-origin: bottom left;
}

.apple-float-5 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, rgba(255, 69, 58, 0.15), rgba(94, 92, 230, 0.05));
  top: 40%;
  left: 50%;
  animation-delay: -12s;
  transform-origin: center center;
}

@keyframes floatingAnimation {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(20px, -15px) scale(1.05) rotate(2deg);
  }
  50% {
    transform: translate(-10px, 20px) scale(0.95) rotate(-1deg);
  }
  75% {
    transform: translate(-25px, -10px) scale(1.02) rotate(-3deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@keyframes floatDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(200%);
  }
}

@keyframes shimmerLine {
  0% {
    transform: translateX(-100%);
  }
  40%, 100% {
    transform: translateX(200%);
  }
}

/* Media Queries */
@media (max-width: 992px) {
  .apple-hero-title {
    font-size: 62px;
  }
  
  .apple-hero-subtitle {
    font-size: 17px;
  }
  
  .apple-hero-content {
    max-width: 700px;
    padding: 35px;
  }
  
  /* About section responsive styles */
  .apple-about-section {
    padding: 80px 0;
  }
  
  .apple-about-container {
    padding: 0 20px;
    gap: 40px;
  }
  
  .apple-about-content {
    flex: 1.2;
  }
  
  .apple-about-image-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .apple-hero {
    padding: 100px 20px 70px;
  }
  
  .apple-hero-title {
    font-size: 52px;
  }
  
  .apple-hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .apple-hero-badge {
    font-size: 13px;
    padding: 7px 16px;
    margin-bottom: 28px;
  }
  
  .apple-hero-content {
    max-width: 100%;
    padding: 30px;
  }
  
  .apple-hero-line {
    width: 60px;
    height: 3px;
    margin-bottom: 20px;
  }
  
  .apple-hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .apple-hero-button {
    width: 100%;
  }
  
  .apple-float {
    opacity: 0.4;
  }
  
  /* About section mobile styles */
  .apple-about-section {
    padding: 60px 0;
  }
  
  .apple-about-container {
    flex-direction: column;
    padding: 0 16px;
    gap: 40px;
  }
  
  .apple-about-content {
    text-align: center;
  }
  
  .apple-about-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  
  .apple-about-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .apple-about-text {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .apple-about-image {
    justify-content: center;
  }
  
  .apple-about-image-wrapper {
    max-width: 300px;
    transform: rotate(0);
  }
  
  .apple-about-actions {
    justify-content: center;
    margin-top: 24px;
  }
}

@media (max-width: 576px) {
  .apple-hero {
    padding: 90px 16px 60px;
  }
  
  .apple-hero-title {
    font-size: 42px;
  }
  
  .apple-hero-title-shadow {
    filter: blur(15px);
  }
  
  .apple-hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .apple-hero-content {
    padding: 24px 20px;
  }
  
  .apple-hero-line {
    width: 50px;
    margin-bottom: 16px;
  }
  
  .apple-hero-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .apple-hero-buttons {
    gap: 12px;
    margin-top: 16px;
  }
  
  .apple-scroll-indicator {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  
  .apple-hero-scroll p {
    font-size: 12px;
  }
  
  .apple-float {
    opacity: 0.3;
    filter: blur(60px);
  }
  
  /* About section extra small mobile styles */
  .apple-about-section {
    padding: 50px 0;
  }
  
  .apple-about-container {
    padding: 0 12px;
    gap: 32px;
  }
  
  .apple-about-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .apple-about-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .apple-about-text {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .apple-about-image-wrapper {
    max-width: 250px;
  }
  
  .apple-about-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  
  .apple-about-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Featured Section */
.apple-featured-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.apple-featured-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.apple-featured-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  color: var(--apple-text);
}

.apple-featured-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
  margin-bottom: 60px;
}

.apple-featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.apple-featured-card {
  background: rgba(44, 44, 46, 0.4);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--apple-transition-base);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.apple-featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(44, 44, 46, 0.5);
}

.apple-featured-icon {
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--apple-blue), var(--apple-purple));
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  transition: var(--apple-transition-bounce);
}

.apple-featured-card:hover .apple-featured-icon {
  transform: scale(1.1) rotate(-5deg);
}

.apple-featured-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--apple-text);
}

.apple-featured-card p {
  font-size: 15px;
  color: var(--apple-text-secondary);
  line-height: 1.6;
}

/* Carousel Section */
.apple-carousel-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  background: transparent;
}

.apple-carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.apple-carousel-title {
  text-align: center;
  margin-bottom: 12px;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.apple-carousel-subtitle {
  font-size: 18px;
  color: var(--apple-text-secondary);
  text-align: center;
  margin-bottom: 50px;
}

.apple-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 100%;
  border-radius: var(--apple-radius-lg);
  overflow: hidden;
}

.apple-carousel-wrapper {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.apple-carousel-slide {
  min-width: 100%;
  overflow: hidden;
  position: relative;
  border-radius: var(--apple-radius-lg);
  transform: scale(0.98);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.apple-carousel-slide.active {
  transform: scale(1);
}

.apple-carousel-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--apple-radius-lg);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.apple-carousel-slide:hover img {
  transform: scale(1.02);
}

.apple-carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4) 70%, transparent);
  color: #fff;
  border-radius: 0 0 var(--apple-radius-lg) var(--apple-radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.apple-carousel-caption h3 {
  font-size: 24px;
  margin-bottom: 8px;
  font-weight: 600;
}

.apple-carousel-caption p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
}

.apple-carousel-nav {
  display: flex;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(18, 18, 20, 0.5);
  backdrop-filter: var(--apple-blur);
  -webkit-backdrop-filter: var(--apple-blur);
  border: 1px solid var(--apple-separator);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--apple-transition-fast);
}

.apple-carousel-nav:hover {
  background: rgba(60, 60, 67, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.apple-carousel-nav.prev {
  left: 20px;
}

.apple-carousel-nav.next {
  right: 20px;
}

.apple-carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 10px;
}

.apple-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--apple-text-tertiary);
  transition: var(--apple-transition-fast);
  cursor: pointer;
}

.apple-carousel-dot.active {
  background-color: var(--apple-blue);
  transform: scale(1.2);
}

.apple-carousel-dot:hover {
  transform: scale(1.2);
}

/* About Section */
.apple-about-section {
  padding: 100px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.apple-about-container {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.apple-about-content {
  flex: 1;
}

.apple-about-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(191, 90, 242, 0.15);
  border-radius: var(--apple-radius-pill);
  color: var(--apple-purple);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(191, 90, 242, 0.3);
}

.apple-about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--apple-text);
}

.apple-about-text {
  font-size: 16px;
  color: var(--apple-text-secondary);
  margin-bottom: 24px;
  line-height: 1.6;
}

.apple-about-actions {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.apple-about-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.apple-about-image-wrapper {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.apple-about-image:hover .apple-about-image-wrapper {
  transform: rotate(0) scale(1.02);
}

.apple-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.apple-about-image:hover img {
  transform: scale(1.05);
}

/* CTA Section */
.apple-cta-section {
  padding: 120px 0;
  background: transparent;
  position: relative;
  overflow: hidden;
}

.apple-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 132, 255, 0.3), rgba(191, 90, 242, 0.3));
  opacity: 0.8;
  z-index: 0;
}

.apple-cta-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.apple-cta-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.apple-cta-content {
  background: linear-gradient(135deg, rgba(44, 44, 46, 0.5), rgba(70, 70, 74, 0.3));
  border-radius: 30px;
  padding: 60px 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}

.apple-cta-title {
  font-size: 36px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.apple-cta-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.apple-button.large {
  padding: 16px 36px;
  font-size: 18px;
}

@media (max-width: 992px) {
  .apple-hero-title {
    font-size: 62px;
  }
  
  .apple-hero-subtitle {
    font-size: 17px;
  }
  
  .apple-hero-content {
    max-width: 700px;
    padding: 35px;
  }
  
  /* About section responsive styles */
  .apple-about-section {
    padding: 80px 0;
  }
  
  .apple-about-container {
    padding: 0 20px;
    gap: 40px;
  }
  
  .apple-about-content {
    flex: 1.2;
  }
  
  .apple-about-image-wrapper {
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .apple-hero {
    padding: 100px 20px 70px;
  }
  
  .apple-hero-title {
    font-size: 52px;
  }
  
  .apple-hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
  }
  
  .apple-hero-badge {
    font-size: 13px;
    padding: 7px 16px;
    margin-bottom: 28px;
  }
  
  .apple-hero-content {
    max-width: 100%;
    padding: 30px;
  }
  
  .apple-hero-line {
    width: 60px;
    height: 3px;
    margin-bottom: 20px;
  }
  
  .apple-hero-buttons {
    flex-direction: column;
    gap: 16px;
  }
  
  .apple-hero-button {
    width: 100%;
  }
  
  .apple-float {
    opacity: 0.4;
  }
  
  /* About section mobile styles */
  .apple-about-section {
    padding: 60px 0;
  }
  
  .apple-about-container {
    flex-direction: column;
    padding: 0 16px;
    gap: 40px;
  }
  
  .apple-about-content {
    text-align: center;
  }
  
  .apple-about-title {
    font-size: 38px;
    margin-bottom: 16px;
  }
  
  .apple-about-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }
  
  .apple-about-text {
    font-size: 16px;
    line-height: 1.6;
  }
  
  .apple-about-image {
    justify-content: center;
  }
  
  .apple-about-image-wrapper {
    max-width: 300px;
    transform: rotate(0);
  }
  
  .apple-about-actions {
    justify-content: center;
    margin-top: 24px;
  }
}

@media (max-width: 576px) {
  .apple-hero {
    padding: 90px 16px 60px;
  }
  
  .apple-hero-title {
    font-size: 42px;
  }
  
  .apple-hero-title-shadow {
    filter: blur(15px);
  }
  
  .apple-hero-subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
  
  .apple-hero-content {
    padding: 24px 20px;
  }
  
  .apple-hero-line {
    width: 50px;
    margin-bottom: 16px;
  }
  
  .apple-hero-button {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .apple-hero-buttons {
    gap: 12px;
    margin-top: 16px;
  }
  
  .apple-scroll-indicator {
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  
  .apple-hero-scroll p {
    font-size: 12px;
  }
  
  .apple-float {
    opacity: 0.3;
    filter: blur(60px);
  }
  
  /* About section extra small mobile styles */
  .apple-about-section {
    padding: 50px 0;
  }
  
  .apple-about-container {
    padding: 0 12px;
    gap: 32px;
  }
  
  .apple-about-title {
    font-size: 32px;
    margin-bottom: 12px;
  }
  
  .apple-about-subtitle {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .apple-about-text {
    font-size: 15px;
    line-height: 1.5;
  }
  
  .apple-about-image-wrapper {
    max-width: 250px;
  }
  
  .apple-about-actions {
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }
  
  .apple-about-button {
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }
}