/* ============================================
   ATTENDA 365 - Main Stylesheet
   Colors: Teal (#0D9488) + Orange (#F97316)
   ============================================ */

/* ---------- RESET & BASE ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary Teal */
    --teal-50:  #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    /* Accent Orange */
    --orange-400: #fb923c;
    --orange-500: #f97316;
    --orange-600: #ea580c;

    /* Neutrals */
    --white: #ffffff;
    --gray-50:  #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;

    /* Effects */
    --shadow-sm: 0 1px 2px rgba(0,0,0,.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,.08);
    --shadow-lg: 0 10px 30px rgba(13,148,136,.15);
    --shadow-xl: 0 20px 50px rgba(13,148,136,.25);
    --radius: 14px;
    --radius-lg: 22px;
    --transition: .3s cubic-bezier(.4,0,.2,1);

    --font-ar: 'Cairo', 'Tajawal', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-ar);
    background: var(--white);
    color: var(--gray-700);
    line-height: 1.7;
    overflow-x: hidden;
    direction: rtl;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---------- TYPOGRAPHY ---------- */
.text-gradient {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(13,148,136,.35);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13,148,136,.5);
    background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
}

.btn-outline {
    background: transparent;
    border-color: var(--teal-600);
    color: var(--teal-700);
}
.btn-outline:hover {
    background: var(--teal-600);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(13,148,136,.3);
}

.btn-block { width: 100%; justify-content: center; }

/* ---------- HEADER ---------- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}
.header.scrolled {
    box-shadow: var(--shadow-md);
    border-bottom-color: var(--gray-200);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 75px;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 22px;
}
.logo img { height: 40px; width: auto; }
.logo-text { color: var(--gray-900); }
.logo-text span { color: var(--teal-600); }

.nav-list {
    display: flex;
    gap: 30px;
}
.nav-link {
    font-weight: 600;
    color: var(--gray-600);
    position: relative;
    padding: 6px 0;
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--teal-600); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 0; height: 2px;
    background: var(--orange-500);
    transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
}
.menu-toggle span {
    height: 3px;
    background: var(--teal-700);
    border-radius: 3px;
    transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(180deg, var(--teal-50) 0%, var(--white) 100%);
    overflow: hidden;
}
.hero-bg-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.shape-1 {
    width: 400px; height: 400px;
    background: var(--teal-400);
    top: -100px; right: -100px;
}
.shape-2 {
    width: 350px; height: 350px;
    background: var(--orange-400);
    bottom: -80px; left: -80px;
    opacity: .2;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--teal-700);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--teal-100);
    margin-bottom: 20px;
}
.hero-badge i { color: var(--orange-500); }

.hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 45px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 25px;
    border-top: 2px solid var(--gray-100);
}
.stat h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--teal-600);
    line-height: 1;
}
.stat p {
    font-size: 14px;
    color: var(--gray-600);
    margin-top: 6px;
}

.hero-image {
    position: relative;
    animation: floatY 4s ease-in-out infinite;
}
.hero-image > img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 14px 20px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    animation: floatY 3s ease-in-out infinite;
}
.floating-card i {
    width: 40px; height: 40px;
    display: grid;
    place-items: center;
    background: var(--teal-50);
    color: var(--teal-600);
    border-radius: 10px;
    font-size: 18px;
}
.floating-card strong { display: block; color: var(--gray-900); font-size: 14px; }
.floating-card small { color: var(--gray-600); }
.card-1 { top: 20px; left: -30px; animation-delay: .5s; }
.card-2 { bottom: 20px; right: -30px; animation-delay: 1s; }
.card-2 i { background: #fff7ed; color: var(--orange-500); }

@keyframes floatY {
    0%,100% { transform: translateY(0); }
    50%     { transform: translateY(-14px); }
}

/* ---------- SECTION ---------- */
.section { padding: 90px 0; }

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: var(--teal-50);
    color: var(--teal-700);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .5px;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 900;
    color: var(--gray-900);
    line-height: 1.3;
    margin-bottom: 14px;
}

.section-desc {
    font-size: 17px;
    color: var(--gray-600);
}

