/* ============================================
   TROPICAL YARDS — Full Redesign
   Evergreen-inspired: Clean, airy, modern
   Tropical palette: teal, gold, orange, coral
   ============================================ */

:root {
  --primary: #1B6B6B;
  --primary-light: #2A9D8F;
  --primary-dark: #145454;
  --accent: #D9A741;
  --accent-light: #E8C46A;
  --cta: #E8853A;
  --cta-hover: #D4722E;
  --hibiscus: #C73E6B;
  --lime: #8BC34A;
  --bg: #FFFFFF;
  --bg-alt: #F8F6F1;
  --bg-section: #F2F0EB;
  --card: #FFFFFF;
  --dark: #1A3D4F;
  --text: #3A4D56;
  --text-light: #6B8490;
  --text-on-dark: #F0F7F4;
  --sand: #D4B88C;
  --border: #E8E4DD;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.04);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 100px;
  --max-w: 1280px;
  --transition: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --font-heading: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--cta); }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: rgba(42, 157, 143, 0.15); color: var(--dark); }

/* --- Typography --- */
h1, h2, h3, h4, h5 { font-family: var(--font-heading); color: var(--dark); line-height: 1.15; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); margin-bottom: 0.5em; }
h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); margin-bottom: 0.5em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); margin-bottom: 0.4em; }
p { margin-bottom: 1em; }
.eyebrow { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-light); margin-bottom: 12px; display: block; }
.lead { font-size: 1.15rem; color: var(--text-light); line-height: 1.8; }
.text-accent { color: var(--cta); }
.text-gradient { background: linear-gradient(135deg, var(--cta), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-rounded { background: var(--bg-section); border-radius: var(--radius-xl); margin: 0 24px; padding: 80px 48px; }
.grid { display: grid; gap: 24px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.text-center { text-align: center; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: var(--radius-full); font-weight: 600; font-size: 0.95rem; transition: all var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--cta); color: #fff; border-color: var(--cta); }
.btn-primary:hover { background: var(--cta-hover); border-color: var(--cta-hover); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,133,58,0.3); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.5); }
.btn-secondary:hover { background: rgba(255,255,255,0.15); border-color: #fff; color: #fff; }
.btn-outline { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-outline:hover { background: var(--dark); color: #fff; border-color: var(--dark); transform: translateY(-2px); }
.btn-dark { background: var(--dark); color: #fff; border-color: var(--dark); }
.btn-dark:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,61,79,0.25); }
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-phone { background: transparent; color: var(--dark); border: 2px solid var(--border); }
.btn-phone:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-phone svg { width: 18px; height: 18px; }

/* ======= HEADER ======= */
.cta-strip { background: var(--dark); color: #fff; padding: 10px 0; text-align: center; font-size: 0.85rem; font-weight: 500; }
.cta-strip a { color: var(--accent-light); font-weight: 700; }
.site-header { background: #fff; position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s ease; }
.site-header.scrolled { box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 4px 20px rgba(0,0,0,0.06); }
.header-main { padding: 12px 0; }
.header-main .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: var(--font-heading); font-size: 1.6rem; color: var(--dark); display: flex; align-items: center; gap: 10px; }
.logo span { color: var(--cta); }
.logo img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { white-space: nowrap; }
.header-phone { color: var(--dark); font-weight: 600; font-size: 0.95rem; display: flex; align-items: center; gap: 8px; padding: 10px 20px; border: 2px solid var(--border); border-radius: var(--radius-full); transition: all var(--transition); }
.header-phone:hover { background: var(--primary); color: #fff; border-color: var(--primary); }

/* --- Main Nav --- */
.main-nav { border-top: 1px solid var(--border); }
.nav-list { display: flex; list-style: none; margin: 0; padding: 0; justify-content: center; }
.nav-item { position: relative; }
.nav-link { display: block; padding: 14px 18px; color: var(--dark); font-weight: 500; font-size: 0.9rem; transition: all var(--transition); white-space: nowrap; }
.nav-link:hover, .nav-item:hover > .nav-link { color: var(--cta); }
.nav-link .arrow { display: inline-block; margin-left: 4px; transition: transform var(--transition); font-size: 0.65em; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu { position: absolute; top: 100%; left: 50%; transform: translateX(-50%); opacity: 0; visibility: hidden; transition: all 0.3s ease; min-width: 800px; background: #fff; border-radius: var(--radius); box-shadow: 0 12px 48px rgba(0,0,0,0.12); padding: 32px; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; z-index: 100; pointer-events: none; }
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; }
.mega-col h4 { font-family: var(--font-body); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-light); margin-bottom: 16px; }
.mega-links { list-style: none; padding: 0; }
.mega-links li { margin-bottom: 4px; }
.mega-links a { display: block; padding: 6px 0; color: var(--text); font-size: 0.9rem; transition: color 0.2s; }
.mega-links a:hover { color: var(--cta); }
.price-hint { color: var(--text-light); font-size: 0.8rem; margin-left: 4px; }

/* Dropdown */
.dropdown { position: absolute; top: 100%; left: 0; min-width: 260px; background: #fff; border-radius: var(--radius); box-shadow: 0 12px 48px rgba(0,0,0,0.12); opacity: 0; visibility: hidden; transition: all 0.3s ease; z-index: 100; overflow: hidden; pointer-events: none; }
.nav-item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: auto; }
.dropdown a { display: block; padding: 12px 20px; color: var(--text); font-size: 0.9rem; transition: all 0.2s; border-bottom: 1px solid var(--border); }
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--bg-alt); color: var(--cta); }

/* Mega form */
.mega-form { display: flex; flex-direction: column; gap: 10px; }
.mega-form input, .mega-form textarea { padding: 10px 14px; border: 1.5px solid var(--border); border-radius: 10px; font-size: 0.9rem; transition: border-color 0.2s; background: var(--bg-alt); }
.mega-form input:focus, .mega-form textarea:focus { border-color: var(--primary-light); outline: none; box-shadow: 0 0 0 3px rgba(42,157,143,0.1); }
.mega-form textarea { resize: vertical; min-height: 60px; }
.mega-cta-box { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); text-align: center; }
.mega-cta-box .phone { font-size: 1.2rem; font-weight: 700; color: var(--dark); }

/* Mobile */
.mobile-toggle { display: none; background: none; color: var(--dark); font-size: 1.5rem; padding: 8px; border: 2px solid var(--border); border-radius: 10px; width: 44px; height: 44px; align-items: center; justify-content: center; transition: all 0.2s; }
.mobile-toggle:hover { background: var(--bg-alt); }
.mobile-menu-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; backdrop-filter: blur(4px); }
.mobile-menu-overlay.active { display: block; }

/* ======= HERO ======= */
.hero { position: relative; min-height: 90vh; display: flex; align-items: flex-end; overflow: hidden; border-radius: 0 0 var(--radius-xl) var(--radius-xl); margin: 0 0 0 0; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(26,61,79,0.3) 0%, rgba(26,61,79,0.6) 40%, rgba(26,61,79,0.85) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 750px; color: #fff; padding-bottom: 80px; }
.hero-content h1 { color: #fff; font-size: clamp(2.75rem, 6vw, 4.5rem); margin-bottom: 20px; line-height: 1.05; }
.hero-content h1 .accent-word { color: var(--accent); font-style: italic; }
.hero-content .lead { color: rgba(255,255,255,0.85); font-size: 1.15rem; margin-bottom: 28px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 28px; }
.hero-badge { background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.18); padding: 8px 18px; border-radius: var(--radius-full); font-size: 0.85rem; color: #fff; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ======= TRUST BADGES ======= */
.trust-strip { padding: 40px 0; border-bottom: 1px solid var(--border); }
.trust-grid { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--dark); font-size: 0.95rem; }
.trust-icon { width: 40px; height: 40px; background: var(--bg-alt); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--primary-light); font-size: 1.2rem; }

/* ======= CARDS ======= */
.category-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-card-img { height: 240px; overflow: hidden; }
.category-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.category-card:hover .category-card-img img { transform: scale(1.06); }
.category-card-body { padding: 24px; }
.category-card-body h3 { margin-bottom: 6px; }
.category-card-body .price-range { color: var(--cta); font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.category-card-body p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }

/* Blog cards */
.blog-card { background: var(--card); border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); transition: all var(--transition); }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 24px; }
.blog-card-body .date { color: var(--text-light); font-size: 0.8rem; margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--dark); }
.blog-card-body h3 a:hover { color: var(--cta); }
.blog-card-body p { color: var(--text-light); font-size: 0.9rem; }

