/* styles.css */
:root {
    --hot-pink: #E8185A;
    --deep-crimson: #9B1046;
    --dark-bg: #0E0208;
    --card-bg: #1A0510;
    --surface: #220A18;
    --white: #FFFFFF;
    --off-white: #F5E8EE;
    --muted: #A07085;
    --accent-glow: rgba(232, 24, 90, 0.3);
  }
  
  *, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  html { scroll-behavior: smooth; }
  
  body {
    background: var(--dark-bg);
    color: var(--white);
    font-family: 'Nunito', sans-serif;
    overflow-x: hidden;
  }
  
  .site-nav {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 2rem;
    background: rgba(14, 2, 8, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 24, 90, 0.15);
  }
  
  .nav-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
  }
  
  .logo-img {
    width: auto;
    height: 80px;
    max-width: 170px;
    object-fit: contain;
    display: block;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }
  
  .nav-links a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.2s;
  }
  
  .nav-links a:hover { color: var(--hot-pink); }
  
  .nav-cta {
    background: var(--hot-pink);
    color: white !important;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 700 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
  }
  
  .nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--accent-glow);
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: transparent;
    border: 0;
  }
  
  .hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--off-white);
    border-radius: 2px;
  }
  
  .mobile-menu {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: rgba(14, 2, 8, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 24, 90, 0.15);
    padding: 1.5rem 2rem;
    z-index: 99;
    flex-direction: column;
    gap: 1rem;
  }
  
  .mobile-menu.open { display: flex; }
  
  .mobile-menu a {
    color: var(--off-white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }
  
  section { padding: 6rem 2rem; }
  
  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 5rem;
  }
  
  .hero-bg {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(155, 16, 70, 0.45) 0%, transparent 70%),
      radial-gradient(ellipse 40% 40% at 20% 80%, rgba(232, 24, 90, 0.2) 0%, transparent 60%),
      linear-gradient(180deg, #0E0208 0%, #1A0510 50%, #0E0208 100%);
  }
  
  .hero-noise,
  #download::before {
    position: absolute;
    inset: 0;
    content: '';
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
  }
  
  .hero-eyebrow,
  .section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--hot-pink);
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .hero-eyebrow::before,
  .section-tag::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--hot-pink);
  }
  
  .hero-title,
  .section-title,
  .download-title {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    line-height: 0.95;
  }
  
  .hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
  }
  
  .hero-title span,
  .section-title em {
    color: var(--hot-pink);
    font-style: normal;
  }
  
  .hero-desc,
  .section-sub {
    color: var(--off-white);
    font-size: 1.05rem;
    line-height: 1.7;
    max-width: 560px;
    opacity: 0.85;
  }
  
  .hero-desc { margin-bottom: 2rem; }
  
  .hero-buttons,
  .store-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  
  .btn-primary,
  .btn-secondary {
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s, color 0.2s;
  }
  
  .btn-primary {
    background: var(--hot-pink);
    color: white;
    box-shadow: 0 4px 30px rgba(232, 24, 90, 0.4);
  }
  
  .btn-secondary {
    color: var(--off-white);
    border: 1.5px solid rgba(245, 232, 238, 0.3);
  }
  
  .btn-primary:hover,
  .store-btn:hover {
    transform: translateY(-2px);
  }
  
  .btn-secondary:hover {
    border-color: var(--hot-pink);
    color: var(--hot-pink);
  }
  
  .hero-phones {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .phone-mockup,
  .fv-card,
  .sv-phone {
    background: var(--card-bg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.65), 0 0 0 1px rgba(255,255,255,0.08);
  }
  
  .phone-mockup {
    position: absolute;
    border-radius: 38px;
  }
  
  .phone-mockup img,
  .fv-card img,
  .sv-phone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }
  
  .phone-main {
    width: 260px;
    height: 565px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
  }
  
  .phone-left,
  .phone-right {
    width: 220px;
    height: 478px;
    top: 70px;
    z-index: 2;
    opacity: 0.78;
  }
  
  .phone-left {
    left: 10px;
    animation: floatLeft 4s ease-in-out infinite 0.7s;
  }
  
  .phone-right {
    right: 10px;
    animation: floatRight 4s ease-in-out infinite 1.4s;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
  }
  
  @keyframes floatLeft {
    0%, 100% { transform: translateY(0) rotate(-8deg); }
    50% { transform: translateY(-10px) rotate(-8deg); }
  }
  
  @keyframes floatRight {
    0%, 100% { transform: translateY(0) rotate(8deg); }
    50% { transform: translateY(-8px) rotate(8deg); }
  }
  
  .stats-bar {
    background: var(--surface);
    border-top: 1px solid rgba(232, 24, 90, 0.15);
    border-bottom: 1px solid rgba(232, 24, 90, 0.15);
    padding: 1.5rem 2rem;
  }
  
  .stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  
  .stat { text-align: center; }
  
  .stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    color: var(--hot-pink);
  }
  
  .stat-label {
    font-size: 0.8rem;
    color: var(--muted);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
  }
  
  .section-sub { color: var(--muted); }
  
  .how-header,
  .profiles-header {
    text-align: center;
    margin-bottom: 4rem;
  }
  
  .how-header .section-tag,
  .profiles-header .section-tag {
    justify-content: center;
  }
  
  .how-header .section-sub,
  .profiles-header .section-sub {
    margin: 0 auto;
  }
  
  .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
  }
  
  .step-card,
  .feature-item,
  .safety-card,
  .profile-card,
  .prompt-card,
  .contact-form {
    border: 1px solid rgba(232, 24, 90, 0.12);
    background: var(--surface);
  }
  
  .step-card {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, border-color 0.3s;
  }
  
  .step-card:hover,
  .profile-card:hover {
    transform: translateY(-5px);
    border-color: rgba(232, 24, 90, 0.4);
  }
  
  .step-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: rgba(232, 24, 90, 0.25);
  }
  
  .step-icon,
  .feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 24, 90, 0.12);
    border-radius: 12px;
    display: grid;
    place-items: center;
    margin: 1rem 0;
    font-size: 1.5rem;
  }
  
  .step-card h3,
  .feature-text h4,
  .safety-card h4 {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
  }
  
  .step-card p,
  .feature-text p,
  .safety-card p {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.6;
  }
  
  #features,
  #safety {
    background: var(--surface);
  }
  
  .features-layout,
  .prompt-layout,
  .safety-layout,
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
  
  .features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }
  
  .feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(232, 24, 90, 0.05);
    border-radius: 16px;
  }
  
  .feature-icon {
    min-width: 44px;
    width: 44px;
    height: 44px;
    background: var(--hot-pink);
    margin: 0;
  }
  
  .features-visual,
  .safety-visual {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .fv-card {
    position: absolute;
    border-radius: 30px;
  }
  
  .fv-main {
    width: 260px;
    height: 565px;
    z-index: 3;
    animation: float 5s ease-in-out infinite;
  }
  
  .fv-side {
    width: 220px;
    height: 478px;
    right: 20px;
    top: 80px;
    z-index: 2;
    opacity: 0.7;
    animation: floatRight 5s ease-in-out infinite 1s;
  }
  
  #daily-prompt {
    background: linear-gradient(135deg, #1A0510 0%, #0E0208 50%, #200818 100%);
    position: relative;
    overflow: hidden;
  }
  
  #daily-prompt::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 24, 90, 0.15) 0%, transparent 70%);
  }
  
  .prompt-card {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
  }
  
  .prompt-card-header {
    background: var(--hot-pink);
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  
  .prompt-card-header span,
  .today-badge {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  .today-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
  }
  
  .prompt-question,
  .prompt-answers,
  .prompt-footer {
    padding: 1.25rem 1.5rem;
  }
  
  .prompt-question {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--off-white);
    border-bottom: 1px solid rgba(232, 24, 90, 0.1);
  }
  
  .prompt-answers {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .answer-row {
    display: flex;
    gap: 0.75rem;
  }
  
  .answer-avatar {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--hot-pink);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 0.8rem;
  }
  
  .avatar-purple { background: #5C35C9; }
  
  .answer-bubble {
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 0.6rem 0.9rem;
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .answer-meta {
    font-size: 0.75rem;
    color: var(--muted);
    margin-top: 0.25rem;
  }
  
  .prompt-footer {
    border-top: 1px solid rgba(232, 24, 90, 0.1);
    display: flex;
    gap: 0.5rem;
  }
  
  .prompt-footer input {
    flex: 1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(232, 24, 90, 0.2);
    border-radius: 50px;
    padding: 0.7rem 1rem;
    color: var(--off-white);
  }
  
  .prompt-footer button {
    background: var(--hot-pink);
    border: 0;
    border-radius: 50px;
    padding: 0.7rem 1.1rem;
    color: white;
    font-weight: 800;
  }
  
  .ai-badge {
    display: inline-flex;
    background: rgba(232, 24, 90, 0.12);
    border: 1px solid rgba(232, 24, 90, 0.3);
    border-radius: 50px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--hot-pink);
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
  }
  
  .ai-points {
    margin-top: 2rem;
    display: grid;
    gap: 1rem;
  }
  
  .ai-point {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--off-white);
    opacity: 0.85;
  }
  
  .ai-point::before {
    content: '';
    width: 8px;
    height: 8px;
    min-width: 8px;
    background: var(--hot-pink);
    border-radius: 50%;
  }
  
  .profile-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    justify-content: center;
    gap: 1.5rem;
  }
  
  .profile-card {
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .profile-img,
  .profile-placeholder {
    width: 100%;
    height: 260px;
  }
  
  .profile-img {
    object-fit: cover;
    display: block;
  }
  
  .profile-placeholder {
    background: linear-gradient(135deg, #220A18, #1A0510);
    display: grid;
    place-items: center;
    font-size: 3rem;
  }
  
  .profile-body { padding: 1.25rem; }
  
  .profile-name-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .profile-name {
    font-weight: 800;
    font-size: 1rem;
  }
  
  .profile-location {
    font-size: 0.85rem;
    color: var(--muted);
  }
  
  .profile-mbti {
    background: #5C35C9;
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    letter-spacing: 1px;
  }
  
  .profile-mbti-pink { background: var(--hot-pink); }
  
  .profile-chem {
    margin-top: 0.75rem;
    background: linear-gradient(90deg, #7C3AED, #9B1046);
    border-radius: 8px;
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 800;
  }
  
  .profile-chem-pink {
    background: linear-gradient(90deg, var(--deep-crimson), var(--hot-pink));
  }
  
  .profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.75rem;
  }
  
  .profile-tag {
    background: rgba(232, 24, 90, 0.12);
    border: 1px solid rgba(232, 24, 90, 0.2);
    color: var(--hot-pink);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
  }
  
  .safety-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2.5rem;
  }
  
  .safety-card {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 1.25rem;
  }
  
  .safety-card-icon {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
  }
  
  .sv-phone {
    width: 260px;
    height: 565px;
    border-radius: 38px;
    animation: float 5s ease-in-out infinite;
  }
  
  #download {
    background: linear-gradient(135deg, var(--deep-crimson) 0%, var(--hot-pink) 60%, #FF4D7E 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
  }
  
  .download-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .download-inner .section-tag {
    justify-content: center;
    color: rgba(255,255,255,0.85);
  }
  
  .download-inner .section-tag::before { background: rgba(255,255,255,0.85); }
  
  .download-title {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1rem;
  }
  
  .download-sub {
    font-size: 1.1rem;
    opacity: 0.88;
    line-height: 1.6;
    margin-bottom: 2.5rem;
  }
  
  .store-buttons {
    justify-content: center;
  }
  
  .store-btn {
    background: rgba(0,0,0,0.25);
    border: 1.5px solid rgba(255,255,255,0.3);
    border-radius: 14px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    text-decoration: none;
    backdrop-filter: blur(8px);
  }
  
  .store-btn-icon { font-size: 1.75rem; }
  
  .store-btn-text small {
    display: block;
    font-size: 0.65rem;
    opacity: 0.75;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .store-btn-text strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
  }
  
  #contact { background: var(--dark-bg); }
  
  .contact-layout {
    grid-template-columns: 1fr 1.2fr;
    align-items: start;
  }
  
  .contact-info p {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  
  .contact-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }
  
  .contact-item-icon {
    width: 38px;
    height: 38px;
    background: rgba(232, 24, 90, 0.12);
    border-radius: 10px;
    display: grid;
    place-items: center;
  }
  
  .contact-form {
    border-radius: 24px;
    padding: 2.5rem;
  }
  
  .contact-form h3 {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  
  .form-group { margin-bottom: 1rem; }
  
  .form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--muted);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(232, 24, 90, 0.15);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    color: var(--off-white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
  }
  
  .form-group textarea {
    resize: vertical;
    min-height: 110px;
  }
  
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--hot-pink);
  }
  
  .form-group select option {
    background: var(--surface);
  }
  
  .form-submit {
    width: 100%;
    background: var(--hot-pink);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.9rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
  }
  
  .form-success {
    display: none;
    text-align: center;
    padding: 1.5rem;
    color: var(--hot-pink);
    font-weight: 800;
  }
  
  footer {
    background: var(--surface);
    border-top: 1px solid rgba(232, 24, 90, 0.1);
    padding: 3rem 2rem 2rem;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
  }
  
  .footer-logo-img {
    width: auto;
    height: 46px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    margin-bottom: 1rem;
  }
  
  .footer-tagline,
  .footer-copy,
  .footer-legal a,
  .footer-col ul li a {
    color: var(--muted);
    font-size: 0.875rem;
    line-height: 1.6;
  }
  
  .footer-col h4 {
    font-weight: 800;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .footer-col ul {
    list-style: none;
    display: grid;
    gap: 0.6rem;
  }
  
  .footer-col a,
  .footer-legal a {
    text-decoration: none;
    transition: color 0.2s;
  }
  
  .footer-col a:hover,
  .footer-legal a:hover {
    color: var(--hot-pink);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .footer-legal {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
  }
  
  .fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  @media (max-width: 1050px) {
    .hero-content,
    .features-layout,
    .prompt-layout,
    .safety-layout,
    .contact-layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }
  
    .hero-text {
      text-align: center;
    }
  
    .hero-eyebrow,
    .hero-buttons {
      justify-content: center;
    }
  
    .hero-desc {
      margin-left: auto;
      margin-right: auto;
    }
  
    .hero-phones,
    .features-visual,
    .safety-visual {
      height: 620px;
    }
  }
  
  @media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
  
    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 700px) {
    .site-nav {
      height: 66px;
      padding: 0.75rem 1.25rem;
    }
  
    .mobile-menu {
      top: 66px;
    }
  
    .logo-img {
      height: 38px;
      max-width: 145px;
    }
  
    section {
      padding: 4.5rem 1.25rem;
    }
  
    #hero {
      padding-top: 7rem;
    }
  
    .hero-title {
      font-size: 3.4rem;
    }
  
    .hero-phones {
      height: 460px;
    }
  
    .phone-main {
      width: 205px;
      height: 446px;
    }
  
    .phone-left,
    .phone-right {
      width: 165px;
      height: 359px;
      top: 70px;
    }
  
    .phone-left { left: -25px; }
    .phone-right { right: -25px; }
  
    .features-visual,
    .safety-visual {
      height: auto;
    }
  
    .fv-side {
      display: none;
    }
  
    .fv-main,
    .sv-phone {
      position: relative;
      width: 220px;
      height: 478px;
      margin: 0 auto;
    }
  
    .safety-grid,
    .form-row {
      grid-template-columns: 1fr;
    }
  
    .footer-top {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 460px) {
    .hero-buttons,
    .store-buttons {
      flex-direction: column;
    }
  
    .btn-primary,
    .btn-secondary,
    .store-btn {
      justify-content: center;
      width: 100%;
    }
  
    .hero-phones {
      height: 410px;
    }
  
    .phone-main {
      width: 185px;
      height: 402px;
    }
  
    .phone-left,
    .phone-right {
      width: 145px;
      height: 315px;
    }
  
    .phone-left { left: -40px; }
    .phone-right { right: -40px; }
  
    .prompt-footer {
      flex-direction: column;
    }
  }