/* Mini pick CSS Styling System */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #1a73e8; /* Mini pick brand blue */
  --primary-hover: #1557b0;
  --primary-light: #e8f0fe;
  --primary-light-hover: #d2e3fc;
  --primary-dark: #0d47a1;
  --accent: #00bcd4; /* Sky blue */
  --accent-light: #e0f7fa;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-sky: #f4f8fc;
  --bg-footer: #0a0f1d;
  
  --text-main: #1f2937; /* Slate 800 */
  --text-muted: #4b5563; /* Slate 600 */
  --text-light: #9ca3af; /* Gray 400 */
  --text-white: #ffffff;
  
  --border-color: #e5e7eb;
  --border-color-light: #f3f4f6;
  
  /* Layout & Sizing */
  --max-width: 1200px;
  --header-height: 72px;
  
  /* Borders */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 10px 15px -3px rgba(26, 115, 232, 0.05), 0 4px 6px -2px rgba(26, 115, 232, 0.03);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-brand: 0 12px 24px -6px rgba(26, 115, 232, 0.25);
  
  /* Fonts */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  
  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-normal: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
}

.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background-color: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 20px;
}

/* Grid & Layout Utilities */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* Sticky Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-normal);
  border-bottom: 1px solid transparent;
}

header.scrolled {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  height: 64px;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

.nav-link:hover {
  color: var(--primary);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-main);
}

.btn-outline:hover {
  background-color: var(--bg-secondary);
  border-color: var(--text-light);
}

.btn-playstore {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #111;
  color: #fff;
  padding: 8px 24px;
  border-radius: 12px;
  border: 1px solid #333;
  transition: var(--transition-normal);
  text-align: left;
}

.btn-playstore:hover {
  background-color: #222;
  border-color: #444;
  transform: translateY(-2px);
}

.btn-playstore .icon {
  font-size: 24px;
}

.btn-playstore .text-top {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.btn-playstore .text-bottom {
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-display);
}

/* Phone Mockup Styling */
.phone-mockup {
  position: relative;
  width: 320px;
  height: 650px;
  background-color: #111;
  border: 12px solid #222;
  border-radius: 40px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  margin: 0 auto;
  transition: var(--transition-slow);
}

.phone-mockup:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 50px -10px rgba(0,0,0,0.15);
}

.phone-mockup::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 24px;
  background-color: #222;
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Section specific styling */

/* SECTION 1: HERO */
.hero-section {
  background: linear-gradient(135deg, var(--bg-sky) 0%, #ffffff 100%);
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: var(--text-main);
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.hero-feature-icon {
  font-size: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(26, 115, 232, 0.08) 0%, transparent 70%);
  z-index: -1;
}

/* SECTION 2: KEY MESSAGE */
.message-section {
  background-color: var(--bg-primary);
}

.section-header {
  max-width: 650px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.album-example-tag {
  display: inline-block;
  padding: 6px 14px;
  background-color: var(--border-color-light);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--text-muted);
  margin-right: 8px;
  margin-top: 8px;
}

/* SECTION 3: 3-STEP PROCESS */
.steps-section {
  background-color: var(--bg-secondary);
}

.step-card {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition-normal);
  text-align: center;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  opacity: 0.8;
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SECTION 4: BUSINESS STAMP */
.business-section {
  background-color: var(--bg-primary);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.feature-item {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary);
}

.feature-title {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* SECTION 5: GOOGLE DRIVE AUTO UPLOAD */
.drive-section {
  background-color: var(--bg-sky);
  overflow: hidden;
}

.flow-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 40px 0;
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.flow-step {
  text-align: center;
  flex: 1;
}

.flow-step-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.flow-step-text {
  font-weight: 700;
  font-size: 0.95rem;
}

.flow-arrow {
  color: var(--text-light);
  font-weight: 800;
  font-size: 1.2rem;
}

.wifi-info {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(26, 115, 232, 0.06);
  border: 1px solid rgba(26, 115, 232, 0.15);
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* SECTION 6: SETTINGS */
.settings-section {
  background-color: var(--bg-primary);
}

.settings-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}

.settings-info-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-top: 24px;
}

.settings-info-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--primary);
}

.settings-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.settings-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.95rem;
}

.settings-info-list li::before {
  content: '✓';
  color: var(--primary);
  font-weight: 900;
}

/* SECTION 7: RECOMMENDATIONS */
.recommend-section {
  background-color: var(--bg-secondary);
}

.recommend-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  border-top: 4px solid var(--border-color);
}

.recommend-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.recommend-card.highlight {
  border-top-color: var(--primary);
}

