/* ========================================
   auひかり LP - au公式トンマナ準拠
   モバイルファースト・シンプルデザイン
   ======================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Hiragino Sans', sans-serif;
    background-color: #ffffff;
    color: #333333;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    background-color: #ffffff;
}

/* ========================================
   カラーパレット - au公式準拠
   ======================================== */
:root {
    --au-orange: #eb5505;
    --au-orange-dark: #d44a00;
    --au-orange-light: #ff6b1a;
    --au-black: #000000;
    --au-gray-dark: #333333;
    --au-gray: #666666;
    --au-gray-light: #999999;
    --au-gray-pale: #f5f5f5;
    --au-white: #ffffff;
    --au-border: #e5e5e5;
}

a {
    color: var(--au-orange);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* au ブランドカラー */
.au-brand {
    color: #eb5504;
}

/* ========================================
   Info Bar - 代理店情報
   ======================================== */
.info-bar {
    background: #f8f8f8;
    padding: 6px 16px;
    text-align: center;
    font-size: 10px;
    color: #888888;
    border-bottom: 1px solid var(--au-border);
    line-height: 1.6;
}

.info-bar span {
    display: block;
}

@media (max-width: 767px) {
    .info-bar {
        font-size: 9px;
        padding: 5px 12px;
        text-align: right;
    }
}

/* ========================================
   Header
   ======================================== */
.header {
    background: var(--au-white);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--au-border);
}

.logo {
    height: 20px;
    width: auto;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--au-gray-dark);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
}

.header-phone:hover {
    text-decoration: none;
    opacity: 0.8;
}

.header-phone-icon {
    width: 16px;
    height: 16px;
    fill: var(--au-orange);
}

.header-phone-number {
    font-size: 16px;
    font-weight: 700;
    color: var(--au-gray-dark);
}

/* ========================================
   Hero Section - メインビジュアル
   ======================================== */
.hero {
    position: relative;
}

.hero-mv {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
}

.hero-content {
    padding: 0px 15px 25px;
    text-align: center;
}

/* ヒーローヘッドライン - キャッチ＆タイトルグループ */
.hero-headline {
    padding: 12px 0 20px;
}

.hero-catch {
    font-size: 15px;
    color: var(--au-gray-dark);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}

.hero-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--au-gray-dark);
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

.hero-title strong {
    color: var(--au-orange);
    font-size: 32px;
    text-shadow: 0 2px 4px rgba(235, 85, 5, 0.15);
}

.hero-logo {
    max-width: 240px;
    height: auto;
    margin-top: 8px;
}

/* 料金表示 */
.price-box {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-card {
    background: var(--au-white);
    padding: 20px 16px;
    border-radius: 12px;
    text-align: center;
    flex: 1;
    border: 2px solid var(--au-border);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.price-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 85, 5, 0.15);
    border-color: var(--au-orange);
}

.price-type {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: var(--au-orange);
    color: var(--au-white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.price-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.price-amount {
    line-height: 1;
}

.price-amount strong {
    font-size: 36px;
    font-weight: 700;
    color: var(--au-orange);
}

.price-amount span {
    font-size: 14px;
    font-weight: 700;
    color: var(--au-gray-dark);
}

.price-note {
    font-size: 11px;
    color: var(--au-gray-light);
    margin-bottom: 15px;
    text-align: right;
}

/* CTA Buttons */
.cta-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 0 auto;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn:hover {
    text-decoration: none;
    opacity: 0.85;
}

.btn-primary {
    background: var(--au-orange);
    color: var(--au-white);
}

.btn-outline {
    background: var(--au-white);
    color: var(--au-orange);
    border: 2px solid var(--au-orange);
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ========================================
   Section Base
   ======================================== */
.section {
    padding: 0 20px;
}

.section-title {
    text-align: center;
    padding: 24px 0;
}

.section-title h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--au-gray-dark);
    line-height: 1.5;
}

.section-title p {
    font-size: 13px;
    color: var(--au-gray);
    margin-top: 8px;
}

.section-label {
    display: inline-block;
    background: var(--au-orange);
    color: var(--au-white);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 13px;
    color: var(--au-gray);
    margin-top: 8px;
}

/* ========================================
   Campaign Section - キャンペーン特典
   ======================================== */
.campaign {
    background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
    padding: 32px 20px;
}

.campaign .section-title h2 {
    font-size: 22px;
}

.campaign .section-title h2 strong {
    font-size: 26px;
}

.campaign-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.campaign-card {
    background: var(--au-white);
    border: 2px solid var(--au-border);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.campaign-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(235, 85, 5, 0.15);
    border-color: var(--au-orange);
}

.campaign-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: var(--au-orange);
    color: var(--au-white);
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}

