/* ============================================
   RYTELL DIGITAL STUDIO — STYLESHEET
   Bold & Modern — Phoenix, AZ
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:    #0f1f3d;
  --dark:     #162844;
  --dark2:    #1e3358;
  --accent:   #ff5c00;
  --accent2:  #ff8c42;
  --white:    #ffffff;
  --gray-100: #f5f5f7;
  --gray-200: #e5e5ea;
  --gray-400: #a0a0ab;
  --gray-600: #6b6b76;
  --text:     #1c1c1e;
  --radius:   12px;
  --radius-lg: 20px;
  --shadow:   0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILS ---- */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section--dark { background: var(--dark); }
.section--accent { background: var(--black); }

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label--light { color: var(--accent2); }

.section-title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; line-height: 1.2; margin-bottom: 16px; }
.section-title--light { color: var(--white); }
.section-sub { font-size: 17px; color: var(--gray-600); max-width: 540px; margin-bottom: 56px; }
.section-sub--light { color: var(--gray-400); }

.accent { color: var(--accent); }

.hidden { display: none !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--accent);
  color: var(--white);
}
.btn--primary:hover { background: #e04f00; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,92,0,0.35); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn--outline:hover { background: var(--accent); border-color: var(--accent); }

.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--outline-dark:hover { border-color: var(--accent); color: var(--accent); }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav__logo span {
  font-weight: 400;
  color: var(--gray-400);
  margin-left: 6px;
  font-size: 14px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 22px;
  cursor: pointer;
  padding: 4px;
}

/* ---- MOBILE MENU ---- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 200;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 26px;
  cursor: pointer;
}
.mobile-link {
  color: var(--white);
  text-decoration: none;
  font-size: 22px;
  font-weight: 700;
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--accent); }

/* ---- HERO ---- */
.hero {
  position: relative;
  background: var(--black);
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, #f5f5f7);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 80px 24px;
  max-width: 900px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,92,0,0.12);
  border: 1px solid rgba(255,92,0,0.3);
  color: var(--accent2);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.hero__headline {
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--gray-400);
  max-width: 580px;
  margin-bottom: 40px;
  line-height: 1.65;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 64px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.stat { text-align: left; }
.stat__num { display: block; font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: -0.02em; }
.stat__label { font-size: 12px; color: var(--gray-400); font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; }
.stat__divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); }

/* ---- ABOUT ---- */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: center;
}

.about__text h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.about__text p { color: var(--gray-600); margin-bottom: 18px; font-size: 16px; line-height: 1.75; }
.about__text p strong { color: var(--text); font-weight: 700; }
.about__text .btn { margin-top: 8px; }

.about__card {
  background: var(--black);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.about__avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 16px;
  border: 3px solid rgba(255,92,0,0.4);
  flex-shrink: 0;
}

.about__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about__name { font-size: 20px; font-weight: 800; margin-bottom: 4px; }
.about__title { font-size: 13px; color: var(--gray-400); margin-bottom: 20px; }

.about__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.tag {
  background: rgba(255,92,0,0.15);
  color: var(--accent2);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,92,0,0.25);
}

.about__divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 20px; }

.about__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-400);
  margin-bottom: 10px;
}
.about__detail span { color: var(--accent); font-weight: 700; }

/* ---- SERVICES / PRICING ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
}
.pricing-card:hover { border-color: rgba(255,92,0,0.3); transform: translateY(-4px); }

.pricing-card--featured {
  background: var(--dark2);
  border-color: var(--accent);
  transform: translateY(-8px);
  box-shadow: 0 0 40px rgba(255,92,0,0.15);
}
.pricing-card--featured:hover { transform: translateY(-12px); }

.pricing-card__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent2);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.pricing-card__price span { font-size: 20px; font-weight: 500; color: var(--gray-400); }

.pricing-card__desc { font-size: 14px; color: var(--gray-400); margin-bottom: 28px; line-height: 1.6; }

.pricing-card__features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-card__features li {
  font-size: 14px;
  color: var(--gray-400);
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card__features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.services__addon {
  text-align: center;
  margin-top: 48px;
  color: var(--gray-400);
  font-size: 15px;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
}
.services__addon strong { color: var(--white); }

/* ---- PROCESS ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 8px;
}

.process-step { position: relative; padding-left: 0; }

.process-step__num {
  font-size: 56px;
  font-weight: 900;
  color: var(--gray-200);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}

.process-step h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.process-step p { color: var(--gray-600); font-size: 15px; line-height: 1.7; }

/* ---- WHY ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 8px;
}

.why-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition: border-color 0.2s;
}
.why-card:hover { border-color: rgba(255,92,0,0.3); }

.why-card__icon {
  font-size: 28px;
  margin-bottom: 16px;
  display: block;
}
.why-card h3 { font-size: 16px; font-weight: 800; color: var(--white); margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--gray-400); line-height: 1.65; }

/* ---- CONTACT ---- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__text h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 800; line-height: 1.2; margin-bottom: 20px; }
.contact__text p { color: var(--gray-600); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }

.contact__email { margin-bottom: 16px; }
.contact__email-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 6px; }
.contact__email-link { font-size: 16px; font-weight: 700; color: var(--accent); text-decoration: none; transition: opacity 0.2s; }
.contact__email-link:hover { opacity: 0.8; }

.contact__location { font-size: 14px; color: var(--gray-600); display: flex; align-items: center; gap: 6px; }

/* FORM */
.contact-form {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  resize: vertical;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,92,0,0.1);
}

/* ---- FOOTER ---- */
.footer {
  background: var(--black);
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__logo {
  font-size: 16px;
  font-weight: 900;
  color: var(--white);
}
.footer__logo span { font-weight: 400; color: var(--gray-600); margin-left: 4px; font-size: 13px; }

.footer__copy { font-size: 13px; color: var(--gray-600); }

.footer__links { display: flex; gap: 24px; }
.footer__links a { color: var(--gray-600); text-decoration: none; font-size: 13px; transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card--featured { transform: translateY(0); }
  .pricing-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .nav__links { display: none; }
  .nav__toggle { display: block; }

  .hero__inner { padding: 60px 24px; }
  .hero::after { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__card { max-width: 100%; }

  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { transform: none; box-shadow: none; border-color: var(--accent); }

  .process-grid { grid-template-columns: 1fr; gap: 32px; }

  .why-grid { grid-template-columns: 1fr 1fr; }

  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact-form { padding: 28px 20px; }

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 12px; }

  .hero__stats { gap: 16px; }
  .stat__divider { display: none; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; }
  .hero__cta .btn { width: 100%; text-align: center; }
}