/* ======= PLANT TABLE ======= */
.plant-table { width: 100%; border-collapse: collapse; margin: 32px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.plant-table thead { background: var(--dark); color: #fff; }
.plant-table th { padding: 14px 20px; text-align: left; font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.plant-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); }
.plant-table tr:hover { background: var(--bg-alt); }
.plant-table .plant-name { font-weight: 600; color: var(--dark); }
.plant-table .botanical { color: var(--text-light); font-style: italic; font-size: 0.85rem; }
.plant-table .price { color: var(--primary); font-weight: 700; font-size: 1rem; }

/* ======= FAQ / AEO ======= */
.aeo-answer { background: var(--bg-alt); border-left: 4px solid var(--primary-light); padding: 28px 32px; border-radius: 0 var(--radius) var(--radius) 0; margin-bottom: 32px; font-size: 1.05rem; line-height: 1.8; }
.faq-section { margin: 48px 0; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 8px; overflow: hidden; transition: all 0.3s ease; }
.faq-item:hover { border-color: rgba(42,157,143,0.2); }
.faq-item.open { border-color: var(--primary-light); box-shadow: 0 4px 16px rgba(42,157,143,0.08); }
.faq-question { padding: 20px 24px; font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; background: #fff; transition: background 0.2s; }
.faq-question:hover { background: var(--bg-alt); }
.faq-question::after { content: '+'; font-size: 1.4rem; color: var(--cta); transition: transform 0.3s; font-weight: 300; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all 0.4s ease; }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 1000px; }

/* ======= CTA SECTIONS ======= */
.cta-banner { background: var(--dark); padding: 64px; border-radius: var(--radius-xl); color: #fff; text-align: center; margin: 40px 0; position: relative; overflow: hidden; }
.cta-banner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 300px; height: 300px; border-radius: 50%; background: rgba(42,157,143,0.15); }
.cta-banner h2 { color: #fff; margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 28px; font-size: 1.05rem; }
.cta-banner .btn { background: var(--cta); color: #fff; border-color: var(--cta); }
.cta-banner .btn:hover { background: #fff; color: var(--dark); border-color: #fff; }
.inline-cta { background: var(--bg-section); padding: 48px; border-radius: var(--radius-xl); margin: 40px 0; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.inline-cta h3 { color: var(--dark); font-size: 1.4rem; margin-bottom: 8px; }
.inline-cta p { color: var(--text-light); margin-bottom: 0; }
.inline-cta .btn { flex-shrink: 0; }

/* Image CTA (full-width background) */
.cta-image { position: relative; min-height: 400px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-xl); overflow: hidden; margin: 64px 24px; }
.cta-image::after { content: ''; position: absolute; inset: 0; background: rgba(26,61,79,0.6); }
.cta-image > * { position: relative; z-index: 2; }

/* ======= BREADCRUMBS ======= */
.breadcrumbs { padding: 12px 0; background: var(--bg-alt); border-bottom: 1px solid var(--border); font-size: 0.85rem; color: var(--text-light); }
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs a:hover { color: var(--cta); }
.breadcrumbs strong { color: var(--dark); }

/* ======= BLOG CONTENT ======= */
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { margin-top: 48px; margin-bottom: 16px; }
.blog-content h3 { margin-top: 36px; margin-bottom: 12px; }
.blog-content p { margin-bottom: 16px; line-height: 1.85; }
.blog-content ul, .blog-content ol { margin: 16px 0 24px 24px; }
.blog-content li { margin-bottom: 8px; list-style: disc; }
.blog-content ol li { list-style: decimal; }
.blog-content img { border-radius: var(--radius); margin: 32px 0; width: 100%; }
.blog-content blockquote { border-left: 4px solid var(--accent); padding: 16px 24px; background: var(--bg-alt); margin: 24px 0; border-radius: 0 var(--radius) var(--radius) 0; font-style: italic; }

/* ======= LOCATION CARDS ======= */
.location-card { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 24px; background: var(--bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--border); transition: all var(--transition); text-decoration: none; color: var(--text); }
.location-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; background: #fff; color: var(--text); }
.location-card-icon { font-size: 2.2rem; margin-bottom: 12px; }
.location-card h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 4px; }
.location-county { font-size: 0.8rem; color: var(--text-light); margin-bottom: 12px !important; }
.location-fee { font-size: 0.95rem; color: var(--text); margin-bottom: 12px !important; }
.location-fee strong { color: var(--cta); font-size: 1.1rem; }
.location-links { font-size: 0.8rem; color: var(--primary-light); font-weight: 600; letter-spacing: 0.03em; }

/* ======= FLOATING CTA ======= */
.floating-cta { position: fixed; bottom: 24px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; }
.floating-cta .btn { box-shadow: 0 4px 20px rgba(0,0,0,0.15); border-radius: var(--radius-full); padding: 14px 22px; font-size: 0.9rem; }
.floating-cta .btn-phone { background: #fff; color: var(--dark); border: 1px solid var(--border); }
.floating-cta .btn-phone:hover { background: var(--primary); color: #fff; }
.floating-cta .btn-quote { background: var(--cta); color: #fff; border: none; }

/* ======= FOOTER ======= */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr 1.2fr; gap: 48px; margin-bottom: 48px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; }
.footer-col p { font-size: 0.9rem; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 0.9rem; display: block; padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-phone a { color: #fff; font-size: 1.3rem; font-weight: 700; }
.footer-email { color: rgba(255,255,255,0.6); }
.footer-form input, .footer-form textarea { width: 100%; padding: 12px 16px; border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; background: rgba(255,255,255,0.05); color: #fff; font-size: 0.9rem; margin-bottom: 10px; }
.footer-form input::placeholder, .footer-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.footer-form input:focus, .footer-form textarea:focus { border-color: var(--primary-light); outline: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 24px; text-align: center; font-size: 0.85rem; color: rgba(255,255,255,0.4); }

/* ======= FORMS ======= */
input, textarea, select { border: 1.5px solid var(--border); border-radius: 10px; padding: 12px 16px; transition: all 0.25s; background: #fff; }
input:focus, textarea:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(42,157,143,0.1); outline: none; }

/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega-menu { min-width: 600px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-list { display: none; }
  .mobile-toggle { display: flex; }
  
  /* Mobile menu */
  .main-nav { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: #fff; z-index: 1000; overflow-y: auto; padding: 80px 24px 24px; }
  .main-nav.active { display: block; }
  .main-nav.active .nav-list { display: flex; flex-direction: column; }
  .main-nav.active .nav-link { padding: 16px 0; font-size: 1.1rem; border-bottom: 1px solid var(--border); }
  .main-nav.active .mega-menu { position: static; opacity: 1; visibility: visible; min-width: 100%; box-shadow: none; padding: 16px 0; display: block; grid-template-columns: 1fr; pointer-events: auto; }
  .main-nav.active .dropdown { position: static; opacity: 1; visibility: visible; min-width: 100%; box-shadow: none; display: none; pointer-events: auto; border-radius: 0; }
  .main-nav.active .nav-item.open .mega-menu,
  .main-nav.active .nav-item.open .dropdown { display: block; }
  .main-nav.active .mega-menu { grid-template-columns: 1fr; }
  .main-nav.active .mega-col:last-child { display: none; }
  
  .hero { min-height: 70vh; border-radius: 0; }
  .hero-content h1 { font-size: 2.25rem; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 40px 24px; border-radius: var(--radius); }
  .inline-cta { flex-direction: column; text-align: center; padding: 32px 24px; }
  .floating-cta { bottom: 16px; right: 16px; }
  .section-rounded { margin: 0; border-radius: var(--radius); padding: 48px 24px; }
  .header-phone { display: none; }
  .logo { font-size: 1.3rem; }
  .logo img { width: 40px; height: 40px; }
  .plant-table { font-size: 0.85rem; }
  .plant-table th, .plant-table td { padding: 10px 12px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { min-height: 60vh; }
  .hero-badges { gap: 8px; }
  .hero-badge { font-size: 0.78rem; padding: 6px 12px; }
}