.campaign-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    background: #fff5f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.campaign-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--au-orange);
}

.campaign-label {
    font-size: 13px;
    color: var(--au-gray);
    margin-bottom: 4px;
}

.campaign-amount {
    line-height: 1;
    margin-bottom: 8px;
}

.campaign-amount .num {
    font-size: 36px;
    font-weight: 700;
    color: var(--au-orange);
}

.campaign-amount .unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--au-orange);
}

.campaign-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 8px;
}

.campaign-note {
    font-size: 11px;
    color: var(--au-gray-light);
}

.campaign-total {
    background: var(--au-orange);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.campaign-total-label {
    font-size: 14px;
    color: var(--au-white);
    margin-bottom: 8px;
    opacity: 0.9;
}

.campaign-total-amount {
    color: var(--au-white);
    line-height: 1.2;
}

.campaign-total-amount .prefix {
    font-size: 14px;
}

.campaign-total-amount .value {
    font-size: 40px;
    font-weight: 700;
}

.campaign-total-amount .suffix {
    font-size: 16px;
    font-weight: 700;
}

/* ========================================
   Features Section - 選ばれる理由
   ======================================== */
.features {
    background: var(--au-gray-pale);
    padding-bottom: 24px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    background: var(--au-white);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff5f0;
    border-radius: 50%;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--au-orange);
}

.feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 12px;
    line-height: 1.5;
}

.feature-desc {
    font-size: 13px;
    color: var(--au-gray);
    line-height: 1.8;
    text-align: left;
}

/* ========================================
   Pricing Section - 料金プラン
   ======================================== */
.pricing {
    background: var(--au-white);
    padding: 0px 20px;
}

/* 料金ボディ */
.prices-body {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
}

/* 料金セクション（マンション/戸建て） */
.prices-sec {
    background: var(--au-white);
    border: 2px solid var(--au-border);
    border-radius: 16px;
    overflow: hidden;
}

.prices-sec-head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 100%);
    border-bottom: 1px solid var(--au-border);
}

.prices-sec-img {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}

.prices-sec-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.prices-sec-box {
    flex: 1;
    text-align: center;
}

.prices-sec-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 4px;
}

.prices-sec-amount {
    font-size: 14px;
    color: var(--au-gray);
}

.prices-sec-amount .number {
    font-size: 28px;
    font-weight: 700;
    color: var(--au-orange);
}

.prices-sec-amount .unit {
    font-size: 16px;
    font-weight: 700;
    color: var(--au-orange);
}

/* 料金タイプ一覧 */
.prices-sec-body {
    padding: 12px;
    background: var(--au-gray-pale);
}

.prices-sec-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.prices-type-item {
    padding: 12px 8px;
    background: var(--au-white);
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--au-border);
}

.prices-type-item.highlight {
    background: #fff5f0;
    border: 2px solid var(--au-orange);
    position: relative;
}

.prices-type-item.highlight::before {
    content: 'おすすめ';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--au-orange);
    color: var(--au-white);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

.prices-type-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--au-gray-dark);
    line-height: 1.3;
    margin-bottom: 6px;
}

.prices-type-label small {
    font-size: 10px;
    font-weight: 500;
    color: var(--au-gray);
    display: block;
    margin-top: 2px;
}

.prices-type-price {
    text-align: center;
}

.prices-type-price .prefix {
    font-size: 10px;
    color: var(--au-gray);
    display: block;
    margin-bottom: 2px;
}

.prices-type-price .number {
    font-size: 20px;
    font-weight: 700;
    color: var(--au-orange);
}

.prices-type-price .unit {
    font-size: 12px;
    font-weight: 700;
    color: var(--au-orange);
}

.prices-type-price .text {
    font-size: 10px;
    color: var(--au-gray-dark);
}

.prices-type-price .tax {
    display: block;
    font-size: 10px;
    color: var(--au-gray);
    margin-top: 4px;
}

.prices-note {
    font-size: 11px;
    color: var(--au-gray);
    text-align: right;
    margin-top: -16px;
}

/* 速度比較 - インパクト版 */
.speed-compare-box {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 24px 20px;
    margin-top: 20px;
    overflow: hidden;
}

.speed-compare-header {
    text-align: center;
    margin-bottom: 24px;
}

