:root {
    --primary-blue: #00233e;
    --light-blue: #009fa9;
    --teal: #009fa9;
    --navy: #00233e;
    --accent-teal: #009fa9;
    --light-teal: #00b4c0;
    --dark-navy: #001829;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    font-feature-settings: "cv01", "cv03", "cv04", "cv11";
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Inter', sans-serif;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1000;
    padding: 1rem 0;
}

.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 48px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem 0;
    display: block;
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
    background-color: var(--gray-100);
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
    color: var(--gray-600);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
    z-index: 50;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu ul {
    list-style: none;
    padding: 1rem 0;
    margin: 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-menu li:last-child {
    border-bottom: none;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--gray-600);
    font-weight: 500;
    padding: 1rem 1.5rem;
    display: block;
    transition: all 0.2s;
}

.mobile-menu a:hover {
    color: var(--navy);
    background-color: var(--gray-50);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--teal), var(--light-teal));
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1px solid var(--navy);
}

.btn-secondary:hover {
    background: var(--gray-50);
    color: var(--teal);
    border-color: var(--teal);
}

.btn-whatsapp {
    background: var(--teal);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: var(--light-teal);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
.hero {
    padding: 1rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 159, 169, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 80% 80%, rgba(0, 35, 62, 0.06) 0%, transparent 25%),
        radial-gradient(circle at 60% 40%, rgba(0, 159, 169, 0.04) 0%, transparent 30%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='none' fill-rule='evenodd'%3e%3cg fill='%23009fa9' fill-opacity='0.02'%3e%3ccircle cx='30' cy='30' r='2'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-text {
    position: relative;
    z-index: 2;
    text-align: left;
}

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

.hero-background-photo {
    width: 100%;
    height: 500px;
    background-image: url('../img/pic2.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-background-photo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 159, 169, 0.1) 0%,
        rgba(0, 35, 62, 0.2) 100%
    );
    z-index: 1;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--gray-50) 0%, rgba(0, 159, 169, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3e%3cg fill='none' fill-rule='evenodd'%3e%3cg fill='%23009fa9' fill-opacity='0.02'%3e%3cpath d='M50 50c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10zm20 0c0-5.5-4.5-10-10-10s-10 4.5-10 10 4.5 10 10 10 10-4.5 10-10z'/%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
    pointer-events: none;
    opacity: 0.5;
}

.benefits-grid {
    display: grid;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.benefits-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.benefits-header p {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 0;
}

.benefits-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 20px 40px rgba(0, 35, 62, 0.08),
        0 8px 16px rgba(0, 159, 169, 0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--teal) 0%, var(--navy) 100%);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 32px 64px rgba(0, 35, 62, 0.12),
        0 16px 32px rgba(0, 159, 169, 0.08);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--teal) 0%, var(--navy) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 159, 169, 0.3);
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.benefit-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-600);
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--teal), var(--light-teal));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 3rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(0, 159, 169, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.badge::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.3; }
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero .lead {
    font-size: 1rem;
    /* max-width: 700px; */
    margin-left: auto;
    margin-right: auto;
}

.hero .lead strong {
    color: var(--navy);
    font-weight: 700;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-actions .btn {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 160px;
    box-shadow: 0 4px 14px rgba(0, 35, 62, 0.2);
}

.hero-actions .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.hero-actions .btn:hover::before {
    left: 100%;
}

.hero-actions .btn-primary {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 35, 62, 0.3);
}

.hero-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 35, 62, 0.4);
}

.hero-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--navy);
    border: 2px solid var(--navy);
    backdrop-filter: blur(10px);
}

.hero-actions .btn-secondary:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(0, 35, 62, 0.3);
}

.hero-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 24px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(145deg, rgba(0, 159, 169, 0.3), rgba(0, 35, 62, 0.2), rgba(0, 159, 169, 0.3));
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.6;
}

.hero-card h3 {
    color: var(--navy);
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
}

.hero-card .feature-list {
    margin: 0;
}

.hero-card .feature-item {
    margin-bottom: 1.5rem;
}

.hero-card .feature-item:last-child {
    margin-bottom: 0;
}

.feature-list {
    list-style: none;
    space-y: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.check-icon {
    width: 20px;
    height: 20px;
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section:nth-child(even) {
    background: var(--gray-50);
}

.section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-icon {
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: white;
    flex-shrink: 0;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-600);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

/* Grid */
.grid {
    display: grid;
    gap: 2rem;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.equipment-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

/* Cards */
.card {
    background: var(--white);
    padding: 1.75rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--teal), var(--light-teal));
    transform: translateY(-4px);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card:hover::before {
    transform: translateY(0);
}

.card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.card-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 6px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--teal), var(--light-teal));
    color: white;
}

.card p {
    color: var(--gray-600);
    line-height: 1.6;
}

/* Project Images */
.project-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .project-image img {
    transform: scale(1.05);
}

.project-attribution {
    margin-top: 2rem;
}

.project-attribution a {
    color: var(--teal);
    text-decoration: none;
}

.project-attribution a:hover {
    text-decoration: underline;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.price-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-200);
    position: relative;
    text-align: center;
    transition: all 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gray-300), var(--gray-400));
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.price-card:hover::before {
    background: linear-gradient(90deg, var(--navy), var(--teal));
}

/* Featured Card - Most Popular */
.price-card.featured {
    background: linear-gradient(145deg, var(--white) 0%, rgba(0, 159, 169, 0.02) 100%);
    border: 2px solid var(--teal);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 159, 169, 0.15);
}

