 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #FAFAFA;
      color: #1A1A1A;
      overflow-x: hidden;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
      width: 100%;
    }

    .app-wrapper {
      width: 100%;
      min-height: 100%;
    }

    /* Header */
    header {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      box-shadow: 0 1px 3px rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 1000;
      width: 100%;
      transition: all 0.3s ease;
    }

    header.scrolled {
      box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    }

    .header-content {
      max-width: 1400px;
      margin: 0 auto;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo-area {
      display: flex;
      align-items: center;
      gap: 12px;
      cursor: pointer;
    }

    .logo-icon {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, #1A1A1A, #3D3D3D);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .logo-icon::before,
    .logo-icon::after {
      content: '';
      position: absolute;
      background: white;
    }

    .logo-icon::before {
      width: 20px;
      height: 2px;
      top: 15px;
      left: 50%;
      transform: translateX(-50%) rotate(45deg);
    }

    .logo-icon::after {
      width: 20px;
      height: 2px;
      bottom: 15px;
      left: 50%;
      transform: translateX(-50%) rotate(-45deg);
    }

    .logo-text {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 700;
      color: #1A1A1A;
      letter-spacing: -0.5px;
    }

    nav ul {
      display: flex;
      list-style: none;
      gap: 35px;
      align-items: center;
    }

    nav a {
      color: #4A4A4A;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      transition: all 0.3s;
      position: relative;
      padding: 5px 0;
      cursor: pointer;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: #D4A574;
      transition: width 0.3s;
    }

    nav a:hover {
      color: #1A1A1A;
    }

    nav a:hover::after {
      width: 100%;
    }

    .auth-buttons {
      display: flex;
      gap: 15px;
    }

    .btn {
      padding: 12px 28px;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
    }

    .btn-outline {
      background: transparent;
      color: #1A1A1A;
      border: 2px solid #E0E0E0;
    }

    .btn-outline:hover {
      border-color: #1A1A1A;
      background: #1A1A1A;
      color: white;
    }

    .btn-primary {
      background: linear-gradient(135deg, #1A1A1A, #3D3D3D);
      color: white;
      box-shadow: 0 4px 15px rgba(26, 26, 26, 0.2);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(26, 26, 26, 0.3);
    }

    .btn-copper {
      background: linear-gradient(135deg, #D4A574, #B8865C);
      color: white;
      box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    }

    .btn-copper:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 25px rgba(212, 165, 116, 0.4);
    }

    /* Hero */
    .hero {
      background: linear-gradient(135deg, rgba(26,26,26,0.85), rgba(61,61,61,0.85)), 
                  url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1920&q=80');
      background-size: cover;
      background-position: center;
      padding: 120px 40px;
      text-align: center;
      color: white;
      position: relative;
      overflow: hidden;
      width: 100%;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at 50% 50%, rgba(212,165,116,0.15), transparent 70%);
    }

    .hero-content {
      max-width: 900px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .hero-content h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 64px;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.2;
      letter-spacing: -1px;
    }

    .hero-content p {
      font-size: 22px;
      margin-bottom: 40px;
      color: rgba(255,255,255,0.9);
      font-weight: 300;
    }

    .hero-buttons {
      display: flex;
      gap: 20px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Section Styles */
    section {
      max-width: 1400px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    .section-header {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-label {
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: #D4A574;
      font-weight: 700;
      margin-bottom: 15px;
    }

    .section-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 48px;
      font-weight: 700;
      color: #1A1A1A;
      margin-bottom: 20px;
      letter-spacing: -1px;
    }

    .section-header p {
      font-size: 18px;
      color: #6A6A6A;
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Course Grid */
    .course-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 35px;
    }

    .course-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      cursor: pointer;
      position: relative;
      border: 1px solid rgba(0,0,0,0.04);
    }

    .course-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .course-image {
      width: 100%;
      height: 220px;
      background: linear-gradient(135deg, #F5F5F5, #E8E8E8);
      position: relative;
      overflow: hidden;
    }

    .course-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .course-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 64px;
      opacity: 0.3;
    }

    .course-level {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255,255,255,0.95);
      padding: 6px 16px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      color: #1A1A1A;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .course-info {
      padding: 30px;
    }

    .course-category {
      color: #D4A574;
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 12px;
    }

    .course-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #1A1A1A;
      line-height: 1.3;
    }

    .course-description {
      font-size: 15px;
      color: #6A6A6A;
      line-height: 1.6;
      margin-bottom: 20px;
    }

    .course-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 20px;
      border-top: 1px solid #F0F0F0;
    }

    .course-price {
      font-size: 28px;
      font-weight: 700;
      color: #1A1A1A;
    }

    .course-price span {
      font-size: 16px;
      color: #6A6A6A;
      font-weight: 400;
    }

    .btn-small {
      padding: 10px 22px;
      font-size: 14px;
    }

    /* Programs */
    .programs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 40px;
    }

    .program-card {
      background: white;
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.3s;
      border: 2px solid transparent;
    }

    .program-card:hover {
      border-color: #D4A574;
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .program-badge {
      display: inline-block;
      background: linear-gradient(135deg, #1A1A1A, #3D3D3D);
      color: white;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 20px;
    }

    .program-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 28px;
      margin-bottom: 15px;
      color: #1A1A1A;
    }

    .program-card p {
      color: #6A6A6A;
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .program-details {
      display: flex;
      gap: 30px;
      margin-bottom: 25px;
      padding: 20px 0;
      border-top: 1px solid #F0F0F0;
      border-bottom: 1px solid #F0F0F0;
    }

    .program-detail-item {
      flex: 1;
    }

    .program-detail-label {
      font-size: 12px;
      color: #9A9A9A;
      text-transform: uppercase;
      letter-spacing: 1px;
      margin-bottom: 5px;
    }

    .program-detail-value {
      font-size: 18px;
      font-weight: 700;
      color: #1A1A1A;
    }

    .program-modules {
      margin-bottom: 30px;
    }

    .program-modules h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1A1A1A;
    }

    .program-modules ul {
      list-style: none;
    }

    .program-modules li {
      padding: 10px 0;
      color: #6A6A6A;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .program-modules li::before {
      content: '✓';
      color: #D4A574;
      font-weight: bold;
      font-size: 18px;
    }

    /* Tools Section */
    .tools-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
      gap: 25px;
    }

    .tool-card {
      background: white;
      border-radius: 16px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.3s;
      cursor: pointer;
      border: 2px solid transparent;
    }

    .tool-card:hover {
      border-color: #D4A574;
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(212, 165, 116, 0.2);
    }

    .tool-icon {
      font-size: 52px;
      margin-bottom: 20px;
      filter: grayscale(100%);
      transition: filter 0.3s;
    }

    .tool-card:hover .tool-icon {
      filter: grayscale(0%);
    }

    .tool-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 600;
      color: #1A1A1A;
    }

    /* Mentors */
    .mentors-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 35px;
    }

    .mentor-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.3s;
      cursor: pointer;
      position: relative;
    }

    .mentor-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .mentor-image {
      width: 100%;
      height: 320px;
      background: linear-gradient(135deg, #E8E8E8, #D0D0D0);
      position: relative;
      overflow: hidden;
    }

    .mentor-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .mentor-image::after {
      content: '👤';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 80px;
      opacity: 0.2;
    }

    .mentor-info {
      padding: 25px;
    }

    .mentor-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 5px;
      color: #1A1A1A;
    }

    .mentor-title {
      color: #D4A574;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 12px;
    }

    .mentor-experience {
      font-size: 14px;
      color: #6A6A6A;
      margin-bottom: 15px;
    }

    .mentor-skills {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 15px;
    }

    .skill-tag {
      background: #F5F5F5;
      padding: 6px 14px;
      border-radius: 15px;
      font-size: 12px;
      color: #4A4A4A;
      font-weight: 500;
    }

    .mentor-social {
      display: flex;
      gap: 12px;
    }

    .social-link {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #F5F5F5;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      font-size: 16px;
    }

    .social-link:hover {
      background: #1A1A1A;
      color: white;
    }

    /* Portfolio / Projects */
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }

    .portfolio-item {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      cursor: pointer;
      position: relative;
      transition: all 0.3s;
    }

    .portfolio-item:hover {
      transform: scale(1.02);
      box-shadow: 0 15px 35px rgba(0,0,0,0.12);
    }

    .portfolio-image {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, #E8E8E8, #D0D0D0);
      position: relative;
      overflow: hidden;
    }

    .portfolio-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .portfolio-item:hover .portfolio-image img {
      transform: scale(1.1);
    }

    .portfolio-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(26,26,26,0.9), transparent);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 30px;
    }

    .portfolio-item:hover .portfolio-overlay {
      opacity: 1;
    }

    .portfolio-overlay h4 {
      color: white;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 20px;
      margin-bottom: 8px;
    }

    .portfolio-overlay p {
      color: rgba(255,255,255,0.8);
      font-size: 14px;
    }

    .stats-section {
      background: linear-gradient(135deg, #1A1A1A, #3D3D3D);
      padding: 80px 40px;
      text-align: center;
      width: 100%;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 50px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .stat-item {
      color: white;
    }

    .stat-number {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 56px;
      font-weight: 700;
      color: #D4A574;
      margin-bottom: 10px;
      line-height: 1;
    }

    .stat-label {
      font-size: 18px;
      color: rgba(255,255,255,0.9);
      font-weight: 300;
    }

    /* Blog */
    .blog-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
      gap: 35px;
    }

    .blog-card {
      background: white;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.3s;
      cursor: pointer;
    }

    .blog-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    }

    .blog-image {
      width: 100%;
      height: 240px;
      background: linear-gradient(135deg, #E8E8E8, #D0D0D0);
      position: relative;
      overflow: hidden;
    }

    .blog-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blog-category {
      position: absolute;
      top: 20px;
      left: 20px;
      background: white;
      color: #1A1A1A;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .blog-content {
      padding: 30px;
    }

    .blog-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 600;
      margin-bottom: 12px;
      color: #1A1A1A;
      line-height: 1.4;
    }

    .blog-excerpt {
      font-size: 15px;
      color: #6A6A6A;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .blog-meta {
      display: flex;
      align-items: center;
      gap: 15px;
      font-size: 14px;
      color: #9A9A9A;
    }

    .read-more-link {
      color: #D4A574;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.3s;
    }

    .read-more-link:hover {
      gap: 12px;
    }

    /* Pricing */
    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .pricing-card {
      background: white;
      border-radius: 16px;
      padding: 45px 35px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.3s;
      border: 2px solid transparent;
      position: relative;
    }

    .pricing-card.featured {
      border-color: #D4A574;
      transform: scale(1.05);
      box-shadow: 0 15px 40px rgba(212, 165, 116, 0.2);
    }

    .pricing-badge {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: linear-gradient(135deg, #D4A574, #B8865C);
      color: white;
      padding: 6px 20px;
      border-radius: 20px;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
    }

    .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    }

    .pricing-card.featured:hover {
      transform: scale(1.05) translateY(-5px);
    }

    .pricing-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 26px;
      font-weight: 600;
      margin-bottom: 15px;
      color: #1A1A1A;
    }

    .pricing-price {
      font-size: 52px;
      font-weight: 700;
      color: #1A1A1A;
      margin-bottom: 10px;
      line-height: 1;
    }

    .pricing-price span {
      font-size: 18px;
      font-weight: 400;
      color: #6A6A6A;
    }

    .pricing-description {
      color: #6A6A6A;
      margin-bottom: 30px;
      padding-bottom: 30px;
      border-bottom: 1px solid #F0F0F0;
    }

    .pricing-features {
      list-style: none;
      margin-bottom: 35px;
    }

    .pricing-features li {
      padding: 12px 0;
      color: #4A4A4A;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .pricing-features li::before {
      content: '✓';
      color: #D4A574;
      font-weight: bold;
      font-size: 18px;
    }

    /* Why Choose Us */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
    }

    .feature-card {
      text-align: center;
      padding: 40px 30px;
      background: white;
      border-radius: 16px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.06);
      transition: all 0.3s;
    }

    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .feature-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 25px;
      background: linear-gradient(135deg, #F5F5F5, #E8E8E8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
    }

    .feature-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      margin-bottom: 15px;
      color: #1A1A1A;
    }

    .feature-card p {
      color: #6A6A6A;
      line-height: 1.7;
    }

    /* Contact */
    .contact-section {
      background: white;
      border-radius: 20px;
      padding: 60px;
      box-shadow: 0 2px 20px rgba(0,0,0,0.06);
      max-width: 800px;
      margin: 0 auto;
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 25px;
      margin-bottom: 25px;
    }

    .form-group {
      margin-bottom: 25px;
    }

    .form-group.full-width {
      grid-column: 1 / -1;
    }

    .form-group label {
      display: block;
      margin-bottom: 10px;
      font-weight: 600;
      color: #1A1A1A;
      font-size: 15px;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 15px 20px;
      border: 2px solid #E8E8E8;
      border-radius: 10px;
      font-size: 15px;
      transition: all 0.3s;
      font-family: 'Inter', sans-serif;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #D4A574;
      box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
    }

    .form-group textarea {
      resize: vertical;
      min-height: 150px;
    }

    .contact-info {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      margin-top: 50px;
      padding-top: 50px;
      border-top: 1px solid #F0F0F0;
    }

    .contact-info-item {
      text-align: center;
    }

    .contact-icon {
      font-size: 36px;
      margin-bottom: 15px;
    }

    .contact-info-item h4 {
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 8px;
      color: #1A1A1A;
    }

    .contact-info-item p {
      color: #6A6A6A;
      font-size: 15px;
    }

    /* Footer */
    footer {
      background: #1A1A1A;
      color: white;
      padding: 80px 40px 30px;
      width: 100%;
    }

    .footer-main {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 24px;
      margin-bottom: 15px;
      color: white;
    }

    .footer-brand p {
      color: rgba(255,255,255,0.7);
      line-height: 1.7;
      margin-bottom: 25px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social-link {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
      font-size: 18px;
      text-decoration: none;
      color: white;
    }

    .footer-social-link:hover {
      background: #D4A574;
      transform: translateY(-3px);
    }

    .footer-section h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      margin-bottom: 25px;
      color: white;
    }

    .footer-section ul {
      list-style: none;
    }

    .footer-section li {
      margin-bottom: 12px;
    }

    .footer-section a {
      color: rgba(255,255,255,0.7);
      text-decoration: none;
      transition: all 0.3s;
      display: inline-block;
      cursor: pointer;
    }

    .footer-section a:hover {
      color: #D4A574;
      padding-left: 5px;
    }

    .footer-subscribe {
      background: rgba(255,255,255,0.05);
      padding: 25px;
      border-radius: 12px;
    }

    .footer-subscribe h4 {
      font-size: 16px;
      margin-bottom: 15px;
    }

    .subscribe-form {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .subscribe-input {
      padding: 12px 18px;
      border: 2px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      background: rgba(255,255,255,0.05);
      color: white;
      font-size: 14px;
    }

    .subscribe-input:focus {
      outline: none;
      border-color: #D4A574;
    }

    .subscribe-input::placeholder {
      color: rgba(255,255,255,0.5);
    }

    .subscribe-message {
      font-size: 13px;
      padding: 10px;
      border-radius: 6px;
      display: none;
      margin-top: 10px;
    }

    .subscribe-message.success {
      background: rgba(126, 217, 87, 0.2);
      color: #7ED957;
    }

    .subscribe-message.info {
      background: rgba(212, 165, 116, 0.2);
      color: #D4A574;
    }

    .footer-bottom {
      max-width: 1400px;
      margin: 0 auto;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.1);
      text-align: center;
    }

    .footer-bottom p {
      color: rgba(255,255,255,0.6);
      margin-bottom: 8px;
    }

    .footer-tagline {
      color: #D4A574;
      font-style: italic;
      font-size: 14px;
    }

    /* Modals */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.8);
      z-index: 3000;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: auto;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      background: white;
      border-radius: 20px;
      max-width: 500px;
      width: 100%;
      max-height: 90%;
      overflow-y: auto;
      animation: modalSlideIn 0.3s ease;
      position: relative;
    }

    @keyframes modalSlideIn {
      from {
        transform: translateY(-30px);
        opacity: 0;
      }
      to {
        transform: translateY(0);
        opacity: 1;
      }
    }

    .modal-header {
      padding: 35px 35px 25px;
      border-bottom: 1px solid #F0F0F0;
    }

    .modal-header h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 28px;
      color: #1A1A1A;
      margin-bottom: 8px;
    }

    .modal-header p {
      color: #6A6A6A;
      font-size: 15px;
    }

    .modal-close {
      position: absolute;
      top: 20px;
      right: 20px;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #F5F5F5;
      border: none;
      cursor: pointer;
      font-size: 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      color: #6A6A6A;
    }

    .modal-close:hover {
      background: #1A1A1A;
      color: white;
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 35px;
    }

    .auth-toggle {
      text-align: center;
      margin-top: 25px;
      color: #6A6A6A;
      font-size: 15px;
    }

    .auth-toggle a {
      color: #D4A574;
      text-decoration: none;
      font-weight: 600;
      cursor: pointer;
    }

    .auth-toggle a:hover {
      text-decoration: underline;
    }

    .policy-modal .modal-content {
      max-width: 900px;
    }

    .policy-content {
      padding: 40px;
      line-height: 1.8;
    }

    .policy-content h1 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 42px;
      margin-bottom: 15px;
      color: #1A1A1A;
    }

    .policy-content h2 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 28px;
      margin: 40px 0 20px;
      color: #1A1A1A;
    }

    .policy-content h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      margin: 30px 0 15px;
      color: #1A1A1A;
    }

    .policy-content p {
      margin-bottom: 15px;
      color: #4A4A4A;
    }

    .policy-content ul,
    .policy-content ol {
      margin: 15px 0 15px 30px;
      color: #4A4A4A;
    }

    .policy-content li {
      margin-bottom: 10px;
    }

    .policy-highlight {
      background: #F9F6F0;
      border-left: 4px solid #D4A574;
      padding: 20px;
      margin: 25px 0;
      border-radius: 8px;
    }

    .policy-date {
      color: #9A9A9A;
      font-style: italic;
      margin-bottom: 30px;
    }

    /* Notification */
    .notification {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background: white;
      padding: 20px 25px;
      border-radius: 12px;
      box-shadow: 0 10px 40px rgba(0,0,0,0.15);
      display: none;
      align-items: center;
      gap: 15px;
      z-index: 4000;
      animation: slideInRight 0.4s ease;
      max-width: 400px;
    }

    @keyframes slideInRight {
      from {
        transform: translateX(450px);
        opacity: 0;
      }
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

    .notification-icon {
      font-size: 28px;
    }

    .notification-content h4 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px;
      margin-bottom: 4px;
      color: #1A1A1A;
    }

    .notification-content p {
      font-size: 14px;
      color: #6A6A6A;
    }

    .user-display {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 16px;
      background: #F5F5F5;
      border-radius: 25px;
      cursor: pointer;
      transition: all 0.3s;
    }

    .user-display:hover {
      background: #E8E8E8;
    }

    .user-avatar {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: linear-gradient(135deg, #D4A574, #B8865C);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-weight: 600;
      font-size: 14px;
    }

    .user-name {
      font-weight: 600;
      color: #1A1A1A;
      font-size: 14px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .footer-main {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      nav {
        display: none;
      }

      .hero-content h1 {
        font-size: 42px;
      }

      .section-header h2 {
        font-size: 36px;
      }

      .form-grid {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .contact-section {
        padding: 40px 30px;
      }
    }