.speed-compare-catch {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.speed-compare-highlight {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.speed-compare-highlight .num {
    font-size: 64px;
    font-weight: 700;
    color: var(--au-orange);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(235, 85, 5, 0.5);
}

.speed-compare-highlight .unit {
    font-size: 32px;
    font-weight: 700;
    color: var(--au-orange);
}

.speed-compare-highlight .text {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-left: 4px;
}

.speed-compare-visual {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.speed-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.speed-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.speed-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.speed-row.au .speed-name {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

.speed-spec {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
}

.speed-row.au .speed-spec {
    font-size: 18px;
    color: var(--au-orange);
}

.speed-bar-wrap {
    width: 100%;
}

.speed-bar-bg {
    width: 100%;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.speed-row.other .speed-bar-fill {
    width: 8%;
    height: 100%;
    background: #666;
    border-radius: 16px;
}

.speed-row.au .speed-bar-bg {
    background: rgba(235, 85, 5, 0.15);
}

.speed-row.au .speed-bar-fill {
    width: 80%;
    height: 100%;
    background: linear-gradient(90deg, var(--au-orange) 0%, #ff8c42 50%, var(--au-orange-light) 100%);
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(235, 85, 5, 0.5);
    animation: speedPulse 2s ease-in-out infinite;
}

@keyframes speedPulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(235, 85, 5, 0.5);
    }
    50% {
        box-shadow: 0 0 30px rgba(235, 85, 5, 0.8);
    }
}

.speed-compare-note {
    font-size: 11px;
    color: var(--au-gray);
    text-align: left;
    margin-top: 16px;
}

/* ========================================
   Smart Value Section
   ======================================== */
.smartvalue {
    background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
    padding: 32px 20px;
}

.smartvalue-card {
    background: var(--au-white);
    border-radius: 20px;
    padding: 0;
    text-align: center;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(255, 79, 0, 0.15);
    margin-top: 20px;
}

.smartvalue-header {
    background: linear-gradient(135deg, var(--au-orange) 0%, #ff6b2c 100%);
    padding: 24px 20px;
    color: var(--au-white);
    position: relative;
}

.smartvalue-header::before {
    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='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.smartvalue-label {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.smartvalue-catch {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 8px;
    position: relative;
    letter-spacing: 0.5px;
}

.smartvalue-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.smartvalue-discount {
    padding: 24px 20px;
    background: #fff5f0;
}

.discount-label {
    font-size: 13px;
    color: var(--au-gray);
    margin-bottom: 8px;
}

.discount-amount {
    line-height: 1;
}

.discount-amount .max {
    font-size: 14px;
    color: var(--au-gray-dark);
}

.discount-amount .value {
    font-size: 48px;
    font-weight: 700;
    color: var(--au-orange);
}

.discount-amount .yen {
    font-size: 20px;
    font-weight: 700;
    color: var(--au-orange);
}

.discount-amount .off {
    font-size: 16px;
    font-weight: 700;
    color: var(--au-gray-dark);
}

/* 家族シミュレーション */
.smartvalue-family {
    padding: 28px 20px 0;
    background: linear-gradient(180deg, #fff9f6 0%, #ffffff 100%);
}

.family-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.family-title::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--au-orange);
    border-radius: 1px;
}

.family-members {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-bottom: 24px;
}

.family-member {
    text-align: center;
}

.member-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid #fff;
    overflow: hidden;
}

.member-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--au-gray);
}

.member-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.family-member span {
    display: inline-block;
    font-size: 11px;
    color: var(--au-white);
    font-weight: 600;
    background: linear-gradient(135deg, var(--au-orange) 0%, #ff6b2c 100%);
    padding: 3px 10px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(255, 79, 0, 0.2);
}

.family-members .plus {
    font-size: 18px;
    color: var(--au-orange);
    font-weight: 700;
    margin: 0 2px;
}

.family-result {
    background: linear-gradient(135deg, var(--au-orange) 0%, #ff6b2c 100%);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

.result-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.result-amount {
    line-height: 1;
    margin-bottom: 10px;
}

.result-amount .value {
    font-size: 42px;
    font-weight: 700;
    color: var(--au-white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.result-amount .unit {
    font-size: 18px;
    font-weight: 700;
    color: var(--au-white);
}

.result-calc {
    font-size: 11px;
    color: var(--au-gray);
    text-align: right;
    margin-top: 12px;
}

/* スマートバリューポイント */
.smartvalue-points {
    padding: 20px;
    list-style: none;
}

.smartvalue-points li {
    font-size: 13px;
    color: var(--au-gray-dark);
    padding: 8px 0 8px 28px;
    position: relative;
    text-align: left;
}

.smartvalue-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--au-orange);
    font-weight: 700;
}

/* ========================================
   Flow Section - 手続きの流れ
   ======================================== */
.flow {
    background: linear-gradient(180deg, #fff8f5 0%, #ffffff 100%);
}

.flow-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 400px;
    margin: 0 auto;
}

.flow-item {
    position: relative;
    background: var(--au-white);
    padding: 20px;
    padding-left: 24px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--au-border);
}

.flow-number {
    position: absolute;
    top: -10px;
    left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--au-orange) 0%, #ff6b2c 100%);
    border-radius: 50%;
    color: var(--au-white);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 3px 8px rgba(255, 79, 0, 0.35);
    border: 2px solid var(--au-white);
}

.flow-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 6px;
}

.flow-desc {
    font-size: 13px;
    color: var(--au-gray);
    line-height: 1.7;
}

.flow-arrow {
    display: flex;
    justify-content: center;
    padding: 6px 0;
}

.flow-arrow svg {
    width: 20px;
    height: 20px;
    fill: var(--au-orange);
    opacity: 0.5;
}

/* ========================================
   Form Section - エリア確認フォーム
   ======================================== */
.form-section {
    background: var(--au-gray-pale);
    padding: 48px 20px;
}

.form-card {
    background: var(--au-white);
    border-radius: 12px;
    padding: 32px 24px;
    max-width: 400px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 8px;
}

.form-desc {
    font-size: 13px;
    color: var(--au-gray);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--au-gray-dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: #e53935;
    font-size: 11px;
    margin-left: 4px;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    background: var(--au-white);
    border: 1px solid var(--au-border);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--au-orange);
}