.price-card.featured::before {
    background: linear-gradient(90deg, var(--navy), var(--teal));
    height: 6px;
}

.price-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 159, 169, 0.2);
}

.price-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 35, 62, 0.3);
    border: 2px solid var(--white);
}

.price-card.featured .price-badge {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    box-shadow: 0 6px 20px rgba(0, 159, 169, 0.3);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.875rem 1.75rem;
}

.price-card.featured .price-badge::after {
    content: '⭐ RECOMANDAT';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.price-header {
    margin-top: 2.5rem;
    margin-bottom: 2rem;
}

.price-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.price-card.featured .price-title {
    color: var(--navy);
}

.price {
    font-size: 3rem;
    font-weight: 900;
    color: var(--navy);
    margin: 0;
    line-height: 1;
    font-family: 'Poppins', sans-serif;
}

.price-card.featured .price {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-600);
}

.price-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
    flex-grow: 1;
}

.price-features li {
    padding: 0.875rem 0;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.5;
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✓';
    color: var(--teal);
    font-weight: bold;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.price-card.featured .price-features li::before {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-action {
    margin-top: auto;
    padding-top: 1.5rem;
}

.price-action .btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

/* Default buttons for non-featured cards */
.price-card:not(.featured) .price-action .btn {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 35, 62, 0.2);
    border: none;
}

.price-card:not(.featured) .price-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 35, 62, 0.3);
    background: linear-gradient(135deg, var(--teal), var(--light-teal));
}

/* Featured card button */
.price-card.featured .price-action .btn {
    background: linear-gradient(135deg, var(--navy), var(--teal));
    color: var(--white);
    box-shadow: 0 8px 20px rgba(0, 159, 169, 0.3);
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.price-card.featured .price-action .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 159, 169, 0.4);
    background: linear-gradient(135deg, var(--teal), var(--light-teal));
}

.price-note {
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-top: 1rem;
    font-style: italic;
}

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

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

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

label {
    display: block;
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

input, select, textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
}

.gdpr-notice {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 2rem 0;
    text-align: center;
}

.footer p {
    margin: 0;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 1000;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-xl);
    transition: transform 0.2s;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-whatsapp {
    background: var(--teal);
    color: var(--white);
}

.floating-call {
    background: var(--navy);
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .nav-buttons .btn {
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .hero {
        padding: 3rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .nav-buttons .btn:last-child {
        display: none;
    }
}

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .contact {
        grid-template-columns: 2fr 1fr;
    }
}

@media (min-width: 769px) {
    .nav-menu {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 2fr 1fr;
        gap: 2rem;
    }

    .hero-background-photo {
        height: 400px;
    }

    .hero-text {
        text-align: left;
    }

    .hero-actions {
        justify-content: flex-start;
    }
}

@media (min-width: 768px) {
    .section {
        padding: 5rem 0;
    }

    .hero {
        padding: 5rem 0;
    }
}

@media (max-width: 640px) {
    .logo-img {
        height: 36px;
        max-width: 140px;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 44px;
        min-width: 44px;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 16px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
    }

    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 2rem 0;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 1.5rem;
    }

    .hero .lead {
        font-size: 1.125rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-card {
        padding: 2rem;
        margin-top: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        order: 2;
    }

    .hero-photo {
        order: 1;
        margin-bottom: 1rem;
    }

    .hero-background-photo {
        height: 300px;
        margin: 0 auto;
    }

    .benefits-header h2 {
        font-size: 2rem;
    }

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

    .benefit-card {
        padding: 2rem 1.5rem;
    }

    .badge {
        padding: 0.5rem 1.25rem;
        font-size: 0.8rem;
    }

    .section {
        padding: 2.5rem 0;
    }

    .section h2 {
        font-size: 2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .section-icon {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .grid {
        gap: 1.5rem;
    }

    .card {
        padding: 1.5rem;
    }

    .card-icon {
        width: 28px;
        height: 28px;
        padding: 4px;
    }

    .card h3 {
        font-size: 1.125rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .price-card {
        padding: 2rem;
        transform: none !important;
    }

    .price-card.featured {
        transform: none !important;
        order: -1;
    }

    .price-card.featured:hover {
        transform: translateY(-4px) !important;
    }

    .price-card.featured .price-badge::after {
        display: none;
    }

    .price-header {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .price-title {
        font-size: 1.25rem;
    }

    .price-features li {
        padding: 0.75rem 0;
        font-size: 0.9rem;
    }

    #despre h2 {
        text-align: center !important;
        justify-content: center !important;
    }

    .hero-card {
        padding: 2rem;
    }

    .contact {
        gap: 2rem;
    }

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

    input, select, textarea {
        padding: 1rem 0.75rem;
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    * {
        transition: none !important;
        animation: none !important;
    }
}

/* Print styles */
@media print {
    .header, .floating-buttons {
        display: none;
    }
}

/* FAQ Accordion */
.faq-accordion {
    width: 100%;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: var(--shadow);
}

.accordion-header {
    width: 100%;
    background: var(--white);
    border: none;
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.2s;
}

.accordion-header:hover {
    background-color: var(--gray-50);
}

.accordion-header:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-icon svg {
    width: 100%;
    height: 100%;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: var(--white);
}

.accordion-item.active .accordion-content {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

.accordion-content p {
    color: var(--gray-600);
    line-height: 1.6;
    margin: 0;
}