/*
Theme Name: liq
Theme URI: https://quizrundan.se
Author: Antigravity
Author URI: https://quizrundan.se
Description: En rolig och interaktiv tipspromenad i mobilen. Modern och responsiv design för Quizrundan-webbplatsen.
Version: 1.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: quizrundan
*/

:root {
  --primary-blue: #00aeef;
  --primary-green: #2ecc71;
  --primary-purple: #6c5ce7;
  --dark-navy: #15466e;
  --bg-light: #f8faff;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.3);
  --text-main: #2d3436;
  --text-muted: #636e72;
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
}

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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Glassmorphism utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--dark-navy);
}

.logo a {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
  gap: inherit;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--primary-blue);
}

.mobile-menu-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  position: relative;
  align-items: center;
  justify-content: center;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark-navy);
  border-radius: 3px;
  transition: all 0.3s;
  position: relative;
}

.mobile-menu-toggle span::before,
.mobile-menu-toggle span::after {
  content: "";
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark-navy);
  border-radius: 3px;
  transition: all 0.3s;
  position: absolute;
  left: 0;
}

.mobile-menu-toggle span::before {
  top: -8px;
}

.mobile-menu-toggle span::after {
  top: 8px;
}

.mobile-menu-toggle.active span {
  background: transparent;
}

.mobile-menu-toggle.active span::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.2s;
  position: relative;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--primary-blue);
  color: white;
  box-shadow: 0 5px 0 #0093ca;
}

.btn-green {
  background: var(--primary-green);
  color: white !important;
  box-shadow: 0 5px 0 #27ae60;
}

.btn-purple {
  background: var(--primary-purple);
  color: white;
  box-shadow: 0 5px 0 #5b4cc4;
}

.btn:active {
  transform: translateY(4px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
}

.small-btn {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}

/* Hero Section */
.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.05) 0%, transparent 50%);
  z-index: -1;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  color: var(--primary-blue);
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
}

/* Phone Mockup */
.hero-visual {
  display: flex;
  justify-content: center;
  perspective: 1000px;
}

.phone-mockup {
  width: 300px;
  height: auto;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.2);
  transform: rotateY(-10deg) rotateX(5deg);
  transition: transform 0.5s;
}

.app-screenshot {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 40px;
}

/* Features */
.features {
  padding: 100px 0;
  background: #f8fbff;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 4rem;
  color: var(--dark-navy);
}

