/* DailyStep Official Website - Style inspired by LuckyStep & Velora Edge */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-cream: #f7f3eb;
  --bg-cream-dark: #f0ebe0;
  --primary-green: #0f3d2e;
  --accent-green: #16a34a;
  --accent-gold: #c49a56;
  --text-dark: #1a2e25;
  --text-muted: #5a6b62;
  --white: #ffffff;
  --shadow-soft: 0 8px 32px rgba(15, 61, 46, 0.12);
  --shadow-card: 0 4px 20px rgba(15, 61, 46, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, .serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.1;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(247, 243, 235, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.2rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 61, 46, 0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  font-family: 'Playfair Display', Georgia, serif;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--primary-green) 100%);
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
  position: relative;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
  transition: transform 0.3s ease;
}
.logo:hover .logo-icon {
  transform: rotate(-5deg) scale(1.05);
}
.logo-icon::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-gold);
  border-radius: 50%;
  bottom: 6px;
  right: 6px;
  border: 2px solid var(--white);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--accent-green);
}

.btn-nav {
  background: var(--primary-green);
  color: var(--white) !important;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s, background 0.3s !important;
}

.btn-nav:hover {
  background: var(--accent-green) !important;
  transform: translateY(-2px);
}

.mobile-menu {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary-green);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 8rem 5% 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(22, 163, 74, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: 4.2rem;
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--accent-gold);
  font-style: italic;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--primary-green);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s, background 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary:hover {
  background: var(--accent-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--primary-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 2px solid rgba(15, 61, 46, 0.2);
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--primary-green);
  background: rgba(15, 61, 46, 0.05);
}

.hero-stats {
  display: flex;
  gap: 3rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: 'Playfair Display', Georgia, serif;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Phone Mockup */
.phone-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 300px;
  height: 620px;
  background: var(--primary-green);
  border-radius: 45px;
  padding: 12px;
  box-shadow: var(--shadow-soft);
  position: relative;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #f7f3eb 0%, #e8f5e9 100%);
  border-radius: 35px;
  padding: 2rem 1.5rem;
  overflow: hidden;
}

.phone-notch {
  width: 120px;
  height: 25px;
  background: var(--primary-green);
  border-radius: 0 0 20px 20px;
  margin: -12px auto 1.5rem;
}

.step-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(var(--accent-green) 78%, rgba(15, 61, 46, 0.1) 0);
  display: grid;
  place-items: center;
  margin: 1rem auto;
  position: relative;
}

.step-circle-inner {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.step-count {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-green);
  font-family: 'Playfair Display', Georgia, serif;
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.phone-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}

.phone-stat-card {
  background: var(--white);
  padding: 1rem;
  border-radius: 16px;
  text-align: center;
}

.phone-stat-value {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-green);
}

.phone-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: var(--white);
  padding: 0.8rem 1.2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.float-card-1 {
  top: 15%;
  left: 0;
  animation-delay: 0s;
}

.float-card-2 {
  top: 45%;
  right: -20px;
  animation-delay: 0.5s;
}

.float-card-3 {
  bottom: 20%;
  left: -10px;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.float-icon.green { background: rgba(22, 163, 74, 0.1); }
.float-icon.gold { background: rgba(196, 154, 86, 0.1); }
.float-icon.blue { background: rgba(14, 165, 233, 0.1); }

.float-text {
  font-size: 0.85rem;
  font-weight: 600;
}

.float-sub {
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Feature Strip */
.feature-strip {
  background: var(--primary-green);
  padding: 1rem 5%;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 6rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  color: var(--accent-green);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* Feature Grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: var(--primary-green);
  border-radius: 32px;
  padding: 4rem;
  text-align: center;
  margin: 4rem 5%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  font-size: 2.5rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.btn-white:hover {
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background: var(--primary-green);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  max-width: 300px;
}

.footer h4 {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.footer a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  display: block;
  margin: 0.7rem 0;
  transition: color 0.3s;
}

.footer a:hover {
  color: var(--white);
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Inner Pages */
.page-header {
  padding: 10rem 5% 4rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 5% 4rem;
}

.content-card {
  background: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}

.content-card h2 {
  font-size: 1.6rem;
  margin: 2rem 0 1rem;
  color: var(--primary-green);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card p {
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.content-card ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.content-card li {
  margin: 0.5rem 0;
  color: var(--text-muted);
}

/* Contact Form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-item-icon {
  width: 48px;
  height: 48px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(15, 61, 46, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--bg-cream);
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-green);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero h1 { font-size: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 6rem;
  }
  .hero h1 { font-size: 2.5rem; }
  .hero-desc { margin: 0 auto 2rem; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .phone-container { margin-top: 2rem; }
  .section-title { font-size: 2rem; }
  .feature-strip { gap: 1.5rem; padding: 1rem; }
  .strip-item { font-size: 0.8rem; }
  .cta-section { padding: 2.5rem 1.5rem; margin: 2rem 5%; }
  .cta-section h2 { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-card { padding: 1.5rem; }
  .page-header h1 { font-size: 2rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .phone-mockup { width: 260px; height: 540px; }
  .float-card { display: none; }
  .hero-stats { gap: 1.5rem; }
}

/* Contact Form Fixes */
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(22, 163, 74, 0.1);
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.3rem;
}
.contact-form-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow-card);
}
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid rgba(15, 61, 46, 0.1);
  border-radius: 12px;
  font-size: 1rem;
  background: var(--bg-cream);
  outline: none;
  transition: border-color 0.3s;
  font-family: inherit;
  cursor: pointer;
}
.form-group select:focus {
  border-color: var(--accent-green);
}