.recommend-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.recommend-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.recommend-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* SECTION 8: PRIVACY AND TRUST */
.trust-section {
  background-color: var(--bg-primary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.trust-box {
  background-color: var(--bg-sky);
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid rgba(26, 115, 232, 0.1);
}

.trust-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.trust-title {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.trust-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.trust-links {
  display: flex;
  justify-content: center;
  gap: 24px;
}

.trust-link {
  color: var(--primary);
  font-weight: 600;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
}

.trust-link:hover {
  border-bottom-color: var(--primary);
}

/* SECTION 9: FINAL CTA */
.final-cta-section {
  background: linear-gradient(135deg, #1557b0 0%, var(--primary) 100%);
  color: var(--text-white);
  text-align: center;
}

.final-cta-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.final-cta-subtitle {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.85);
}

.final-cta-section .btn-playstore {
  background-color: #ffffff;
  color: #111111;
  border-color: #ffffff;
}

.final-cta-section .btn-playstore:hover {
  background-color: rgba(255, 255, 255, 0.9);
  transform: translateY(-3px);
}

.final-cta-section .btn-playstore .text-top {
  color: var(--text-muted);
}

/* FOOTER */
footer {
  background-color: var(--bg-footer);
  color: rgba(255, 255, 255, 0.6);
  padding: 60px 0 30px 0;
  font-size: 0.9rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-info {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.footer-nav {
  display: flex;
  gap: 60px;
}

.footer-nav-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}

.footer-legal-links a:hover {
  color: #ffffff;
}

/* LEGAL PAGES SPECIFIC STYLE */
.legal-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.legal-body {
  background-color: var(--bg-secondary);
}

.legal-container {
  max-width: 800px;
  margin: calc(var(--header-height) + 40px) auto 80px auto;
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color-light);
  border-radius: var(--radius-lg);
  padding: 56px;
  box-shadow: var(--shadow-sm);
}

.legal-header {
  border-bottom: 2px solid var(--border-color-light);
  padding-bottom: 24px;
  margin-bottom: 32px;
}

.legal-title {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.legal-date {
  color: var(--text-light);
  font-size: 0.9rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color-light);
  padding-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text-muted);
  line-height: 1.7;
}

.legal-content ul, .legal-content ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: var(--text-muted);
}

.legal-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.9rem;
}

.legal-content th, .legal-content td {
  border: 1px solid var(--border-color);
  padding: 12px;
  text-align: left;
}

.legal-content th {
  background-color: var(--bg-secondary);
  font-weight: 700;
}

.legal-footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  margin-top: 40px;
}

.legal-footer-link:hover {
  text-decoration: underline;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* RESPONSIVE DESIGN - MEDIA QUERIES */

/* Tablet Screens (under 1024px) */
@media (max-width: 1023px) {
  :root {
    --header-height: 64px;
  }
  
  .grid-2 {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .hero-section {
    padding-top: calc(var(--header-height) + 40px);
    text-align: center;
  }
  
  .hero-content {
    align-items: center;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .hero-subtitle {
    font-size: 1.25rem;
  }
  
  .hero-features {
    align-items: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .settings-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  
  .trust-box {
    padding: 32px;
  }
}

/* Mobile Screens (under 768px) */
@media (max-width: 767px) {
  .container {
    padding-right: 16px;
    padding-left: 16px;
  }
  
  .section-padding {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  
  .nav-menu {
    display: none; /* Can implement mobile menu if requested, but for One Page static layout we hide subnav or make it clean */
  }
  
  .hero-title {
    font-size: 2.1rem;
    letter-spacing: -1px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 24px;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .btn {
    width: 100%;
  }
  
  .btn-playstore {
    justify-content: center;
  }
  
  .phone-mockup {
    width: 280px;
    height: 570px;
    border-width: 10px;
  }
  
  .flow-container {
    flex-direction: column;
    gap: 12px;
    padding: 16px;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
    margin: 4px 0;
  }
  
  .feature-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .settings-info-card {
    padding: 24px 16px;
  }
  
  .trust-links {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .final-cta-title {
    font-size: 2rem;
  }
  
  .final-cta-subtitle {
    font-size: 1.1rem;
  }
  
  footer {
    padding: 40px 0 20px 0;
    text-align: center;
  }
  
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-info {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-nav {
    flex-direction: column;
    gap: 32px;
    width: 100%;
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
  }
  
  .footer-legal-links {
    justify-content: center;
    width: 100%;
  }
  
  .legal-container {
    padding: 24px 16px;
    margin-top: calc(var(--header-height) + 20px);
    border-radius: var(--radius-md);
  }
  
  .legal-title {
    font-size: 1.7rem;
  }
}