.section-title span {
  color: var(--primary-blue);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-card {
  padding: 4rem 3rem;
  border-radius: 30px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  background: white;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

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

.feature-card .icon {
  font-size: 3.5rem;
  margin-bottom: 2rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: #444;
}

.feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #777;
}

.blue-icon { color: #2196F3; }
.green-icon { color: #4CAF50; }
.red-icon { color: #f44336; }
.purple-icon { color: #9c27b0; }

/* Leaderboard */
.leaderboard {
  padding: 100px 0;
  background-color: var(--bg-light);
}

.leaderboard-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.leaderboard-text .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.5rem 1.2rem;
  background: #fff9e6;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  color: #f1c40f;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.leaderboard-text h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.leaderboard-text h2 span {
  display: block;
  color: var(--primary-blue);
}

.leaderboard-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 90%;
}

.leaderboard-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  border-radius: 20px;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.card-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.card-icon.green { background: #e8f8f0; color: #2ecc71; }
.card-icon.yellow { background: #fff9e6; color: #f1c40f; }

.card-info h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.2rem; }
.card-info p { font-size: 0.8rem; margin-bottom: 0; }

.leaderboard-visual {
  display: flex;
  justify-content: center;
}

.leaderboard-ui {
  width: 100%;
  max-width: 400px;
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 30px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  transform: rotate(4deg);
}

.ui-header { text-align: center; margin-bottom: 2rem; }
.ui-header h3 { font-size: 1.8rem; font-weight: 800; color: var(--primary-blue); }
.podium { display: flex; justify-content: center; align-items: flex-end; margin-bottom: 2rem; }
.podium-item { flex: 1; display: flex; flex-direction: column; align-items: center; }
.podium-item .avatar { width: 50px; height: 50px; border-radius: 50%; margin-bottom: 15px; position: relative; }
.podium-item .avatar img { width: 100%; border-radius: 50%; border: 3px solid transparent; }
.podium-item.first .avatar { width: 70px; height: 70px; }
.podium-item.first .avatar img { border-color: #f1c40f; }
.podium-item .bar { width: 100%; border-radius: 12px 12px 0 0; color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; }
.podium-item.first .bar { height: 140px; background: #f1c40f; }
.podium-item.second .bar { height: 90px; background: #e9ecef; }
.podium-item.third .bar { height: 70px; background: #e9ecef; }

.ui-list { display: flex; flex-direction: column; gap: 12px; }
.list-item { display: flex; align-items: center; background: #f8faff; padding: 0.8rem 1.2rem; border-radius: 12px; gap: 1.2rem; }
.list-item .rank { font-weight: 800; color: #bdc3c7; width: 20px; }
.list-item img { width: 36px; height: 36px; border-radius: 50%; }
.list-item .user-name { flex-grow: 1; font-weight: 700; font-size: 0.95rem; }
.list-item .score { font-weight: 800; color: var(--primary-blue); }

/* Creator Promo Section */
.creator-promo {
  padding: 100px 0;
  background: white;
  position: relative;
  overflow: hidden;
}

.creator-promo::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 204, 113, 0.05));
  z-index: 1;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overline {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.creator-text h2 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.creator-text h2 span {
    color: var(--primary-green);
}

.creator-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.laptop-mockup {
  position: relative;
  z-index: 2;
}

.laptop-mockup img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.12);
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s;
}

.laptop-mockup:hover img {
  transform: perspective(1000px) rotateY(0deg);
}

/* Step by Step Section */
.info-section.bg-alt {
    background-color: #f0f4f8;
    padding: 100px 0;
}

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

.small-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s;
}

.small-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.border-card {
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: white;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background-color: white;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.faq-item h3 {
  font-size: 1.25rem;
  color: var(--dark-navy);
  margin-bottom: 1rem;
  font-weight: 800;
}

.faq-item p { font-size: 1rem; color: var(--text-muted); }

/* About */
.about { padding: 100px 0; }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-image { display: flex; justify-content: center; }
.logo-wrapper { width: 250px; height: 250px; display: flex; align-items: center; justify-content: center; }
.logo-wrapper img { width: 150px; }
.about-text h2 { font-size: 2.5rem; font-weight: 800; margin-bottom: 1.5rem; color: var(--dark-navy); }
.about-text p { font-size: 1.15rem; margin-bottom: 2rem; }

/* Contact */
.contact { padding: 100px 0; background: white; }
.contact-card { width: 100%; max-width: 800px; margin: 0 auto; padding: 4rem; border-radius: 30px; box-shadow: 0 20px 60px rgba(0,0,0,0.05); text-align: center; }
.contact-intro { margin-bottom: 3rem; color: var(--text-muted); font-size: 1.15rem; }

/* Language Dropdown */
.lang-dropdown {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
}

.lang-current {
  background: rgba(0, 174, 239, 0.05);
  border: 1px solid rgba(0, 174, 239, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: inherit;
  font-weight: 700;
  color: var(--dark-navy);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 0.9rem;
}

.lang-current i:last-child {
  font-size: 0.8rem;
  transition: transform 0.3s;
  color: var(--primary-blue);
}

.lang-current:hover {
  background: rgba(0, 174, 239, 0.1);
  border-color: var(--primary-blue);
  box-shadow: 0 4px 12px rgba(0, 174, 239, 0.1);
}

.lang-dropdown.active .lang-current {
  background: white;
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px rgba(0, 174, 239, 0.15);
}

.lang-dropdown.active .lang-current i:last-child {
  transform: rotate(180deg);
}

.lang-list {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 180px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
}

.lang-dropdown.active .lang-list {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.lang-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: var(--text-main);
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.2s;
  font-size: 0.95rem;
}

.lang-item:hover {
  background: rgba(0, 174, 239, 0.08);
  color: var(--primary-blue);
  transform: translateX(5px);
}

.lang-item.active {
  background: var(--primary-blue);
  color: white;
}

/* Footer */
footer { padding: 60px 0; text-align: center; border-top: 1px solid var(--glass-border); }
.footer-content { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.footer-logo { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 1.25rem; }
.footer-logo img { height: 30px; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { text-decoration: none; color: var(--text-muted); font-weight: 600; transition: color 0.3s; }
.footer-links a:hover { color: var(--primary-blue); }

/* WPForms Resets */
.wpforms-field input, .wpforms-field textarea {
  width: 100% !important; padding: 12px 16px !important; border-radius: 12px !important; border: 2px solid #edf2f7 !important; background: #f8fafc !important;
}

/* Animations */
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
.floating { animation: float 4s ease-in-out infinite; }

/* Responsive */
@media (max-width: 968px) {
  .hero-content, .grid-2, .about-content, .leaderboard-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text h1, .leaderboard-text h2 { font-size: 2.5rem; }
  .hero-text p, .leaderboard-text p { margin: 0 auto 2.5rem; }
  .hero-actions, .btn-group { justify-content: center; }
  .leaderboard-ui { transform: rotate(0); margin: 0 auto; }
  
  .mobile-menu-toggle { display: flex !important; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 80%; height: 100vh; background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); flex-direction: column; justify-content: center;
    gap: 2rem; padding: 2rem; transition: right 0.4s ease; z-index: 1000;
  }
  .nav-links.active { right: 0; }
}
/* Digital Tipspromenad Page Specific Styles */
.secondary-hero {
    padding: 160px 0 100px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 174, 239, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 90% 80%, rgba(46, 204, 113, 0.08) 0%, transparent 50%);
}

.secondary-hero .phone-mockup {
    max-width: 280px;
    margin: 0 auto;
}

.info-section {
    padding: 120px 0;
}

.info-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-image img {
    max-width: 100%;
    max-height: 550px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.info-image img:hover {
    transform: scale(1.02);
}

.rounded-img {
    border-radius: 40px;
}

.shadow-lg {
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: white;
    box-shadow: 0 10px 20px rgba(0, 174, 239, 0.1);
    color: var(--primary-blue);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-5px) rotate(5deg);
}

.benefit-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.benefit-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.use-cases {
    padding: 100px 0;
}

.cta-section {
    padding: 100px 0;
}

.cta-card {
    padding: 6rem 3rem;
    border-radius: 40px;
    text-align: center;
    color: white;
    background: linear-gradient(135deg, var(--primary-purple) 0%, #a29bfe 100%);
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 800;
    z-index: 2;
    position: relative;
}

.cta-card .btn {
    z-index: 2;
    position: relative;
}

.cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@media (max-width: 992px) {
    .benefit-grid {
        grid-template-columns: 1fr;
    }
    
    .grid-2.inverted {
        display: flex;
        flex-direction: column-reverse;
    }
    
    .info-image img {
        margin-top: 3rem;
        max-height: 400px;
    }
    
    .inverted .info-image img {
        margin-top: 0;
        margin-bottom: 3rem;
    }
}

/* Desktop Inverted Layout */
@media (min-width: 993px) {
    .grid-2.inverted {
        direction: rtl;
    }
    .grid-2.inverted > * {
        direction: ltr;
    }
}

/* Professional Polish & Image Size Fixes */
.info-image img {
    width: 90%;
    margin: 0 auto;
}

.phone-mockup {
    max-width: 260px; /* Made slightly smaller for elegance */
}

h1, h2, h3 {
    letter-spacing: -0.02em;
}

.overline {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    opacity: 0.8;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Benefit Grid Premium Overhaul */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}

.benefit-item {
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
    padding: 2rem;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid transparent;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
    transform: translateY(-8px);
    border-color: rgba(0, 0, 0, 0.02);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    background: white;
    box-shadow: 0 15px 30px rgba(0, 174, 239, 0.1);
    color: var(--primary-blue);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 174, 239, 0.05);
}

.benefit-icon i, .benefit-icon svg {
    font-size: 1.8rem;
    width: 32px;
    height: 32px;
    stroke-width: 2.5px;
}

/* Individual Icon Personalities */
.benefit-item:nth-child(1) .benefit-icon { color: #00aeef; background: rgba(0, 174, 239, 0.03); }
.benefit-item:nth-child(2) .benefit-icon { color: #2ecc71; background: rgba(46, 204, 113, 0.03); box-shadow: 0 15px 30px rgba(46, 204, 113, 0.1); border-color: rgba(46, 204, 113, 0.05); }
.benefit-item:nth-child(3) .benefit-icon { color: #6c5ce7; background: rgba(108, 92, 231, 0.03); box-shadow: 0 15px 30px rgba(108, 92, 231, 0.1); border-color: rgba(108, 92, 231, 0.05); }
.benefit-item:nth-child(4) .benefit-icon { color: #f1c40f; background: rgba(241, 196, 15, 0.03); box-shadow: 0 15px 30px rgba(241, 196, 15, 0.1); border-color: rgba(241, 196, 15, 0.05); }

.benefit-item:hover .benefit-icon {
    transform: scale(1.15) rotate(10deg);
}

.benefit-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    font-weight: 850;
    color: var(--dark-navy);
    letter-spacing: -0.02em;
}

.benefit-content p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .benefit-grid {
        gap: 2rem;
        margin-top: 3rem;
    }
    .benefit-item {
        padding: 1.5rem;
    }
}