.form-input::placeholder {
    color: #cccccc;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-note {
    text-align: center;
    margin-top: 16px;
    font-size: 11px;
    color: var(--au-gray-light);
}

.form-note a {
    color: var(--au-gray);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq {
    background: var(--au-gray-pale);
    margin-top: 25px;
    padding-bottom: 25px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--au-border);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: var(--au-white);
    cursor: pointer;
}

.faq-q {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--au-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--au-white);
    font-size: 12px;
    font-weight: 700;
}

.faq-question-text {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
    color: var(--au-gray-dark);
    line-height: 1.5;
}

.faq-toggle {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--au-gray-light);
    transition: transform 0.2s;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 10px;
    background: white;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 13px;
    color: var(--au-gray);
    line-height: 1.8;
}

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    background: white;
    padding: 25px 20px;
    text-align: center;
}

.cta-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 8px;
}

.cta-subtitle {
    font-size: 13px;
    color: var(--au-gray);
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 320px;
    margin: 0 auto;
}

.cta-phone-info {
    margin-top: 24px;
    font-size: 13px;
    color: var(--au-gray);
}

.cta-phone-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-top: 4px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--au-gray-dark);
    color: var(--au-white);
    padding: 10px 20px 5px
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 5px;
}

.footer-links a {
    color: var(--au-white);
    text-decoration: none;
    font-size: 12px;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    text-decoration: none;
}

.footer-copyright {
    text-align: center;
    font-size: 11px;
    opacity: 0.6;
}

/* ========================================
   Responsive - Tablet & Desktop
   ======================================== */
@media (min-width: 768px) {
    body {
        font-size: 15px;
    }

    .container {
        max-width: 768px;
        margin: 0 auto;
    }

    .header {
        padding: 20px 32px;
    }

    .logo {
        height: 32px;
    }

    .hero-content {
        padding: 48px 32px;
    }

    .hero-headline {
        padding: 16px 0 24px;
    }

    .hero-catch {
        font-size: 15px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-title strong {
        font-size: 38px;
    }

    .price-box {
        gap: 24px;
    }

    .price-card {
        max-width: 180px;
        padding: 20px 24px;
    }

    .cta-group {
        flex-direction: row;
        max-width: 480px;
    }

    .cta-group .btn {
        flex: 1;
    }

    .section {
        padding: 64px 32px;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .feature-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1;
        min-width: calc(50% - 12px);
    }

    .pricing-cards {
        flex-direction: row;
        gap: 20px;
    }

    .pricing-card {
        flex: 1;
    }

    .cta-buttons {
        flex-direction: row;
        max-width: 480px;
    }

    .cta-buttons .btn {
        flex: 1;
    }

    .footer {
        padding: 40px 32px;
    }
}

/* ========================================
   Complete Page
   ======================================== */
.complete-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--au-white);
}

.complete-content {
    text-align: center;
    max-width: 360px;
}

.complete-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.complete-icon svg {
    width: 36px;
    height: 36px;
    fill: #4caf50;
}

.complete-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--au-gray-dark);
    margin-bottom: 16px;
}

.complete-message {
    font-size: 14px;
    color: var(--au-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.contact-card {
    background: var(--au-gray-pale);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.contact-card p {
    font-size: 13px;
    color: var(--au-gray);
    margin-bottom: 8px;
}

.contact-phone {
    font-size: 24px;
    font-weight: 700;
    color: var(--au-orange);
    text-decoration: none;
    display: block;
}