/* ---------- FEATURES ---------- */
.features { background: var(--white); }
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.feature-card {
    background: var(--white);
    padding: 35px 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 4px; height: 0;
    background: linear-gradient(180deg, var(--teal-500), var(--orange-500));
    transition: var(--transition);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-100);
}
.feature-card:hover::before { height: 100%; }

.feature-icon {
    width: 60px; height: 60px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--teal-50), var(--teal-100));
    color: var(--teal-600);
    border-radius: 16px;
    font-size: 24px;
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--teal-600), var(--teal-500));
    color: var(--white);
    transform: rotate(-6deg) scale(1.08);
}

.feature-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.feature-card p {
    font-size: 15px;
    color: var(--gray-600);
}

/* ---------- PRICING ---------- */
.pricing {
    background: linear-gradient(180deg, var(--white) 0%, var(--teal-50) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    align-items: stretch;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    border: 2px solid var(--gray-100);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card:hover {
    border-color: var(--teal-400);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--teal-600);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-8px); }

.ribbon {
    position: absolute;
    top: -14px; right: 24px;
    background: linear-gradient(135deg, var(--orange-500), var(--orange-400));
    color: var(--white);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(249,115,22,.4);
}

.pricing-header { margin-bottom: 20px; }
.pricing-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.pricing-desc { font-size: 14px; color: var(--gray-600); }

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    padding: 20px 0;
    border-top: 1px dashed var(--gray-200);
    border-bottom: 1px dashed var(--gray-200);
    margin-bottom: 22px;
    flex-wrap: wrap;
}
.pricing-price .price {
    font-size: 34px;
    font-weight: 900;
    color: var(--teal-600);
    line-height: 1;
}
.pricing-price .currency {
    font-size: 16px;
    color: var(--teal-700);
    font-weight: 700;
}
.pricing-price small {
    font-size: 13px;
    color: var(--gray-400);
    margin-inline-start: auto;
}

.pricing-features {
    margin-bottom: 24px;
    flex-grow: 1;
}
.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14.5px;
    color: var(--gray-700);
}
.pricing-features li i {
    color: var(--teal-500);
    background: var(--teal-50);
    width: 22px; height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-note {
    text-align: center;
    font-size: 12.5px;
    color: var(--gray-400);
    margin-top: 14px;
    font-weight: 600;
}

/* ---------- ABOUT / TIMELINE ---------- */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    right: 50%;
    width: 3px;
    background: linear-gradient(180deg, var(--teal-400), var(--orange-400));
    transform: translateX(50%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 30px;
}
.timeline-item:nth-child(odd) {
    margin-inline-start: 0;
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
}
.timeline-item:nth-child(even) {
    margin-inline-start: 50%;
    padding-right: 60px;
    padding-left: 0;
    text-align: right;
}

.timeline-dot {
    position: absolute;
    top: 30px;
    width: 20px; height: 20px;
    background: var(--white);
    border: 4px solid var(--teal-500);
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(13,148,136,.15);
    z-index: 2;
}
.timeline-item:nth-child(odd) .timeline-dot { right: -10px; }
.timeline-item:nth-child(even) .timeline-dot { left: -10px; }

.timeline-content {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.timeline-content:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    border-color: var(--teal-200);
}

.timeline-year {
    display: inline-block;
    background: var(--teal-50);
    color: var(--teal-700);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12.5px;
    font-weight: 800;
    margin-bottom: 10px;
}
.timeline-content h3 {
    font-size: 19px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.timeline-content p {
    font-size: 14.5px;
    color: var(--gray-600);
    line-height: 1.8;
}

/* ---------- TEAM ---------- */
.team { background: var(--teal-50); }

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto 60px;
}

.team-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 130px; height: 130px;
    margin: 0 auto 18px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--teal-100);
    transition: var(--transition);
}
.team-card:hover .team-image {
    border-color: var(--orange-400);
    transform: scale(1.05);
}
.team-image img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.team-card p {
    font-size: 14px;
    color: var(--teal-600);
    font-weight: 600;
    margin-bottom: 14px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.team-social a {
    width: 36px; height: 36px;
    display: grid;
    place-items: center;
    background: var(--teal-50);
    color: var(--teal-600);
    border-radius: 50%;
    font-size: 14px;
    transition: var(--transition);
}
.team-social a:hover {
    background: var(--teal-600);
    color: var(--white);
    transform: translateY(-3px);
}

.team-cta {
    text-align: center;
    background: linear-gradient(135deg, var(--teal-700), var(--teal-600));
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    max-width: 700px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}
.team-cta h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 20px;
}
.team-cta .btn-primary {
    background: var(--orange-500);
    box-shadow: 0 8px 20px rgba(249,115,22,.4);
}
.team-cta .btn-primary:hover { background: var(--orange-600); }

/* ---------- CONTACT ---------- */
.contact {
    background: linear-gradient(180deg, var(--white), var(--teal-50));
}
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-title { text-align: right; margin-bottom: 16px; }
.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 30px;
    font-size: 16px;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    font-size: 15.5px;
    font-weight: 600;
    color: var(--gray-700);
}
.contact-list i {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    background: var(--white);
    color: var(--teal-600);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 16px;
}

.contact-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.form-group { margin-bottom: 16px; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    color: var(--gray-900);
    background: var(--gray-50);
    transition: var(--transition);
    resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal-500);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(20,184,166,.12);
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--teal-900);
    color: #cbd5e1;
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 40px;
    padding-bottom: 50px;
}

.footer .logo-text { color: var(--white); }
.footer .logo-text span { color: var(--teal-300); }

.footer-col h4 {
    color: var(--white);
    font-size: 17px;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0; right: 0;
    width: 40px; height: 3px;
    background: var(--orange-500);
    border-radius: 3px;
}
.footer-col p { font-size: 14.5px; line-height: 1.8; margin-top: 14px; }

.footer-col ul li {
    padding: 8px 0;
    font-size: 14.5px;
    transition: var(--transition);
}
.footer-col ul li a:hover {
    color: var(--teal-300);
    padding-inline-start: 6px;
}
.footer-col ul li i {
    color: var(--teal-300);
    margin-inline-end: 8px;
}

.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
    width: 42px; height: 42px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.08);
    color: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--teal-500);
    transform: translateY(-4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 22px 0;
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* ---------- FLOATING BUTTONS ---------- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 58px; height: 58px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 28px;
    box-shadow: 0 8px 24px rgba(37,211,102,.5);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12) rotate(8deg);
}

@keyframes pulse {
    0%,100% { box-shadow: 0 8px 24px rgba(37,211,102,.5); }
    50%     { box-shadow: 0 8px 24px rgba(37,211,102,.9), 0 0 0 12px rgba(37,211,102,.1); }
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 48px; height: 48px;
    background: var(--teal-600);
    color: var(--white);
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--teal-700);
    transform: translateY(-4px);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-image { max-width: 520px; margin: 0 auto; }
    .card-1 { left: 0; }
    .card-2 { right: 0; }

    .contact-container { grid-template-columns: 1fr; gap: 40px; }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 75px;
        right: 0;
        width: 100%;
        max-width: 320px;
        height: calc(100vh - 75px);
        background: var(--white);
        box-shadow: -10px 0 40px rgba(0,0,0,.1);
        padding: 30px 20px;
        transform: translateX(100%);
        transition: var(--transition);
        overflow-y: auto;
    }
    .nav.open { transform: translateX(0); }
    .nav-list {
        flex-direction: column;
        gap: 5px;
    }
    .nav-link {
        display: block;
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        font-size: 16px;
    }
    .menu-toggle { display: flex; }
    .nav-cta { display: none; }

    .hero { padding: 120px 0 60px; }
    .hero-stats { gap: 25px; }
    .stat h3 { font-size: 26px; }

    .section { padding: 70px 0; }

    /* Timeline Mobile */
    .timeline::before { right: 20px; }
    .timeline-item {
        width: 100%;
        margin-inline-start: 0 !important;
        padding-right: 55px !important;
        padding-left: 0 !important;
        text-align: right !important;
    }
    .timeline-dot { right: 12px !important; left: auto !important; }

    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-8px); }

    .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 20px; }
    .back-to-top { width: 42px; height: 42px; bottom: 20px; left: 20px; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }

    .contact-form { padding: 26px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-direction: column; gap: 15px; }
    .floating-card { display: none; }
}